1
0
mirror of https://github.com/hack-chat/main.git synced 2024-03-22 13:20:33 +08:00
hack-chat-main/commands/mod/ban.js

116 lines
3.0 KiB
JavaScript
Raw Normal View History

2022-06-23 00:32:51 +08:00
/**
* @author Marzavec ( https://github.com/marzavec )
* @summary Ban a user
* @version 1.0.0
* @description Bans target user by name
* @module ban
*/
2018-03-10 15:47:00 +08:00
2020-11-07 05:16:43 +08:00
import {
isModerator,
getUserDetails,
levels,
2022-06-23 00:32:51 +08:00
} from '../utility/_UAC.js';
import {
Errors,
2022-06-23 00:32:51 +08:00
} from '../utility/_Constants.js';
import {
findUser,
2022-06-23 00:32:51 +08:00
} from '../utility/_Channels.js';
2022-06-23 00:32:51 +08:00
/**
* Executes when invoked by a remote client
* @param {Object} env - Enviroment object with references to core, server, socket & payload
* @public
* @return {void}
*/
2020-09-17 13:44:32 +08:00
export async function run({
core, server, socket, payload,
}) {
2018-06-04 15:07:24 +08:00
// increase rate limit chance and ignore if not admin or mod
2020-11-07 05:16:43 +08:00
if (!isModerator(socket.level)) {
2019-11-07 15:35:23 +08:00
return server.police.frisk(socket.address, 10);
2018-03-10 15:47:00 +08:00
}
2018-06-04 15:07:24 +08:00
// check user input
if (socket.hcProtocol === 1) {
if (typeof payload.nick !== 'string') {
2022-06-23 00:32:51 +08:00
return false;
}
payload.channel = socket.channel; // eslint-disable-line no-param-reassign
} else if (typeof payload.userid !== 'number') {
2022-06-23 00:32:51 +08:00
return false;
}
2018-06-04 15:07:24 +08:00
// find target user
const targetUser = findUser(server, payload);
if (!targetUser) {
return server.reply({
cmd: 'warn',
text: 'Could not find user in that channel',
id: Errors.Global.UNKNOWN_USER,
2020-10-10 13:34:59 +08:00
channel: socket.channel, // @todo Multichannel
2018-03-10 15:47:00 +08:00
}, socket);
}
const targetNick = targetUser.nick;
2018-06-04 15:07:24 +08:00
// i guess banning mods or admins isn't the best idea?
if (targetUser.level >= socket.level) {
return server.reply({
cmd: 'warn',
text: 'Cannot ban other users of the same level, how rude',
id: Errors.Global.PERMISSION,
2020-10-10 13:34:59 +08:00
channel: socket.channel, // @todo Multichannel
2018-03-10 15:47:00 +08:00
}, socket);
}
2018-06-04 15:07:24 +08:00
// commit arrest record
server.police.arrest(targetUser.address, targetUser.hash);
2018-03-10 15:47:00 +08:00
console.log(`${socket.nick} [${socket.trip}] banned ${targetNick} in ${socket.channel}`);
2018-06-04 15:07:24 +08:00
// notify normal users
2018-03-10 15:47:00 +08:00
server.broadcast({
cmd: 'info',
2019-11-07 15:35:23 +08:00
text: `Banned ${targetNick}`,
2020-11-07 05:16:43 +08:00
user: getUserDetails(targetUser),
2020-10-10 13:34:59 +08:00
channel: socket.channel, // @todo Multichannel
2020-11-07 05:16:43 +08:00
}, { channel: socket.channel, level: (level) => level < levels.moderator });
2018-06-04 15:07:24 +08:00
// notify mods
server.broadcast({
cmd: 'info',
text: `${socket.nick}#${socket.trip} banned ${targetNick} in ${payload.channel}, userhash: ${targetUser.hash}`,
2020-10-10 13:34:59 +08:00
channel: socket.channel, // @todo Multichannel
inChannel: payload.channel,
2020-11-07 05:16:43 +08:00
user: getUserDetails(targetUser),
banner: getUserDetails(socket),
}, { level: isModerator });
2018-06-04 15:07:24 +08:00
// force connection closed
targetUser.terminate();
2018-03-10 15:47:00 +08:00
2018-06-04 15:07:24 +08:00
// stats are fun
2019-03-19 14:36:21 +08:00
core.stats.increment('users-banned');
2018-03-10 15:47:00 +08:00
2019-11-07 15:35:23 +08:00
return true;
}
2022-06-23 00:32:51 +08:00
/**
* Module meta information
* @public
* @typedef {Object} ban/info
* @property {string} name - Module command name
* @property {string} category - Module category name
* @property {string} description - Information about module
* @property {string} usage - Information about module usage
*/
2019-11-07 15:35:23 +08:00
export const info = {
2018-05-13 18:33:22 +08:00
name: 'ban',
2022-06-23 00:32:51 +08:00
category: 'moderators',
description: 'Bans target user by name',
usage: `
2019-11-07 15:35:23 +08:00
API: { cmd: 'ban', nick: '<target nickname>' }`,
2018-05-13 18:33:22 +08:00
};