mirror of
https://github.com/hack-chat/main.git
synced 2024-03-22 13:20:33 +08:00
cleaned up and commented modules
This commit is contained in:
parent
62daa4893f
commit
e35fff59ba
2
clientSource/package-lock.json
generated
2
clientSource/package-lock.json
generated
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "hack.chat-v2",
|
"name": "hack.chat-v2",
|
||||||
"version": "2.0.1",
|
"version": "2.0.3",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
2
package-lock.json
generated
2
package-lock.json
generated
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "hack.chat-v2",
|
"name": "hack.chat-v2",
|
||||||
"version": "2.0.2",
|
"version": "2.0.3",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
2
server/package-lock.json
generated
2
server/package-lock.json
generated
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "hack.chat-v2",
|
"name": "hack.chat-v2",
|
||||||
"version": "2.0.1",
|
"version": "2.0.3",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -3,19 +3,18 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
exports.run = async (core, server, socket, data) => {
|
exports.run = async (core, server, socket, data) => {
|
||||||
|
// increase rate limit chance and ignore if not admin
|
||||||
if (socket.uType != 'admin') {
|
if (socket.uType != 'admin') {
|
||||||
// ignore if not admin
|
server._police.frisk(socket.remoteAddress, 20);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let mod = {
|
// add new trip to config
|
||||||
trip: data.trip
|
core.config.mods.push({ trip: data.trip }); // purposely not using `config.set()` to avoid auto-save
|
||||||
}
|
|
||||||
|
|
||||||
core.config.mods.push(mod); // purposely not using `config.set()` to avoid auto-save
|
|
||||||
|
|
||||||
|
// upgarde existing connections & notify user
|
||||||
let newMod = server.findSockets({ trip: data.trip });
|
let newMod = server.findSockets({ trip: data.trip });
|
||||||
|
|
||||||
if (newMod.length !== 0) {
|
if (newMod.length !== 0) {
|
||||||
for (let i = 0, l = newMod.length; i < l; i++) {
|
for (let i = 0, l = newMod.length; i < l; i++) {
|
||||||
newMod[i].uType = 'mod';
|
newMod[i].uType = 'mod';
|
||||||
|
@ -27,11 +26,13 @@ exports.run = async (core, server, socket, data) => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// return success message
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'info',
|
cmd: 'info',
|
||||||
text: `Added mod trip: ${data.trip}`
|
text: `Added mod trip: ${data.trip}`
|
||||||
}, socket);
|
}, socket);
|
||||||
|
|
||||||
|
// notify all mods
|
||||||
server.broadcast({
|
server.broadcast({
|
||||||
cmd: 'info',
|
cmd: 'info',
|
||||||
text: `Added mod trip: ${data.trip}`
|
text: `Added mod trip: ${data.trip}`
|
||||||
|
|
|
@ -3,32 +3,37 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
exports.run = async (core, server, socket, data) => {
|
exports.run = async (core, server, socket, data) => {
|
||||||
|
// increase rate limit chance and ignore if not admin
|
||||||
if (socket.uType != 'admin') {
|
if (socket.uType != 'admin') {
|
||||||
// ignore if not admin
|
server._police.frisk(socket.remoteAddress, 20);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// find all users currently in a channel
|
||||||
|
let currentUsers = server.findSockets({
|
||||||
|
channel: (channel) => true
|
||||||
|
});
|
||||||
|
|
||||||
|
// compile channel and user list
|
||||||
let channels = {};
|
let channels = {};
|
||||||
for (var client of server.clients) {
|
for (let i = 0, j = currentUsers.length; i < j; i++) {
|
||||||
if (client.channel) {
|
if (typeof channels[currentUsers[i].channel] === 'undefined') {
|
||||||
if (!channels[client.channel]) {
|
channels[currentUsers[i].channel] = [];
|
||||||
channels[client.channel] = [];
|
|
||||||
}
|
|
||||||
channels[client.channel].push(client.nick);
|
|
||||||
}
|
}
|
||||||
|
channels[currentUsers[i].channel].push(currentUsers[i].nick);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// build output
|
||||||
let lines = [];
|
let lines = [];
|
||||||
for (let channel in channels) {
|
for (let channel in channels) {
|
||||||
lines.push(`?${channel} ${channels[channel].join(", ")}`);
|
lines.push(`?${channel} ${channels[channel].join(", ")}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
let text = '';
|
// send reply
|
||||||
text += lines.join("\n");
|
|
||||||
|
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'info',
|
cmd: 'info',
|
||||||
text: text
|
text: lines.join("\n")
|
||||||
}, socket);
|
}, socket);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -3,25 +3,31 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
exports.run = async (core, server, socket, data) => {
|
exports.run = async (core, server, socket, data) => {
|
||||||
|
// increase rate limit chance and ignore if not admin
|
||||||
if (socket.uType != 'admin') {
|
if (socket.uType != 'admin') {
|
||||||
// ignore if not admin
|
server._police.frisk(socket.remoteAddress, 20);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// do command reloads and store results
|
||||||
let loadResult = core.managers.dynamicImports.reloadDirCache('src/commands');
|
let loadResult = core.managers.dynamicImports.reloadDirCache('src/commands');
|
||||||
loadResult += core.commands.loadCommands();
|
loadResult += core.commands.loadCommands();
|
||||||
|
|
||||||
|
// build reply based on reload results
|
||||||
if (loadResult == '') {
|
if (loadResult == '') {
|
||||||
loadResult = `Loaded ${core.commands._commands.length} commands, 0 errors`;
|
loadResult = `Loaded ${core.commands._commands.length} commands, 0 errors`;
|
||||||
} else {
|
} else {
|
||||||
loadResult = `Loaded ${core.commands._commands.length} commands, error(s): ${loadResult}`;
|
loadResult = `Loaded ${core.commands._commands.length} commands, error(s): ${loadResult}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// reply with results
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'info',
|
cmd: 'info',
|
||||||
text: loadResult
|
text: loadResult
|
||||||
}, socket);
|
}, socket);
|
||||||
|
|
||||||
|
// notify mods of reload #transparency
|
||||||
server.broadcast({
|
server.broadcast({
|
||||||
cmd: 'info',
|
cmd: 'info',
|
||||||
text: loadResult
|
text: loadResult
|
||||||
|
@ -32,4 +38,3 @@ exports.info = {
|
||||||
name: 'reload',
|
name: 'reload',
|
||||||
description: '(Re)loads any new commands into memory, outputs errors if any'
|
description: '(Re)loads any new commands into memory, outputs errors if any'
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,16 +1,17 @@
|
||||||
/*
|
/*
|
||||||
Description: Writes any changes to the config to the disk
|
Description: Writes the current config to disk
|
||||||
*/
|
*/
|
||||||
|
|
||||||
exports.run = async (core, server, socket, data) => {
|
exports.run = async (core, server, socket, data) => {
|
||||||
|
// increase rate limit chance and ignore if not admin
|
||||||
if (socket.uType != 'admin') {
|
if (socket.uType != 'admin') {
|
||||||
// ignore if not admin
|
server._police.frisk(socket.remoteAddress, 20);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let saveResult = core.managers.config.save();
|
// attempt save, notify of failure
|
||||||
|
if (!core.managers.config.save()) {
|
||||||
if (!saveResult) {
|
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'warn',
|
cmd: 'warn',
|
||||||
text: 'Failed to save config, check logs.'
|
text: 'Failed to save config, check logs.'
|
||||||
|
@ -19,11 +20,13 @@ exports.run = async (core, server, socket, data) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// return success message
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'info',
|
cmd: 'info',
|
||||||
text: 'Config saved!'
|
text: 'Config saved!'
|
||||||
}, socket);
|
}, socket);
|
||||||
|
|
||||||
|
// notify mods #transparency
|
||||||
server.broadcast({
|
server.broadcast({
|
||||||
cmd: 'info',
|
cmd: 'info',
|
||||||
text: 'Config saved!'
|
text: 'Config saved!'
|
||||||
|
@ -32,5 +35,5 @@ exports.run = async (core, server, socket, data) => {
|
||||||
|
|
||||||
exports.info = {
|
exports.info = {
|
||||||
name: 'saveconfig',
|
name: 'saveconfig',
|
||||||
description: 'Saves current config'
|
description: 'Writes the current config to disk'
|
||||||
};
|
};
|
||||||
|
|
|
@ -3,12 +3,15 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
exports.run = async (core, server, socket, data) => {
|
exports.run = async (core, server, socket, data) => {
|
||||||
|
// increase rate limit chance and ignore if not admin
|
||||||
if (socket.uType != 'admin') {
|
if (socket.uType != 'admin') {
|
||||||
// ignore if not admin
|
server._police.frisk(socket.remoteAddress, 20);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
server.broadcast( {
|
// send text to all channels
|
||||||
|
server.broadcast({
|
||||||
cmd: 'info',
|
cmd: 'info',
|
||||||
text: `Server Notice: ${data.text}`
|
text: `Server Notice: ${data.text}`
|
||||||
}, {});
|
}, {});
|
||||||
|
@ -20,4 +23,4 @@ exports.info = {
|
||||||
name: 'shout',
|
name: 'shout',
|
||||||
usage: 'shout {text}',
|
usage: 'shout {text}',
|
||||||
description: 'Displays passed text to every client connected'
|
description: 'Displays passed text to every client connected'
|
||||||
};
|
};
|
||||||
|
|
|
@ -2,9 +2,7 @@
|
||||||
Description: Generates a semi-unique channel name then broadcasts it to each client
|
Description: Generates a semi-unique channel name then broadcasts it to each client
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const verifyNickname = (nick) => {
|
const verifyNickname = (nick) => /^[a-zA-Z0-9_]{1,24}$/.test(nick);
|
||||||
return /^[a-zA-Z0-9_]{1,24}$/.test(nick);
|
|
||||||
};
|
|
||||||
|
|
||||||
exports.run = async (core, server, socket, data) => {
|
exports.run = async (core, server, socket, data) => {
|
||||||
if (server._police.frisk(socket.remoteAddress, 6)) {
|
if (server._police.frisk(socket.remoteAddress, 6)) {
|
||||||
|
@ -16,12 +14,13 @@ exports.run = async (core, server, socket, data) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// verify user data is string
|
||||||
if (typeof data.nick !== 'string') {
|
if (typeof data.nick !== 'string') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// make sure requested nickname meets standards
|
||||||
let newNick = data.nick.trim();
|
let newNick = data.nick.trim();
|
||||||
|
|
||||||
if (!verifyNickname(newNick)) {
|
if (!verifyNickname(newNick)) {
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'warn',
|
cmd: 'warn',
|
||||||
|
@ -31,6 +30,8 @@ exports.run = async (core, server, socket, data) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// prevent admin impersonation
|
||||||
|
// TODO: prevent mod impersonation
|
||||||
if (newNick.toLowerCase() == core.config.adminName.toLowerCase()) {
|
if (newNick.toLowerCase() == core.config.adminName.toLowerCase()) {
|
||||||
server._police.frisk(socket.remoteAddress, 4);
|
server._police.frisk(socket.remoteAddress, 4);
|
||||||
|
|
||||||
|
@ -42,11 +43,13 @@ exports.run = async (core, server, socket, data) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// find any sockets that have the same nickname
|
||||||
let userExists = server.findSockets({
|
let userExists = server.findSockets({
|
||||||
channel: socket.channel,
|
channel: socket.channel,
|
||||||
nick: (targetNick) => targetNick.toLowerCase() === newNick.toLowerCase()
|
nick: (targetNick) => targetNick.toLowerCase() === newNick.toLowerCase()
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// return error if found
|
||||||
if (userExists.length > 0) {
|
if (userExists.length > 0) {
|
||||||
// That nickname is already in that channel
|
// That nickname is already in that channel
|
||||||
server.reply({
|
server.reply({
|
||||||
|
@ -57,7 +60,7 @@ exports.run = async (core, server, socket, data) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let peerList = server.findSockets({ channel: socket.channel });
|
// build join and leave notices
|
||||||
let leaveNotice = {
|
let leaveNotice = {
|
||||||
cmd: 'onlineRemove',
|
cmd: 'onlineRemove',
|
||||||
nick: socket.nick
|
nick: socket.nick
|
||||||
|
@ -66,16 +69,20 @@ exports.run = async (core, server, socket, data) => {
|
||||||
cmd: 'onlineAdd',
|
cmd: 'onlineAdd',
|
||||||
nick: newNick,
|
nick: newNick,
|
||||||
trip: socket.trip || 'null',
|
trip: socket.trip || 'null',
|
||||||
hash: server.getSocketHash(socket)
|
hash: socket.hash
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// broadcast remove event and join event with new name, this is to support legacy clients and bots
|
||||||
server.broadcast( leaveNotice, { channel: socket.channel });
|
server.broadcast( leaveNotice, { channel: socket.channel });
|
||||||
server.broadcast( joinNotice, { channel: socket.channel });
|
server.broadcast( joinNotice, { channel: socket.channel });
|
||||||
|
|
||||||
|
// notify channel that the user has changed their name
|
||||||
server.broadcast( {
|
server.broadcast( {
|
||||||
cmd: 'info',
|
cmd: 'info',
|
||||||
text: `${socket.nick} is now ${newNick}`
|
text: `${socket.nick} is now ${newNick}`
|
||||||
}, { channel: socket.channel });
|
}, { channel: socket.channel });
|
||||||
|
|
||||||
|
// commit change to nickname
|
||||||
socket.nick = newNick;
|
socket.nick = newNick;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const parseText = (text) => {
|
const parseText = (text) => {
|
||||||
|
// verifies user input is text
|
||||||
if (typeof text !== 'string') {
|
if (typeof text !== 'string') {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -16,12 +17,16 @@ const parseText = (text) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
exports.run = async (core, server, socket, data) => {
|
exports.run = async (core, server, socket, data) => {
|
||||||
|
// check user input
|
||||||
let text = parseText(data.text);
|
let text = parseText(data.text);
|
||||||
if (!text) {
|
if (!text) {
|
||||||
// lets not send objects or empty text, yea?
|
// lets not send objects or empty text, yea?
|
||||||
|
server._police.frisk(socket.remoteAddress, 6);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// check for spam
|
||||||
let score = text.length / 83 / 4;
|
let score = text.length / 83 / 4;
|
||||||
if (server._police.frisk(socket.remoteAddress, score)) {
|
if (server._police.frisk(socket.remoteAddress, score)) {
|
||||||
server.reply({
|
server.reply({
|
||||||
|
@ -32,6 +37,7 @@ exports.run = async (core, server, socket, data) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// build chat payload
|
||||||
let payload = {
|
let payload = {
|
||||||
cmd: 'chat',
|
cmd: 'chat',
|
||||||
nick: socket.nick,
|
nick: socket.nick,
|
||||||
|
@ -48,6 +54,7 @@ exports.run = async (core, server, socket, data) => {
|
||||||
payload.trip = socket.trip;
|
payload.trip = socket.trip;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// check if the users connection is muted
|
||||||
// TODO: Add a more contained way for modules to interact, event hooks or something?
|
// TODO: Add a more contained way for modules to interact, event hooks or something?
|
||||||
if(core.muzzledHashes && core.muzzledHashes[socket.hash]){
|
if(core.muzzledHashes && core.muzzledHashes[socket.hash]){
|
||||||
server.broadcast( payload, { channel: socket.channel, hash: socket.hash });
|
server.broadcast( payload, { channel: socket.channel, hash: socket.hash });
|
||||||
|
@ -59,6 +66,7 @@ exports.run = async (core, server, socket, data) => {
|
||||||
server.broadcast( payload, { channel: socket.channel});
|
server.broadcast( payload, { channel: socket.channel});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// stats are fun
|
||||||
core.managers.stats.increment('messages-sent');
|
core.managers.stats.increment('messages-sent');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,8 @@
|
||||||
const stripIndents = require('common-tags').stripIndents;
|
const stripIndents = require('common-tags').stripIndents;
|
||||||
|
|
||||||
exports.run = async (core, server, socket, data) => {
|
exports.run = async (core, server, socket, data) => {
|
||||||
|
// TODO: this module needs to be clean up badly :(
|
||||||
|
|
||||||
// verify passed arguments
|
// verify passed arguments
|
||||||
let typeDt = typeof data.type;
|
let typeDt = typeof data.type;
|
||||||
let catDt = typeof data.category;
|
let catDt = typeof data.category;
|
||||||
|
@ -23,6 +25,7 @@ exports.run = async (core, server, socket, data) => {
|
||||||
Show all commands in category -> { cmd: 'help', category: '<category name>' }
|
Show all commands in category -> { cmd: 'help', category: '<category name>' }
|
||||||
Show specific command -> { cmd: 'help', command: '<command name>' }`;
|
Show specific command -> { cmd: 'help', command: '<command name>' }`;
|
||||||
|
|
||||||
|
// change reply based on query
|
||||||
if (typeDt !== 'undefined') {
|
if (typeDt !== 'undefined') {
|
||||||
let categories = core.commands.categories().sort();
|
let categories = core.commands.categories().sort();
|
||||||
reply = `Command Categories:\n${categories.map(c => `- ${c.replace('../src/commands/', '')}`).join('\n')}`;
|
reply = `Command Categories:\n${categories.map(c => `- ${c.replace('../src/commands/', '')}`).join('\n')}`;
|
||||||
|
@ -36,6 +39,7 @@ exports.run = async (core, server, socket, data) => {
|
||||||
Description: ${command.info.description || '¯\_(ツ)_/¯'}`;
|
Description: ${command.info.description || '¯\_(ツ)_/¯'}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// output reply
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'info',
|
cmd: 'info',
|
||||||
text: reply
|
text: reply
|
||||||
|
@ -46,4 +50,4 @@ exports.info = {
|
||||||
name: 'help',
|
name: 'help',
|
||||||
usage: 'help ([ type:categories] | [category:<category name> | command:<command name> ])',
|
usage: 'help ([ type:categories] | [category:<category name> | command:<command name> ])',
|
||||||
description: 'Outputs information about the servers current protocol'
|
description: 'Outputs information about the servers current protocol'
|
||||||
};
|
};
|
||||||
|
|
|
@ -2,11 +2,10 @@
|
||||||
Description: Generates a semi-unique channel name then broadcasts it to each client
|
Description: Generates a semi-unique channel name then broadcasts it to each client
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const verifyNickname = (nick) => {
|
const verifyNickname = (nick) => /^[a-zA-Z0-9_]{1,24}$/.test(nick);
|
||||||
return /^[a-zA-Z0-9_]{1,24}$/.test(nick);
|
|
||||||
};
|
|
||||||
|
|
||||||
exports.run = async (core, server, socket, data) => {
|
exports.run = async (core, server, socket, data) => {
|
||||||
|
// check for spam
|
||||||
if (server._police.frisk(socket.remoteAddress, 2)) {
|
if (server._police.frisk(socket.remoteAddress, 2)) {
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'warn',
|
cmd: 'warn',
|
||||||
|
@ -16,22 +15,20 @@ exports.run = async (core, server, socket, data) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (typeof data.nick !== 'string') {
|
// verify user input
|
||||||
return;
|
if (typeof data.nick !== 'string' || !verifyNickname(data.nick)) {
|
||||||
}
|
|
||||||
|
|
||||||
if (!verifyNickname(data.nick)) {
|
|
||||||
// Not a valid nickname? Chances are we won't find them
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// why would you invite yourself?
|
||||||
if (data.nick == socket.nick) {
|
if (data.nick == socket.nick) {
|
||||||
// They invited themself
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// generate common channel
|
||||||
let channel = Math.random().toString(36).substr(2, 8);
|
let channel = Math.random().toString(36).substr(2, 8);
|
||||||
|
|
||||||
|
// build and send invite
|
||||||
let payload = {
|
let payload = {
|
||||||
cmd: 'info',
|
cmd: 'info',
|
||||||
invite: channel,
|
invite: channel,
|
||||||
|
@ -39,6 +36,7 @@ exports.run = async (core, server, socket, data) => {
|
||||||
};
|
};
|
||||||
let inviteSent = server.broadcast( payload, { channel: socket.channel, nick: data.nick });
|
let inviteSent = server.broadcast( payload, { channel: socket.channel, nick: data.nick });
|
||||||
|
|
||||||
|
// server indicates the user was not found
|
||||||
if (!inviteSent) {
|
if (!inviteSent) {
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'warn',
|
cmd: 'warn',
|
||||||
|
@ -48,11 +46,13 @@ exports.run = async (core, server, socket, data) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// reply with common channel
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'info',
|
cmd: 'info',
|
||||||
text: `You invited ${data.nick} to ?${channel}`
|
text: `You invited ${data.nick} to ?${channel}`
|
||||||
}, socket);
|
}, socket);
|
||||||
|
|
||||||
|
// stats are fun
|
||||||
core.managers.stats.increment('invites-sent');
|
core.managers.stats.increment('invites-sent');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -62,4 +62,4 @@ exports.info = {
|
||||||
name: 'invite',
|
name: 'invite',
|
||||||
usage: 'invite {nick}',
|
usage: 'invite {nick}',
|
||||||
description: 'Generates a unique (more or less) room name and passes it to two clients'
|
description: 'Generates a unique (more or less) room name and passes it to two clients'
|
||||||
};
|
};
|
||||||
|
|
|
@ -10,11 +10,10 @@ const hash = (password) => {
|
||||||
return sha.digest('base64').substr(0, 6);
|
return sha.digest('base64').substr(0, 6);
|
||||||
};
|
};
|
||||||
|
|
||||||
const verifyNickname = (nick) => {
|
const verifyNickname = (nick) => /^[a-zA-Z0-9_]{1,24}$/.test(nick);
|
||||||
return /^[a-zA-Z0-9_]{1,24}$/.test(nick);
|
|
||||||
};
|
|
||||||
|
|
||||||
exports.run = async (core, server, socket, data) => {
|
exports.run = async (core, server, socket, data) => {
|
||||||
|
// check for spam
|
||||||
if (server._police.frisk(socket.remoteAddress, 3)) {
|
if (server._police.frisk(socket.remoteAddress, 3)) {
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'warn',
|
cmd: 'warn',
|
||||||
|
@ -24,22 +23,23 @@ exports.run = async (core, server, socket, data) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// calling socket already in a channel
|
||||||
if (typeof socket.channel !== 'undefined') {
|
if (typeof socket.channel !== 'undefined') {
|
||||||
// Calling socket already in a channel
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// check user input
|
||||||
if (typeof data.channel !== 'string' || typeof data.nick !== 'string') {
|
if (typeof data.channel !== 'string' || typeof data.nick !== 'string') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let channel = data.channel.trim();
|
let channel = data.channel.trim();
|
||||||
if (!channel) {
|
if (!channel) {
|
||||||
// Must join a non-blank channel
|
// must join a non-blank channel
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Process nickname
|
// process nickname
|
||||||
let nick = data.nick;
|
let nick = data.nick;
|
||||||
let nickArray = nick.split('#', 2);
|
let nickArray = nick.split('#', 2);
|
||||||
nick = nickArray[0].trim();
|
nick = nickArray[0].trim();
|
||||||
|
@ -53,13 +53,14 @@ exports.run = async (core, server, socket, data) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// check if the nickname already exists in the channel
|
||||||
let userExists = server.findSockets({
|
let userExists = server.findSockets({
|
||||||
channel: data.channel,
|
channel: data.channel,
|
||||||
nick: (targetNick) => targetNick.toLowerCase() === nick.toLowerCase()
|
nick: (targetNick) => targetNick.toLowerCase() === nick.toLowerCase()
|
||||||
});
|
});
|
||||||
|
|
||||||
if (userExists.length > 0) {
|
if (userExists.length > 0) {
|
||||||
// That nickname is already in that channel
|
// that nickname is already in that channel
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'warn',
|
cmd: 'warn',
|
||||||
text: 'Nickname taken'
|
text: 'Nickname taken'
|
||||||
|
@ -68,7 +69,7 @@ exports.run = async (core, server, socket, data) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Should we check for mod status first to prevent overwriting of admin status somehow? Meh, w/e, cba.
|
// TODO: should we check for mod status first to prevent overwriting of admin status somehow? Meh, w/e, cba.
|
||||||
let uType = 'user';
|
let uType = 'user';
|
||||||
let trip = null;
|
let trip = null;
|
||||||
let password = nickArray[1];
|
let password = nickArray[1];
|
||||||
|
@ -90,40 +91,47 @@ exports.run = async (core, server, socket, data) => {
|
||||||
trip = hash(password + core.config.tripSalt);
|
trip = hash(password + core.config.tripSalt);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Disallow moderator impersonation
|
// TODO: disallow moderator impersonation
|
||||||
for (let mod of core.config.mods) {
|
for (let mod of core.config.mods) {
|
||||||
if (trip === mod.trip) {
|
if (trip === mod.trip) {
|
||||||
uType = 'mod';
|
uType = 'mod';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Reply with online user list
|
// prepare to notify channel peers
|
||||||
let newPeerList = server.findSockets({ channel: data.channel });
|
let newPeerList = server.findSockets({ channel: data.channel });
|
||||||
|
let userHash = server.getSocketHash(socket);
|
||||||
|
let nicks = [];
|
||||||
|
|
||||||
let joinAnnouncement = {
|
let joinAnnouncement = {
|
||||||
cmd: 'onlineAdd',
|
cmd: 'onlineAdd',
|
||||||
nick: nick,
|
nick: nick,
|
||||||
trip: trip || 'null',
|
trip: trip || 'null',
|
||||||
hash: server.getSocketHash(socket)
|
hash: userHash
|
||||||
};
|
};
|
||||||
let nicks = [];
|
|
||||||
|
|
||||||
|
// send join announcement and prep online set
|
||||||
for (let i = 0, l = newPeerList.length; i < l; i++) {
|
for (let i = 0, l = newPeerList.length; i < l; i++) {
|
||||||
server.reply(joinAnnouncement, newPeerList[i]);
|
server.reply(joinAnnouncement, newPeerList[i]);
|
||||||
nicks.push(newPeerList[i].nick);
|
nicks.push(newPeerList[i].nick);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// store user info
|
||||||
socket.uType = uType;
|
socket.uType = uType;
|
||||||
socket.nick = nick;
|
socket.nick = nick;
|
||||||
socket.channel = channel;
|
socket.channel = channel;
|
||||||
socket.hash = server.getSocketHash(socket);
|
socket.hash = userHash;
|
||||||
if (trip !== null) socket.trip = trip;
|
if (trip !== null) socket.trip = trip;
|
||||||
|
|
||||||
nicks.push(socket.nick);
|
nicks.push(socket.nick);
|
||||||
|
|
||||||
|
// reply with channel peer list
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'onlineSet',
|
cmd: 'onlineSet',
|
||||||
nicks: nicks
|
nicks: nicks
|
||||||
}, socket);
|
}, socket);
|
||||||
|
|
||||||
|
// stats are fun
|
||||||
core.managers.stats.increment('users-joined');
|
core.managers.stats.increment('users-joined');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -12,10 +12,15 @@ const formatTime = (time) => {
|
||||||
|
|
||||||
let hours = Math.floor(minutes / 60);
|
let hours = Math.floor(minutes / 60);
|
||||||
minutes = minutes % 60;
|
minutes = minutes % 60;
|
||||||
return `${hours.toFixed(0)}h ${minutes.toFixed(0)}m ${seconds.toFixed(0)}s`;
|
|
||||||
|
let days = Math.floor(hours / 24);
|
||||||
|
hours = hours % 24;
|
||||||
|
|
||||||
|
return `${days.toFixed(0)}d ${hours.toFixed(0)}h ${minutes.toFixed(0)}m ${seconds.toFixed(0)}s`;
|
||||||
};
|
};
|
||||||
|
|
||||||
exports.run = async (core, server, socket, data) => {
|
exports.run = async (core, server, socket, data) => {
|
||||||
|
// gather connection and channel count
|
||||||
let ips = {};
|
let ips = {};
|
||||||
let channels = {};
|
let channels = {};
|
||||||
for (let client of server.clients) {
|
for (let client of server.clients) {
|
||||||
|
@ -31,6 +36,7 @@ exports.run = async (core, server, socket, data) => {
|
||||||
ips = null;
|
ips = null;
|
||||||
channels = null;
|
channels = null;
|
||||||
|
|
||||||
|
// dispatch info
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'info',
|
cmd: 'info',
|
||||||
text: stripIndents`current-connections: ${uniqueClientCount}
|
text: stripIndents`current-connections: ${uniqueClientCount}
|
||||||
|
@ -44,10 +50,11 @@ exports.run = async (core, server, socket, data) => {
|
||||||
server-uptime: ${formatTime(process.hrtime(core.managers.stats.get('start-time')))}`
|
server-uptime: ${formatTime(process.hrtime(core.managers.stats.get('start-time')))}`
|
||||||
}, socket);
|
}, socket);
|
||||||
|
|
||||||
|
// stats are fun
|
||||||
core.managers.stats.increment('stats-requested');
|
core.managers.stats.increment('stats-requested');
|
||||||
};
|
};
|
||||||
|
|
||||||
exports.info = {
|
exports.info = {
|
||||||
name: 'morestats',
|
name: 'morestats',
|
||||||
description: 'Sends back current server stats to the calling client'
|
description: 'Sends back current server stats to the calling client'
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
/*
|
/*
|
||||||
Description: Generates a semi-unique channel name then broadcasts it to each client
|
Description: Changes the current channel of the calling socket
|
||||||
*/
|
*/
|
||||||
|
|
||||||
exports.run = async (core, server, socket, data) => {
|
exports.run = async (core, server, socket, data) => {
|
||||||
|
// check for spam
|
||||||
if (server._police.frisk(socket.remoteAddress, 6)) {
|
if (server._police.frisk(socket.remoteAddress, 6)) {
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'warn',
|
cmd: 'warn',
|
||||||
|
@ -12,15 +13,17 @@ exports.run = async (core, server, socket, data) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// check user input
|
||||||
if (typeof data.channel !== 'string') {
|
if (typeof data.channel !== 'string') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (data.channel === socket.channel) {
|
if (data.channel === socket.channel) {
|
||||||
// They are trying to rejoin the channel
|
// they are trying to rejoin the channel
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// check that the nickname isn't already in target channel
|
||||||
const currentNick = socket.nick.toLowerCase();
|
const currentNick = socket.nick.toLowerCase();
|
||||||
let userExists = server.findSockets({
|
let userExists = server.findSockets({
|
||||||
channel: data.channel,
|
channel: data.channel,
|
||||||
|
@ -32,6 +35,7 @@ exports.run = async (core, server, socket, data) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// broadcast leave notice to peers
|
||||||
let peerList = server.findSockets({ channel: socket.channel });
|
let peerList = server.findSockets({ channel: socket.channel });
|
||||||
|
|
||||||
if (peerList.length > 1) {
|
if (peerList.length > 1) {
|
||||||
|
@ -50,12 +54,13 @@ exports.run = async (core, server, socket, data) => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// broadcast join notice to new peers
|
||||||
let newPeerList = server.findSockets({ channel: data.channel });
|
let newPeerList = server.findSockets({ channel: data.channel });
|
||||||
let moveAnnouncement = {
|
let moveAnnouncement = {
|
||||||
cmd: 'onlineAdd',
|
cmd: 'onlineAdd',
|
||||||
nick: socket.nick,
|
nick: socket.nick,
|
||||||
trip: socket.trip || 'null',
|
trip: socket.trip || 'null',
|
||||||
hash: server.getSocketHash(socket)
|
hash: socket.hash
|
||||||
};
|
};
|
||||||
let nicks = [];
|
let nicks = [];
|
||||||
|
|
||||||
|
@ -66,11 +71,13 @@ exports.run = async (core, server, socket, data) => {
|
||||||
|
|
||||||
nicks.push(socket.nick);
|
nicks.push(socket.nick);
|
||||||
|
|
||||||
|
// reply with new user list
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'onlineSet',
|
cmd: 'onlineSet',
|
||||||
nicks: nicks
|
nicks: nicks
|
||||||
}, socket);
|
}, socket);
|
||||||
|
|
||||||
|
// commit change
|
||||||
socket.channel = data.channel;
|
socket.channel = data.channel;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -80,4 +87,4 @@ exports.info = {
|
||||||
name: 'move',
|
name: 'move',
|
||||||
usage: 'move {channel}',
|
usage: 'move {channel}',
|
||||||
description: 'This will change the current channel to the new one provided'
|
description: 'This will change the current channel to the new one provided'
|
||||||
};
|
};
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
exports.run = async (core, server, socket, data) => {
|
exports.run = async (core, server, socket, data) => {
|
||||||
|
// gather connection and channel count
|
||||||
let ips = {};
|
let ips = {};
|
||||||
let channels = {};
|
let channels = {};
|
||||||
for (let client of server.clients) {
|
for (let client of server.clients) {
|
||||||
|
@ -18,15 +19,17 @@ exports.run = async (core, server, socket, data) => {
|
||||||
ips = null;
|
ips = null;
|
||||||
channels = null;
|
channels = null;
|
||||||
|
|
||||||
|
// dispatch info
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'info',
|
cmd: 'info',
|
||||||
text: `${uniqueClientCount} unique IPs in ${uniqueChannels} channels`
|
text: `${uniqueClientCount} unique IPs in ${uniqueChannels} channels`
|
||||||
}, socket);
|
}, socket);
|
||||||
|
|
||||||
|
// stats are fun
|
||||||
core.managers.stats.increment('stats-requested');
|
core.managers.stats.increment('stats-requested');
|
||||||
};
|
};
|
||||||
|
|
||||||
exports.info = {
|
exports.info = {
|
||||||
name: 'stats',
|
name: 'stats',
|
||||||
description: 'Sends back legacy server stats to the calling client'
|
description: 'Sends back legacy server stats to the calling client'
|
||||||
};
|
};
|
||||||
|
|
|
@ -11,6 +11,7 @@ exports.run = async (core, server, socket, data) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// send leave notice to client peers
|
||||||
if (socket.channel) {
|
if (socket.channel) {
|
||||||
server.broadcast({
|
server.broadcast({
|
||||||
cmd: 'onlineRemove',
|
cmd: 'onlineRemove',
|
||||||
|
@ -18,6 +19,7 @@ exports.run = async (core, server, socket, data) => {
|
||||||
}, { channel: socket.channel });
|
}, { channel: socket.channel });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// commit close just in case
|
||||||
socket.terminate();
|
socket.terminate();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,7 @@ exports.run = async (core, server, socket, data) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// send warning to target socket
|
||||||
server.reply({ cmd: 'warn', text: data.text }, socket);
|
server.reply({ cmd: 'warn', text: data.text }, socket);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -3,15 +3,19 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
exports.run = async (core, server, socket, data) => {
|
exports.run = async (core, server, socket, data) => {
|
||||||
|
// increase rate limit chance and ignore if not admin or mod
|
||||||
if (socket.uType == 'user') {
|
if (socket.uType == 'user') {
|
||||||
// ignore if not mod or admin
|
server._police.frisk(socket.remoteAddress, 10);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// check user input
|
||||||
if (typeof data.nick !== 'string') {
|
if (typeof data.nick !== 'string') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// find target user
|
||||||
let targetNick = data.nick;
|
let targetNick = data.nick;
|
||||||
let badClient = server.findSockets({ channel: socket.channel, nick: targetNick });
|
let badClient = server.findSockets({ channel: socket.channel, nick: targetNick });
|
||||||
|
|
||||||
|
@ -26,6 +30,7 @@ exports.run = async (core, server, socket, data) => {
|
||||||
|
|
||||||
badClient = badClient[0];
|
badClient = badClient[0];
|
||||||
|
|
||||||
|
// i guess banning mods or admins isn't the best idea?
|
||||||
if (badClient.uType !== 'user') {
|
if (badClient.uType !== 'user') {
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'warn',
|
cmd: 'warn',
|
||||||
|
@ -35,23 +40,27 @@ exports.run = async (core, server, socket, data) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let clientHash = server.getSocketHash(badClient);
|
// commit arrest record
|
||||||
server._police.arrest(badClient.remoteAddress, clientHash);
|
server._police.arrest(badClient.remoteAddress, badClient.hash);
|
||||||
|
|
||||||
console.log(`${socket.nick} [${socket.trip}] banned ${targetNick} in ${socket.channel}`);
|
console.log(`${socket.nick} [${socket.trip}] banned ${targetNick} in ${socket.channel}`);
|
||||||
|
|
||||||
|
// notify normal users
|
||||||
server.broadcast({
|
server.broadcast({
|
||||||
cmd: 'info',
|
cmd: 'info',
|
||||||
text: `Banned ${targetNick}`
|
text: `Banned ${targetNick}`
|
||||||
}, { channel: socket.channel, uType: 'user' });
|
}, { channel: socket.channel, uType: 'user' });
|
||||||
|
|
||||||
|
// notify mods
|
||||||
server.broadcast({
|
server.broadcast({
|
||||||
cmd: 'info',
|
cmd: 'info',
|
||||||
text: `${socket.nick} banned ${targetNick} in ${socket.channel}, userhash: ${clientHash}`
|
text: `${socket.nick} banned ${targetNick} in ${socket.channel}, userhash: ${badClient.hash}`
|
||||||
}, { uType: 'mod' });
|
}, { uType: 'mod' });
|
||||||
|
|
||||||
badClient.close();
|
// force connection closed
|
||||||
|
badClient.terminate();
|
||||||
|
|
||||||
|
// stats are fun
|
||||||
core.managers.stats.increment('users-banned');
|
core.managers.stats.increment('users-banned');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -8,15 +8,19 @@ exports.init = (core) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.run = async (core, server, socket, data) => {
|
exports.run = async (core, server, socket, data) => {
|
||||||
|
// increase rate limit chance and ignore if not admin or mod
|
||||||
if (socket.uType == 'user') {
|
if (socket.uType == 'user') {
|
||||||
// ignore if not mod or admin
|
server._police.frisk(socket.remoteAddress, 10);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// check user input
|
||||||
if (typeof data.nick !== 'string') {
|
if (typeof data.nick !== 'string') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// find target user
|
||||||
let badClient = server.findSockets({ channel: socket.channel, nick: data.nick });
|
let badClient = server.findSockets({ channel: socket.channel, nick: data.nick });
|
||||||
|
|
||||||
if (badClient.length === 0) {
|
if (badClient.length === 0) {
|
||||||
|
@ -30,6 +34,7 @@ exports.run = async (core, server, socket, data) => {
|
||||||
|
|
||||||
badClient = badClient[0];
|
badClient = badClient[0];
|
||||||
|
|
||||||
|
// likely dont need this, muting mods and admins is fine
|
||||||
if (badClient.uType !== 'user') {
|
if (badClient.uType !== 'user') {
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'warn',
|
cmd: 'warn',
|
||||||
|
@ -39,19 +44,21 @@ exports.run = async (core, server, socket, data) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// store hash in mute list
|
||||||
let record = core.muzzledHashes[badClient.hash] = {
|
let record = core.muzzledHashes[badClient.hash] = {
|
||||||
dumb:true
|
dumb:true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// store allies if needed
|
||||||
if(data.allies && Array.isArray(data.allies)){
|
if(data.allies && Array.isArray(data.allies)){
|
||||||
record.allies = data.allies;
|
record.allies = data.allies;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// notify mods
|
||||||
server.broadcast({
|
server.broadcast({
|
||||||
cmd: 'info',
|
cmd: 'info',
|
||||||
text: `${socket.nick} muzzled ${data.nick} in ${socket.channel}, userhash: ${badClient.hash}`
|
text: `${socket.nick} muzzled ${data.nick} in ${socket.channel}, userhash: ${badClient.hash}`
|
||||||
}, { uType: 'mod' });
|
}, { uType: 'mod' });
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.requiredData = ['nick'];
|
exports.requiredData = ['nick'];
|
||||||
|
|
|
@ -1,19 +1,23 @@
|
||||||
/*
|
/*
|
||||||
Description: Forces a change on the target socket's channel, then broadcasts event
|
Description: Forces a change on the target(s) socket's channel, then broadcasts event
|
||||||
*/
|
*/
|
||||||
|
|
||||||
exports.run = async (core, server, socket, data) => {
|
exports.run = async (core, server, socket, data) => {
|
||||||
if (socket.uType === 'user') {
|
// increase rate limit chance and ignore if not admin or mod
|
||||||
// ignore if not mod or admin
|
if (socket.uType == 'user') {
|
||||||
|
server._police.frisk(socket.remoteAddress, 10);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// check user input
|
||||||
if (typeof data.nick !== 'string') {
|
if (typeof data.nick !== 'string') {
|
||||||
if (typeof data.nick !== 'object' && !Array.isArray(data.nick)) {
|
if (typeof data.nick !== 'object' && !Array.isArray(data.nick)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// find target user(s)
|
||||||
let badClients = server.findSockets({ channel: socket.channel, nick: data.nick });
|
let badClients = server.findSockets({ channel: socket.channel, nick: data.nick });
|
||||||
|
|
||||||
if (badClients.length === 0) {
|
if (badClients.length === 0) {
|
||||||
|
@ -25,6 +29,7 @@ exports.run = async (core, server, socket, data) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// check if found targets are kickable, commit kick
|
||||||
let newChannel = '';
|
let newChannel = '';
|
||||||
let kicked = [];
|
let kicked = [];
|
||||||
for (let i = 0, j = badClients.length; i < j; i++) {
|
for (let i = 0, j = badClients.length; i < j; i++) {
|
||||||
|
@ -66,6 +71,7 @@ exports.run = async (core, server, socket, data) => {
|
||||||
text: `Kicked ${kicked.join(', ')}`
|
text: `Kicked ${kicked.join(', ')}`
|
||||||
}, { channel: socket.channel, uType: 'user' });
|
}, { channel: socket.channel, uType: 'user' });
|
||||||
|
|
||||||
|
// stats are fun
|
||||||
core.managers.stats.increment('users-kicked', kicked.length);
|
core.managers.stats.increment('users-kicked', kicked.length);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -75,4 +81,4 @@ exports.info = {
|
||||||
name: 'kick',
|
name: 'kick',
|
||||||
usage: 'kick {nick}',
|
usage: 'kick {nick}',
|
||||||
description: 'Silently forces target client(s) into another channel. `nick` may be string or array of strings'
|
description: 'Silently forces target client(s) into another channel. `nick` may be string or array of strings'
|
||||||
};
|
};
|
||||||
|
|
|
@ -4,11 +4,14 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
exports.run = async (core, server, socket, data) => {
|
exports.run = async (core, server, socket, data) => {
|
||||||
|
// increase rate limit chance and ignore if not admin or mod
|
||||||
if (socket.uType == 'user') {
|
if (socket.uType == 'user') {
|
||||||
// ignore if not mod or admin
|
server._police.frisk(socket.remoteAddress, 10);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// check user input
|
||||||
if (typeof data.ip !== 'string' && typeof data.hash !== 'string') {
|
if (typeof data.ip !== 'string' && typeof data.hash !== 'string') {
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'warn',
|
cmd: 'warn',
|
||||||
|
@ -18,8 +21,8 @@ exports.run = async (core, server, socket, data) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// find target & remove mute status
|
||||||
let target;
|
let target;
|
||||||
|
|
||||||
if (typeof data.ip === 'string') {
|
if (typeof data.ip === 'string') {
|
||||||
target = getSocketHash(data.ip);
|
target = getSocketHash(data.ip);
|
||||||
} else {
|
} else {
|
||||||
|
@ -28,11 +31,11 @@ exports.run = async (core, server, socket, data) => {
|
||||||
|
|
||||||
delete core.muzzledHashes[target];
|
delete core.muzzledHashes[target];
|
||||||
|
|
||||||
|
// notify mods
|
||||||
server.broadcast({
|
server.broadcast({
|
||||||
cmd: 'info',
|
cmd: 'info',
|
||||||
text: `${socket.nick} unmuzzled : ${target}`
|
text: `${socket.nick} unmuzzled : ${target}`
|
||||||
}, { uType: 'mod' });
|
}, { uType: 'mod' });
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.info = {
|
exports.info = {
|
||||||
|
|
|
@ -3,11 +3,14 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
exports.run = async (core, server, socket, data) => {
|
exports.run = async (core, server, socket, data) => {
|
||||||
|
// increase rate limit chance and ignore if not admin or mod
|
||||||
if (socket.uType == 'user') {
|
if (socket.uType == 'user') {
|
||||||
// ignore if not mod or admin
|
server._police.frisk(socket.remoteAddress, 10);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// check user input
|
||||||
if (typeof data.ip !== 'string' && typeof data.hash !== 'string') {
|
if (typeof data.ip !== 'string' && typeof data.hash !== 'string') {
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'warn',
|
cmd: 'warn',
|
||||||
|
@ -17,8 +20,8 @@ exports.run = async (core, server, socket, data) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// find target
|
||||||
let mode, target;
|
let mode, target;
|
||||||
|
|
||||||
if (typeof data.ip === 'string') {
|
if (typeof data.ip === 'string') {
|
||||||
mode = 'ip';
|
mode = 'ip';
|
||||||
target = data.ip;
|
target = data.ip;
|
||||||
|
@ -27,24 +30,28 @@ exports.run = async (core, server, socket, data) => {
|
||||||
target = data.hash;
|
target = data.hash;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// remove arrest record
|
||||||
server._police.pardon(target);
|
server._police.pardon(target);
|
||||||
|
|
||||||
|
// mask ip if used
|
||||||
if (mode === 'ip') {
|
if (mode === 'ip') {
|
||||||
target = server.getSocketHash(target);
|
target = server.getSocketHash(target);
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(`${socket.nick} [${socket.trip}] unbanned ${target} in ${socket.channel}`);
|
console.log(`${socket.nick} [${socket.trip}] unbanned ${target} in ${socket.channel}`);
|
||||||
|
|
||||||
|
// reply with success
|
||||||
server.reply({
|
server.reply({
|
||||||
cmd: 'info',
|
cmd: 'info',
|
||||||
text: `Unbanned ${target}`
|
text: `Unbanned ${target}`
|
||||||
}, socket);
|
}, socket);
|
||||||
|
|
||||||
|
// notify mods
|
||||||
server.broadcast({
|
server.broadcast({
|
||||||
cmd: 'info',
|
cmd: 'info',
|
||||||
text: `${socket.nick} unbanned: ${target}`
|
text: `${socket.nick} unbanned: ${target}`
|
||||||
}, { uType: 'mod' });
|
}, { uType: 'mod' });
|
||||||
|
|
||||||
|
// stats are fun
|
||||||
core.managers.stats.decrement('users-banned');
|
core.managers.stats.decrement('users-banned');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -52,4 +59,4 @@ exports.info = {
|
||||||
name: 'unban',
|
name: 'unban',
|
||||||
usage: 'unban {[ip || hash]}',
|
usage: 'unban {[ip || hash]}',
|
||||||
description: 'Removes target ip from the ratelimiter'
|
description: 'Removes target ip from the ratelimiter'
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user