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

37 lines
815 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
2019-11-07 15:35:23 +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({
2018-03-10 15:47:00 +08:00
cmd: 'warn',
2019-11-07 15:35:23 +08:00
text: 'Failed to save config, check logs.',
}, socket);
2018-03-10 15:47:00 +08:00
}
// return success message to moderators and admins
server.reply({
cmd: 'info',
2019-11-07 15:35:23 +08:00
text: 'Config saved!',
}, { 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
};