|
|
|
@ -615,15 +615,26 @@ var async = require('async'),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Groups.requestMembership = function(groupName, uid, callback) {
|
|
|
|
|
if (parseInt(uid, 10) > 0) {
|
|
|
|
|
db.setAdd('group:' + groupName + ':pending', uid, callback);
|
|
|
|
|
plugins.fireHook('action:group.requestMembership', {
|
|
|
|
|
groupName: groupName,
|
|
|
|
|
uid: uid
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
callback(new Error('[[error:not-logged-in]]'));
|
|
|
|
|
}
|
|
|
|
|
async.parallel({
|
|
|
|
|
exists: async.apply(Groups.isMember, uid, groupName),
|
|
|
|
|
isMember: async.apply(Groups.exists, groupName)
|
|
|
|
|
}, function(err, checks) {
|
|
|
|
|
if (!checks.exists) {
|
|
|
|
|
return callback(new Error('[[error:no-group]]'));
|
|
|
|
|
} else if (checks.isMember) {
|
|
|
|
|
return callback(new Error('[[error:group-already-member]]'));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (parseInt(uid, 10) > 0) {
|
|
|
|
|
db.setAdd('group:' + groupName + ':pending', uid, callback);
|
|
|
|
|
plugins.fireHook('action:group.requestMembership', {
|
|
|
|
|
groupName: groupName,
|
|
|
|
|
uid: uid
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
callback(new Error('[[error:not-logged-in]]'));
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Groups.acceptMembership = function(groupName, uid, callback) {
|
|
|
|
|