2022-06-22 11:32:51 -05:00
|
|
|
/**
|
|
|
|
* @author Marzavec ( https://github.com/marzavec )
|
|
|
|
* @summary Unban a user
|
|
|
|
* @version 1.0.0
|
|
|
|
* @description Un-bans target user by ip or hash
|
|
|
|
* @module unban
|
|
|
|
*/
|
2018-03-09 23:47:00 -08:00
|
|
|
|
2020-11-06 13:16:43 -08:00
|
|
|
import {
|
|
|
|
isModerator,
|
2022-06-22 11:32:51 -05:00
|
|
|
} from '../utility/_UAC.js';
|
2020-03-05 10:49:25 -06:00
|
|
|
|
2022-06-22 11:32:51 -05:00
|
|
|
/**
|
|
|
|
* Executes when invoked by a remote client
|
channel ownership base, part 1
Fleshing out the new channel ownership feature, along with a typo fix and small syntax updates.
A claim can now be staked with /claimchannel, a channel owner may change a trip's level using /setlevel
To do: unclaimchannel, setmotd, makeprivate, makepublic, renewclaim, garbage keeping, update mod commands to accept channelOwner and channelModerator, etc
2024-01-05 00:30:28 -08:00
|
|
|
* @param {Object} env - Environment object with references to core, server, socket & payload
|
2022-06-22 11:32:51 -05:00
|
|
|
* @public
|
|
|
|
* @return {void}
|
|
|
|
*/
|
2020-09-17 00:44:32 -05:00
|
|
|
export async function run({
|
|
|
|
core, server, socket, payload,
|
|
|
|
}) {
|
2018-06-04 00:07:24 -07:00
|
|
|
// increase rate limit chance and ignore if not admin or mod
|
2020-11-06 13:16:43 -08:00
|
|
|
if (!isModerator(socket.level)) {
|
2023-12-27 00:26:49 -08:00
|
|
|
return server.police.frisk(socket, 10);
|
2018-03-09 23:47:00 -08:00
|
|
|
}
|
|
|
|
|
2018-06-04 00:07:24 -07:00
|
|
|
// check user input
|
2020-09-17 00:44:32 -05:00
|
|
|
if (typeof payload.ip !== 'string' && typeof payload.hash !== 'string') {
|
2018-09-29 23:44:36 -07:00
|
|
|
return server.reply({
|
2020-09-22 00:34:30 -05:00
|
|
|
cmd: 'warn', // @todo Add numeric error code as `id`
|
2019-11-06 23:35:23 -08:00
|
|
|
text: "hash:'targethash' or ip:'1.2.3.4' is required",
|
2020-10-10 00:34:59 -05:00
|
|
|
channel: socket.channel, // @todo Multichannel
|
2018-03-13 23:22:23 -07:00
|
|
|
}, socket);
|
2018-03-10 22:41:17 -08:00
|
|
|
}
|
|
|
|
|
2018-06-04 00:07:24 -07:00
|
|
|
// find target
|
2020-03-12 13:28:20 -05:00
|
|
|
let mode;
|
|
|
|
let target;
|
2020-09-17 00:44:32 -05:00
|
|
|
if (typeof payload.ip === 'string') {
|
2018-03-13 23:22:23 -07:00
|
|
|
mode = 'ip';
|
2020-09-17 00:44:32 -05:00
|
|
|
target = payload.ip;
|
2018-03-13 23:22:23 -07:00
|
|
|
} else {
|
|
|
|
mode = 'hash';
|
2020-09-17 00:44:32 -05:00
|
|
|
target = payload.hash;
|
2018-03-13 23:22:23 -07:00
|
|
|
}
|
2018-03-13 22:26:53 -07:00
|
|
|
|
2018-06-04 00:07:24 -07:00
|
|
|
// remove arrest record
|
2019-04-07 17:04:10 -07:00
|
|
|
server.police.pardon(target);
|
2018-03-13 22:26:53 -07:00
|
|
|
|
2018-06-04 00:07:24 -07:00
|
|
|
// mask ip if used
|
2018-03-13 23:22:23 -07:00
|
|
|
if (mode === 'ip') {
|
|
|
|
target = server.getSocketHash(target);
|
2018-03-13 22:26:53 -07:00
|
|
|
}
|
2018-03-13 23:22:23 -07:00
|
|
|
console.log(`${socket.nick} [${socket.trip}] unbanned ${target} in ${socket.channel}`);
|
2018-03-09 23:47:00 -08:00
|
|
|
|
2018-06-04 00:07:24 -07:00
|
|
|
// reply with success
|
2018-03-09 23:47:00 -08:00
|
|
|
server.reply({
|
|
|
|
cmd: 'info',
|
2019-11-06 23:35:23 -08:00
|
|
|
text: `Unbanned ${target}`,
|
2020-10-10 00:34:59 -05:00
|
|
|
channel: socket.channel, // @todo Multichannel
|
2018-03-09 23:47:00 -08:00
|
|
|
}, socket);
|
|
|
|
|
2018-06-04 00:07:24 -07:00
|
|
|
// notify mods
|
2018-03-13 22:26:53 -07:00
|
|
|
server.broadcast({
|
|
|
|
cmd: 'info',
|
2020-03-06 15:29:15 -06:00
|
|
|
text: `${socket.nick}#${socket.trip} unbanned: ${target}`,
|
2020-10-10 00:34:59 -05:00
|
|
|
channel: false, // @todo Multichannel, false for global
|
2020-11-06 13:16:43 -08:00
|
|
|
}, { level: isModerator });
|
2018-03-13 22:26:53 -07:00
|
|
|
|
2018-06-04 00:07:24 -07:00
|
|
|
// stats are fun
|
2019-03-18 23:36:21 -07:00
|
|
|
core.stats.decrement('users-banned');
|
2018-03-09 23:47:00 -08:00
|
|
|
|
2019-11-06 23:35:23 -08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-06-22 11:32:51 -05:00
|
|
|
/**
|
|
|
|
* Module meta information
|
|
|
|
* @public
|
|
|
|
* @typedef {Object} unban/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-06 23:35:23 -08:00
|
|
|
export const info = {
|
2018-05-13 16:03:22 +05:30
|
|
|
name: 'unban',
|
2022-06-22 11:32:51 -05:00
|
|
|
category: 'moderators',
|
|
|
|
description: 'Un-bans target user by ip or hash',
|
2018-09-29 23:44:36 -07:00
|
|
|
usage: `
|
2019-11-06 23:35:23 -08:00
|
|
|
API: { cmd: 'unban', ip/hash: '<target ip or hash>' }`,
|
2018-06-04 00:07:24 -07:00
|
|
|
};
|