closes #4103
parent
32466d8bb1
commit
86d70eca74
@ -0,0 +1,70 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
var async = require('async');
|
||||||
|
var user = require('../../user');
|
||||||
|
var websockets = require('../index');
|
||||||
|
var events = require('../../events');
|
||||||
|
|
||||||
|
module.exports = function(SocketUser) {
|
||||||
|
|
||||||
|
SocketUser.banUsers = function(socket, uids, callback) {
|
||||||
|
toggleBan(socket.uid, uids, SocketUser.banUser, function(err) {
|
||||||
|
if (err) {
|
||||||
|
return callback(err);
|
||||||
|
}
|
||||||
|
async.each(uids, function(uid, next) {
|
||||||
|
events.log({
|
||||||
|
type: 'user-ban',
|
||||||
|
uid: socket.uid,
|
||||||
|
targetUid: uid,
|
||||||
|
ip: socket.ip
|
||||||
|
}, next);
|
||||||
|
}, callback);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
SocketUser.unbanUsers = function(socket, uids, callback) {
|
||||||
|
toggleBan(socket.uid, uids, user.unban, callback);
|
||||||
|
};
|
||||||
|
|
||||||
|
function toggleBan(uid, uids, method, callback) {
|
||||||
|
if (!Array.isArray(uids)) {
|
||||||
|
return callback(new Error('[[error:invalid-data]]'));
|
||||||
|
}
|
||||||
|
|
||||||
|
async.waterfall([
|
||||||
|
function (next) {
|
||||||
|
async.parallel({
|
||||||
|
isAdmin: async.apply(user.isAdministrator, uid),
|
||||||
|
isGlobalMod: async.apply(user.isGlobalModerator, uid)
|
||||||
|
}, next);
|
||||||
|
},
|
||||||
|
function (results, next) {
|
||||||
|
if (!results.isAdmin && !results.isGlobalMod) {
|
||||||
|
return next(new Error('[[error:no-privileges]]'));
|
||||||
|
}
|
||||||
|
async.each(uids, method, next);
|
||||||
|
}
|
||||||
|
], callback);
|
||||||
|
}
|
||||||
|
|
||||||
|
SocketUser.banUser = function(uid, callback) {
|
||||||
|
async.waterfall([
|
||||||
|
function (next) {
|
||||||
|
user.isAdministrator(uid, next);
|
||||||
|
},
|
||||||
|
function (isAdmin, next) {
|
||||||
|
if (isAdmin) {
|
||||||
|
return next(new Error('[[error:cant-ban-other-admins]]'));
|
||||||
|
}
|
||||||
|
user.ban(uid, next);
|
||||||
|
},
|
||||||
|
function (next) {
|
||||||
|
websockets.in('uid_' + uid).emit('event:banned');
|
||||||
|
next();
|
||||||
|
}
|
||||||
|
], callback);
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
Loading…
Reference in New Issue