Merge remote-tracking branch 'origin/master' into persona

v1.18.x
psychobunny 10 years ago
commit e3899f9535

@ -9,11 +9,10 @@ process.on('message', function(msg) {
if (msg.type === 'hash') { if (msg.type === 'hash') {
hashPassword(msg.password, msg.rounds); hashPassword(msg.password, msg.rounds);
} else if (msg.type === 'compare') { } else if (msg.type === 'compare') {
compare(msg.password, msg.hash); bcrypt.compare(msg.password, msg.hash, done);
} }
}); });
function hashPassword(password, rounds) { function hashPassword(password, rounds) {
async.waterfall([ async.waterfall([
function(next) { function(next) {
@ -22,23 +21,14 @@ function hashPassword(password, rounds) {
function(salt, next) { function(salt, next) {
bcrypt.hash(password, salt, next); bcrypt.hash(password, salt, next);
} }
], function(err, hash) { ], done);
if (err) {
process.send({err: err.message});
return process.disconnect();
}
process.send({result: hash});
process.disconnect();
});
} }
function compare(password, hash) { function done(err, result) {
bcrypt.compare(password, hash, function(err, res) { if (err) {
if (err) { process.send({err: err.message});
process.send({err: err.message}); return process.disconnect();
return process.disconnect(); }
} process.send({result: result});
process.send({result: res}); process.disconnect();
process.disconnect();
});
} }

@ -64,12 +64,12 @@ $(document).ready(function() {
ajaxify.handleACPRedirect = function(url) { ajaxify.handleACPRedirect = function(url) {
// If ajaxifying into an admin route from regular site, do a cold load. // If ajaxifying into an admin route from regular site, do a cold load.
url = ajaxify.removeRelativePath(url.replace(/\/$/, '')); url = ajaxify.removeRelativePath(url.replace(/\/$/, ''));
if (url.indexOf('admin') === 0 && window.location.pathname.indexOf('/admin') !== 0) { if (url.indexOf('admin') === 0 && window.location.pathname.indexOf(RELATIVE_PATH + '/admin') !== 0) {
window.open(RELATIVE_PATH + '/' + url, '_blank'); window.open(RELATIVE_PATH + '/' + url, '_blank');
return true; return true;
} }
return false; return false;
} };
ajaxify.start = function(url, quiet, search) { ajaxify.start = function(url, quiet, search) {
url = ajaxify.removeRelativePath(url.replace(/\/$/, '')); url = ajaxify.removeRelativePath(url.replace(/\/$/, ''));

@ -62,7 +62,8 @@ var fs = require('fs'),
plaintext: translated[1], plaintext: translated[1],
template: template, template: template,
uid: uid, uid: uid,
pid: params.pid pid: params.pid,
fromUid: params.fromUid
}); });
callback(); callback();
} else { } else {

@ -84,8 +84,8 @@ function generateForTopic(req, res, next) {
feed.item({ feed.item({
title: 'Reply to ' + topicData.title + ' on ' + dateStamp, title: 'Reply to ' + topicData.title + ' on ' + dateStamp,
description: postData.content, description: postData.content,
url: nconf.get('url') + '/topic/' + topicData.slug + '#' + postData.pid, url: nconf.get('url') + '/topic/' + topicData.slug + (postData.index ? '/' + (postData.index + 1) : ''),
author: postData.username, author: postData.user ? postData.user.username : '',
date: dateStamp date: dateStamp
}); });
} }
@ -144,8 +144,8 @@ function generateForCategory(req, res, next) {
if (err) { if (err) {
return next(err); return next(err);
} }
sendFeed(feed, res); sendFeed(feed, res);
}); });
}); });
} }
@ -183,8 +183,8 @@ function generateForPopular(req, res, next) {
return next(err); return next(err);
} }
sendFeed(feed, res); sendFeed(feed, res);
}); });
}); });
} }
function disabledRSS(req, res, next) { function disabledRSS(req, res, next) {
@ -201,13 +201,13 @@ function generateForTopics(options, set, req, res, next) {
if (err) { if (err) {
return next(err); return next(err);
} }
generateTopicsFeed(options, data.topics, function(err, feed) { generateTopicsFeed(options, data.topics, function(err, feed) {
if (err) { if (err) {
return next(err); return next(err);
} }
sendFeed(feed, res); sendFeed(feed, res);
}); });
}); });
} }
@ -215,7 +215,7 @@ function generateTopicsFeed(feedOptions, feedTopics, callback) {
var tids = feedTopics.map(function(topic) { var tids = feedTopics.map(function(topic) {
return topic ? topic.tid : null; return topic ? topic.tid : null;
}); });
topics.getMainPids(tids, function(err, pids) { topics.getMainPids(tids, function(err, pids) {
if (err) { if (err) {
return callback(err); return callback(err);
@ -252,7 +252,7 @@ function generateTopicsFeed(feedOptions, feedTopics, callback) {
}); });
callback(null, feed); callback(null, feed);
}); });
}); });
} }
function generateForRecentPosts(req, res, next) { function generateForRecentPosts(req, res, next) {

Loading…
Cancel
Save