mirror of
https://github.com/citra-emu/discord-bot.git
synced 2024-12-23 04:05:37 +00:00
52 lines
1.6 KiB
TypeScript
52 lines
1.6 KiB
TypeScript
import * as fs from 'fs';
|
|
import state from './state';
|
|
import logger from './logging';
|
|
|
|
export function readWarnings () {
|
|
// Load the warnings file into the application state.
|
|
const readFilePath = '/data/discordWarnings.json';
|
|
fs.readFile(readFilePath, 'utf8', function (err, data) {
|
|
if (err) { throw err; }
|
|
if (data) {
|
|
state.warnings = JSON.parse(data);
|
|
logger.debug('Loaded warnings file.');
|
|
} else {
|
|
logger.warn(`${readFilePath} appears to be an empty file.`);
|
|
}
|
|
});
|
|
}
|
|
|
|
export function readBans () {
|
|
// Load the ban file into the application state.
|
|
const readFilePath = '/data/discordBans.json';
|
|
fs.readFile(readFilePath, 'utf8', function (err, data) {
|
|
if (err) { throw err; }
|
|
if (data) {
|
|
state.bans = JSON.parse(data);
|
|
logger.debug('Loaded bans file.');
|
|
} else {
|
|
logger.warn(`${readFilePath} appears to be an empty file.`);
|
|
}
|
|
});
|
|
}
|
|
|
|
export function readCustomResponses () {
|
|
// Load the responses file into the responses variable.
|
|
state.responses = require(`./responses/${process.env.TENANT}.json`);
|
|
logger.debug(`Loaded responses file for ${process.env.TENANT} from external source.`);
|
|
}
|
|
|
|
export function flushWarnings () {
|
|
const warningsJson = JSON.stringify(state.warnings, null, 4);
|
|
fs.writeFile('/data/discordWarnings.json', warningsJson, 'utf8', function (err) {
|
|
if (err) { throw err; }
|
|
});
|
|
}
|
|
|
|
export function flushBans () {
|
|
const bansJson = JSON.stringify(state.bans, null, 4);
|
|
fs.writeFile('/data/discordBans.json', bansJson, 'utf8', function (err) {
|
|
if (err) { throw err; }
|
|
});
|
|
}
|