From 82a82afe99826746705f8675347f4d066a67f6cf Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Tue, 11 Mar 2014 15:32:32 -0400 Subject: [PATCH] updated the way privileges were handled in the .get() category controller --- src/controllers/categories.js | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/src/controllers/categories.js b/src/controllers/categories.js index 6deb506fcc..8380c51fff 100644 --- a/src/controllers/categories.js +++ b/src/controllers/categories.js @@ -38,7 +38,7 @@ categoriesController.popular = function(req, res, next) { categoriesController.unread = function(req, res, next) { var uid = req.user.uid; - + topics.getUnreadTopics(uid, 0, 19, function (err, data) { if(err) { return next(err); @@ -50,7 +50,7 @@ categoriesController.unread = function(req, res, next) { categoriesController.unreadTotal = function(req, res, next) { var uid = req.user.uid; - + topics.getTotalUnread(uid, function (err, data) { if(err) { return next(err); @@ -63,8 +63,7 @@ categoriesController.unreadTotal = function(req, res, next) { categoriesController.get = function(req, res, next) { var cid = req.params.category_id, page = req.query.page || 1, - uid = req.user ? req.user.uid : 0, - privileges = null; + uid = req.user ? req.user.uid : 0; async.waterfall([ function(next) { @@ -73,15 +72,14 @@ categoriesController.get = function(req, res, next) { if (!categoryPrivileges.read) { next(new Error('not-enough-privileges')); } else { - privileges = categoryPrivileges; - next(); + next(null, categoryPrivileges); } } else { next(err); } }); }, - function (next) { + function (privileges, next) { user.getSettings(uid, function(err, settings) { if (err) { return next(err); @@ -97,6 +95,7 @@ categoriesController.get = function(req, res, next) { } } + categoryData.privileges = privileges; next(err, categoryData); }); }); @@ -132,7 +131,7 @@ categoriesController.get = function(req, res, next) { href: nconf.get('url') } ]; - + next(null, categoryData); } ], function (err, data) { @@ -154,7 +153,6 @@ categoriesController.get = function(req, res, next) { category_url += '?' + queryString; } - data.privileges = privileges; data.currentPage = page; // Paginator for noscript