You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nodebb/src/user/categories.js

75 lines
1.7 KiB
JavaScript

'use strict';
var async = require('async');
var db = require('../database');
var categories = require('../categories');
module.exports = function(User) {
User.getIgnoredCategories = function(uid, callback) {
db.getSortedSetRange('uid:' + uid + ':ignored:cids', 0, -1, callback);
};
User.getWatchedCategories = function(uid, callback) {
async.parallel({
ignored: function(next) {
User.getIgnoredCategories(uid, next);
},
all: function(next) {
db.getSortedSetRange('categories:cid', 0, -1, next);
}
}, function(err, results) {
if (err) {
return callback(err);
}
var watched = results.all.filter(function(cid) {
return cid && results.ignored.indexOf(cid) === -1;
});
callback(null, watched);
});
};
User.ignoreCategory = function(uid, cid, callback) {
if (!uid) {
return callback();
}
async.waterfall([
function (next) {
categories.exists(cid, next);
},
function (exists, next) {
if (!exists) {
return next(new Error('[[error:no-category]]'));
}
db.sortedSetAdd('uid:' + uid + ':ignored:cids', Date.now(), cid, next);
},
function (next) {
db.sortedSetAdd('cid:' + cid + ':ignorers', Date.now(), uid, next);
}
], callback);
};
User.watchCategory = function(uid, cid, callback) {
if (!uid) {
return callback();
}
async.waterfall([
function (next) {
categories.exists(cid, next);
},
function (exists, next) {
if (!exists) {
return next(new Error('[[error:no-category]]'));
}
db.sortedSetRemove('uid:' + uid + ':ignored:cids', cid, next);
},
function (next) {
db.sortedSetRemove('cid:' + cid + ':ignorers', uid, next);
}
], callback);
};
};