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.
121 lines
3.0 KiB
JavaScript
121 lines
3.0 KiB
JavaScript
var Groups = require('./groups'),
|
|
User = require('./user'),
|
|
|
|
async = require('async'),
|
|
|
|
CategoryTools = {};
|
|
|
|
CategoryTools.privileges = function(cid, uid, callback) {
|
|
async.parallel({
|
|
"+r": function(next) {
|
|
var key = 'cid:' + cid + ':privileges:+r';
|
|
Groups.exists(key, function(err, exists) {
|
|
if (exists) {
|
|
async.parallel({
|
|
isMember: function(next) {
|
|
Groups.isMemberByGroupName(uid, key, next);
|
|
},
|
|
isEmpty: function(next) {
|
|
Groups.isEmptyByGroupName(key, next);
|
|
}
|
|
}, next);
|
|
} else {
|
|
next(null, {
|
|
isMember: false,
|
|
isEmpty: true
|
|
});
|
|
}
|
|
});
|
|
},
|
|
"+w": function(next) {
|
|
var key = 'cid:' + cid + ':privileges:+w';
|
|
Groups.exists(key, function(err, exists) {
|
|
if (exists) {
|
|
async.parallel({
|
|
isMember: function(next) {
|
|
Groups.isMemberByGroupName(uid, key, next);
|
|
},
|
|
isEmpty: function(next) {
|
|
Groups.isEmptyByGroupName(key, next);
|
|
}
|
|
}, next);
|
|
} else {
|
|
next(null, {
|
|
isMember: false,
|
|
isEmpty: true
|
|
});
|
|
}
|
|
});
|
|
},
|
|
moderator: function(next) {
|
|
User.isModerator(uid, cid, next);
|
|
},
|
|
admin: function(next) {
|
|
User.isAdministrator(uid, next);
|
|
}
|
|
}, function(err, privileges) {
|
|
callback(err, !privileges ? null : {
|
|
"+r": privileges['+r'].isMember,
|
|
"+w": privileges['+w'].isMember,
|
|
read: (privileges['+r'].isMember || privileges['+r'].isEmpty) || privileges.moderator || privileges.admin,
|
|
write: (privileges['+w'].isMember || privileges['+w'].isEmpty) || privileges.moderator || privileges.admin,
|
|
editable: privileges.moderator || privileges.admin,
|
|
view_deleted: privileges.moderator || privileges.admin
|
|
});
|
|
});
|
|
};
|
|
|
|
CategoryTools.groupPrivileges = function(cid, gid, callback) {
|
|
async.parallel({
|
|
"+gr": function(next) {
|
|
var key = 'cid:' + cid + ':privileges:+gr';
|
|
Groups.exists(key, function(err, exists) {
|
|
if (exists) {
|
|
async.parallel({
|
|
isMember: function(next) {
|
|
Groups.isMemberByGroupName(gid, key, next);
|
|
},
|
|
isEmpty: function(next) {
|
|
Groups.isEmptyByGroupName(key, next);
|
|
}
|
|
}, next);
|
|
} else {
|
|
next(null, {
|
|
isMember: false,
|
|
isEmpty: true
|
|
});
|
|
}
|
|
});
|
|
},
|
|
"+gw": function(next) {
|
|
var key = 'cid:' + cid + ':privileges:+gw';
|
|
Groups.exists(key, function(err, exists) {
|
|
if (exists) {
|
|
async.parallel({
|
|
isMember: function(next) {
|
|
Groups.isMemberByGroupName(gid, key, next);
|
|
},
|
|
isEmpty: function(next) {
|
|
Groups.isEmptyByGroupName(key, next);
|
|
}
|
|
}, next);
|
|
} else {
|
|
next(null, {
|
|
isMember: false,
|
|
isEmpty: true
|
|
});
|
|
}
|
|
});
|
|
}
|
|
}, function(err, privileges) {
|
|
callback(err, !privileges ? null : {
|
|
"+gr": privileges['+gr'].isMember,
|
|
"+gw": privileges['+gw'].isMember,
|
|
read: (privileges['+gr'].isMember || privileges['+gr'].isEmpty),
|
|
write: (privileges['+gw'].isMember || privileges['+gw'].isEmpty),
|
|
});
|
|
});
|
|
};
|
|
|
|
module.exports = CategoryTools;
|