Add route to set the users groups

This commit is contained in:
Girish Ramakrishnan
2016-02-09 15:47:02 -08:00
parent 2b0791f4a3
commit f413bfb3a0
7 changed files with 186 additions and 16 deletions

View File

@@ -20,7 +20,8 @@ exports = module.exports = {
update: updateUser,
createOwner: createOwner,
getOwner: getOwner,
sendInvite: sendInvite
sendInvite: sendInvite,
setGroups: setGroups
};
var assert = require('assert'),
@@ -28,6 +29,7 @@ var assert = require('assert'),
crypto = require('crypto'),
DatabaseError = require('./databaseerror.js'),
groups = require('./groups.js'),
GroupError = groups.GroupError,
hat = require('hat'),
mailer = require('./mailer.js'),
tokendb = require('./tokendb.js'),
@@ -314,6 +316,28 @@ function changeAdmin(username, admin, callback) {
});
}
function setGroups(userId, groupIds, callback) {
assert.strictEqual(typeof userId, 'string');
assert(Array.isArray(groupIds));
assert.strictEqual(typeof callback, 'function');
userdb.getAllAdmins(function (error, result) {
if (error) return callback(new UserError(UserError.INTERNAL_ERROR, error));
// protect from a system where there is no admin left
if (result.length <= 1 && result[0].id === userId && groupIds.indexOf(groups.ADMIN_GROUP_ID) === -1) {
return callback(new UserError(UserError.NOT_ALLOWED, 'Only admin'));
}
groups.setGroups(userId, groupIds, function (error) {
if (error && error.reason === GroupError.NOT_FOUND) return callback(new UserError(UserError.NOT_FOUND, 'One or more groups not found'));
if (error) return callback(new UserError(UserError.INTERNAL_ERROR, error));
callback();
});
});
}
function getAllAdmins(callback) {
assert.strictEqual(typeof callback, 'function');