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

30 lines
672 B
JavaScript
Raw Normal View History

2018-03-10 15:47:00 +08:00
/*
Description: Emmits a server-wide message as `info`
2018-03-10 15:47:00 +08:00
*/
import * as UAC from '../utility/UAC/_info';
// module main
2019-11-07 15:35:23 +08:00
export async function run(core, server, socket, data) {
2018-06-04 15:07:24 +08:00
// increase rate limit chance and ignore if not admin
if (!UAC.isAdmin(socket.level)) {
2019-11-07 15:35:23 +08:00
return server.police.frisk(socket.address, 20);
2018-03-10 15:47:00 +08:00
}
2018-06-04 15:07:24 +08:00
// send text to all channels
server.broadcast({
2018-03-10 15:47:00 +08:00
cmd: 'info',
2019-11-07 15:35:23 +08:00
text: `Server Notice: ${data.text}`,
2018-03-10 15:47:00 +08:00
}, {});
2019-11-07 15:35:23 +08:00
return true;
}
export const requiredData = ['text'];
export const info = {
2018-05-13 18:33:22 +08:00
name: 'shout',
description: 'Displays passed text to every client connected',
usage: `
2019-11-07 15:35:23 +08:00
API: { cmd: 'shout', text: '<shout text>' }`,
2018-06-04 15:07:24 +08:00
};