|
|
@ -156,6 +156,20 @@ SocketGroups.search = function(socket, data, callback) {
|
|
|
|
groups.search(data.query || '', data.options || {}, callback);
|
|
|
|
groups.search(data.query || '', data.options || {}, callback);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SocketGroups.kick = function(socket, data, callback) {
|
|
|
|
|
|
|
|
if (!data) {
|
|
|
|
|
|
|
|
return callback(new Error('[[error:invalid-data]]'));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
groups.ownership.isOwner(socket.uid, data.groupName, function(err, isOwner) {
|
|
|
|
|
|
|
|
if (!isOwner) {
|
|
|
|
|
|
|
|
return callback(new Error('[[error:no-privileges]]'));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
groups.leave(data.groupName, data.uid, callback);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
SocketGroups.cover = {};
|
|
|
|
SocketGroups.cover = {};
|
|
|
|
|
|
|
|
|
|
|
|
SocketGroups.cover.get = function(socket, data, callback) {
|
|
|
|
SocketGroups.cover.get = function(socket, data, callback) {
|
|
|
|