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/saveconfig.js

39 lines
958 B
JavaScript
Raw Normal View History

2018-03-10 15:47:00 +08:00
/*
2018-06-04 15:07:24 +08:00
Description: Writes the current config to disk
2018-03-10 15:47:00 +08:00
*/
import * as UAC from '../utility/UAC/_info';
// module main
2020-09-17 13:44:32 +08:00
export async function run({ core, server, socket }) {
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
// attempt save, notify of failure
2019-03-19 14:36:21 +08:00
if (!core.configManager.save()) {
return server.reply({
cmd: 'warn', // @todo Add numeric error code as `id`
2019-11-07 15:35:23 +08:00
text: 'Failed to save config, check logs.',
2020-10-10 13:34:59 +08:00
channel: socket.channel, // @todo Multichannel
2019-11-07 15:35:23 +08:00
}, socket);
2018-03-10 15:47:00 +08:00
}
// return success message to moderators and admins
2020-03-13 02:28:20 +08:00
server.broadcast({
cmd: 'info',
2019-11-07 15:35:23 +08:00
text: 'Config saved!',
2020-10-10 13:34:59 +08:00
channel: false, // @todo Multichannel
}, { level: UAC.isModerator });
2018-03-10 15:47:00 +08:00
2019-11-07 15:35:23 +08:00
return true;
}
export const info = {
2018-05-13 18:33:22 +08:00
name: 'saveconfig',
description: 'Writes the current config to disk',
usage: `
2019-11-07 15:35:23 +08:00
API: { cmd: 'saveconfig' }`,
2018-05-13 18:33:22 +08:00
};