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

Move most uses of uType filtering to use UAC levels

This commit is contained in:
MinusGix 2020-03-05 10:49:25 -06:00
parent 2fd054a31e
commit 50737bc0d9
14 changed files with 64 additions and 45 deletions

View File

@ -2,10 +2,12 @@
Description: Adds the target trip to the mod list then elevates the uType
*/
import * as UAC from "../utility/UAC/info";
// module main
export async function run(core, server, socket, data) {
// increase rate limit chance and ignore if not admin
if (socket.uType !== 'admin') {
if (!UAC.isAdmin(socket.level)) {
return server.police.frisk(socket.address, 20);
}
@ -18,6 +20,7 @@ export async function run(core, server, socket, data) {
for (let i = 0, l = newMod.length; i < l; i += 1) {
// upgrade privilages
newMod[i].uType = 'mod';
newMod[i].level = UAC.levels.moderator;
// inform new mod
server.send({
@ -37,7 +40,7 @@ export async function run(core, server, socket, data) {
server.broadcast({
cmd: 'info',
text: `Added mod: ${data.trip}`,
}, { uType: 'mod' });
}, { level: UAC.isModerator });
return true;
}

View File

@ -2,10 +2,12 @@
Description: Outputs all current channels and their user nicks
*/
import * as UAC from "../utility/UAC/info";
// module main
export async function run(core, server, socket) {
// increase rate limit chance and ignore if not admin
if (socket.uType !== 'admin') {
if (!UAC.isAdmin(socket.level)) {
return server.police.frisk(socket.address, 20);
}

View File

@ -2,10 +2,12 @@
Description: Clears and resets the command modules, outputting any errors
*/
import * as UAC from "../utility/UAC/info";
// module main
export async function run(core, server, socket, data) {
// increase rate limit chance and ignore if not admin
if (socket.uType !== 'admin') {
if (!UAC.isAdmin(socket.level)) {
return server.police.frisk(socket.address, 20);
}
@ -28,17 +30,11 @@ export async function run(core, server, socket, data) {
loadResult += `\nReason: ${data.reason}`;
}
// reply with results
// send results to moderators (which the user using this command is higher than)
server.reply({
cmd: 'info',
text: loadResult,
}, socket);
// notify mods of reload #transparency
server.broadcast({
cmd: 'info',
text: loadResult,
}, { uType: 'mod' });
}, { level: UAC.isModerator });
return true;
}

View File

@ -2,10 +2,12 @@
Description: Removes target trip from the config as a mod and downgrades the socket type
*/
import * as UAC from "../utility/UAC/info";
// module main
export async function run(core, server, socket, data) {
// increase rate limit chance and ignore if not admin
if (socket.uType !== 'admin') {
if (!UAC.isAdmin(socket.level)) {
return server.police.frisk(socket.address, 20);
}
@ -18,6 +20,7 @@ export async function run(core, server, socket, data) {
for (let i = 0, l = targetMod.length; i < l; i += 1) {
// downgrade privilages
targetMod[i].uType = 'user';
targetMod[i].level = UAC.levels.user;
// inform ex-mod
server.send({
@ -39,7 +42,7 @@ export async function run(core, server, socket, data) {
server.broadcast({
cmd: 'info',
text: `Removed mod: ${data.trip}`,
}, { uType: 'mod' });
}, { level: UAC.isModerator });
return true;
}

View File

@ -2,10 +2,12 @@
Description: Writes the current config to disk
*/
import * as UAC from "../utility/UAC/info";
// module main
export async function run(core, server, socket) {
// increase rate limit chance and ignore if not admin
if (socket.uType !== 'admin') {
if (!UAC.isAdmin(socket.level)) {
return server.police.frisk(socket.address, 20);
}
@ -17,17 +19,11 @@ export async function run(core, server, socket) {
}, socket);
}
// return success message
// return success message to moderators and admins
server.reply({
cmd: 'info',
text: 'Config saved!',
}, socket);
// notify mods #transparency
server.broadcast({
cmd: 'info',
text: 'Config saved!',
}, { uType: 'mod' });
}, { level: UAC.isModerator });
return true;
}

View File

@ -2,10 +2,12 @@
Description: Emmits a server-wide message as `info`
*/
import * as UAC from "../utility/UAC/info";
// module main
export async function run(core, server, socket, data) {
// increase rate limit chance and ignore if not admin
if (socket.uType !== 'admin') {
if (!UAC.isAdmin(socket.level)) {
return server.police.frisk(socket.address, 20);
}

View File

@ -2,6 +2,8 @@
Description: Rebroadcasts any `text` to all clients in a `channel`
*/
import * as UAC from "../utility/UAC/info";
// module support functions
const parseText = (text) => {
// verifies user input is text
@ -43,11 +45,12 @@ export async function run(core, server, socket, data) {
cmd: 'chat',
nick: socket.nick,
text,
level: socket.level
};
if (socket.uType === 'admin') {
if (UAC.isAdmin(socket.level)) {
payload.admin = true;
} else if (socket.uType === 'mod') {
} else if (UAC.isModerator(socket.level)) {
payload.mod = true;
}

View File

@ -2,10 +2,12 @@
Description: Adds the target socket's ip to the ratelimiter
*/
import * as UAC from "../utility/UAC/info";
// module main
export async function run(core, server, socket, data) {
// increase rate limit chance and ignore if not admin or mod
if (socket.uType === 'user') {
if (!UAC.isModerator(socket.level)) {
return server.police.frisk(socket.address, 10);
}
@ -28,7 +30,7 @@ export async function run(core, server, socket, data) {
[badClient] = badClient;
// i guess banning mods or admins isn't the best idea?
if (badClient.uType !== 'user') {
if (badClient.level >= socket.level) {
return server.reply({
cmd: 'warn',
text: 'Cannot ban other mods, how rude',
@ -44,13 +46,13 @@ export async function run(core, server, socket, data) {
server.broadcast({
cmd: 'info',
text: `Banned ${targetNick}`,
}, { channel: socket.channel, uType: 'user' });
}, { channel: socket.channel, level: (level) => level < UAC.levels.moderator });
// notify mods
server.broadcast({
cmd: 'info',
text: `${socket.nick} banned ${targetNick} in ${socket.channel}, userhash: ${badClient.hash}`,
}, { uType: 'mod' });
}, { level: UAC.isModerator });
// force connection closed
badClient.terminate();

View File

@ -3,6 +3,8 @@
* Author: simple
*/
import * as UAC from "../utility/UAC/info";
// module constructor
export function init(core) {
if (typeof core.muzzledHashes === 'undefined') {
@ -13,7 +15,7 @@ export function init(core) {
// module main
export async function run(core, server, socket, data) {
// increase rate limit chance and ignore if not admin or mod
if (socket.uType === 'user') {
if (!UAC.isModerator(socket.level)) {
return server.police.frisk(socket.address, 10);
}
@ -35,7 +37,7 @@ export async function run(core, server, socket, data) {
[badClient] = badClient;
// likely dont need this, muting mods and admins is fine
if (badClient.uType !== 'user') {
if (badClient.level >= socket.level) {
return server.reply({
cmd: 'warn',
text: 'This trick wont work on mods and admin',
@ -56,7 +58,7 @@ export async function run(core, server, socket, data) {
server.broadcast({
cmd: 'info',
text: `${socket.nick} muzzled ${data.nick} in ${socket.channel}, userhash: ${badClient.hash}`,
}, { uType: 'mod' });
}, { level: UAC.isModerator });
return true;
}

View File

@ -2,10 +2,12 @@
Description: Forces a change on the target(s) socket's channel, then broadcasts event
*/
import * as UAC from "../utility/UAC/info";
// module main
export async function run(core, server, socket, data) {
// increase rate limit chance and ignore if not admin or mod
if (socket.uType === 'user') {
if (!UAC.isModerator(socket.level)) {
return server.police.frisk(socket.address, 10);
}
@ -36,7 +38,7 @@ export async function run(core, server, socket, data) {
// check if found targets are kickable, add them to the list if they are
const kicked = [];
for (let i = 0, j = badClients.length; i < j; i += 1) {
if (badClients[i].uType !== 'user') {
if (badClients[i].level >= socket.level) {
server.reply({
cmd: 'warn',
text: 'Cannot kick other mods, how rude',
@ -68,7 +70,7 @@ export async function run(core, server, socket, data) {
server.broadcast({
cmd: 'info',
text: `${kicked[i].nick} was banished to ?${destChannel}`,
}, { channel: socket.channel, uType: 'mod' });
}, { channel: socket.channel, level: UAC.isModerator });
console.log(`${socket.nick} [${socket.trip}] kicked ${kicked[i].nick} in ${socket.channel} to ${destChannel} `);
}
@ -86,7 +88,7 @@ export async function run(core, server, socket, data) {
server.broadcast({
cmd: 'info',
text: `Kicked ${kicked.map(k => k.nick).join(', ')}`,
}, { channel: socket.channel, uType: 'user' });
}, { channel: socket.channel, level: (level) => level < UAC.levels.moderator });
// stats are fun
core.stats.increment('users-kicked', kicked.length);

View File

@ -2,10 +2,12 @@
Description: Removes the target socket from the current channel and forces a join event in another
*/
import * as UAC from "../utility/UAC/info";
// module main
export async function run(core, server, socket, data) {
// increase rate limit chance and ignore if not admin or mod
if (socket.uType === 'user') {
if (!UAC.isModerator(socket.level)) {
return server.police.frisk(socket.address, 10);
}
@ -30,7 +32,7 @@ export async function run(core, server, socket, data) {
const badClient = badClients[0];
if (badClient.uType !== 'user') {
if (badClient.level >= socket.level) {
return server.reply({
cmd: 'warn',
text: 'Cannot move other mods, how rude',

View File

@ -3,6 +3,8 @@
* Author: simple
*/
import * as UAC from "../utility/UAC/info";
// module constructor
export function init(core) {
if (typeof core.muzzledHashes === 'undefined') {
@ -13,7 +15,7 @@ export function init(core) {
// module main
export async function run(core, server, socket, data) {
// increase rate limit chance and ignore if not admin or mod
if (socket.uType === 'user') {
if (!UAC.isModerator(socket.level)) {
return server.police.frisk(socket.address, 10);
}
@ -39,7 +41,7 @@ export async function run(core, server, socket, data) {
server.broadcast({
cmd: 'info',
text: `${socket.nick} unmuzzled : ${target}`,
}, { uType: 'mod' });
}, { level: UAC.isModerator });
return true;
}

View File

@ -2,10 +2,12 @@
Description: Removes a target ip from the ratelimiter
*/
import * as UAC from "../utility/UAC/info";
// module main
export async function run(core, server, socket, data) {
// increase rate limit chance and ignore if not admin or mod
if (socket.uType === 'user') {
if (!UAC.isModerator(socket.level)) {
return server.police.frisk(socket.address, 10);
}
@ -47,7 +49,7 @@ export async function run(core, server, socket, data) {
server.broadcast({
cmd: 'info',
text: `${socket.nick} unbanned: ${target}`,
}, { uType: 'mod' });
}, { level: UAC.isModerator });
// stats are fun
core.stats.decrement('users-banned');

View File

@ -2,10 +2,12 @@
Description: Clears all bans and ratelimits
*/
import * as UAC from "../utility/UAC/info";
// module main
export async function run(core, server, socket) {
// increase rate limit chance and ignore if not admin or mod
if (socket.uType === 'user') {
if (!UAC.isModerator(socket.level)) {
return server.police.frisk(socket.address, 10);
}
@ -24,7 +26,7 @@ export async function run(core, server, socket) {
server.broadcast({
cmd: 'info',
text: `${socket.nick} unbanned all ip addresses`,
}, { uType: 'mod' });
}, { level: UAC.isModerator });
return true;
}