Haha-Yes/commands/admin/shameboard.js

46 lines
1.2 KiB
JavaScript
Raw Normal View History

const { Command } = require('discord-akairo');
const fs = require('fs');
2019-01-01 09:42:54 +01:00
class shameboardCommand extends Command {
2019-01-02 08:09:45 +01:00
constructor() {
super('shameboard', {
aliases: ['shameboard'],
category: 'admin',
channelRestriction: 'guild',
2019-01-12 17:00:36 +01:00
userPermissions: ['MANAGE_CHANNELS'],
2019-01-02 08:09:45 +01:00
description: {
content: 'Set shameboard',
usage: '[]',
examples: ['']
}
});
}
2019-01-02 08:09:45 +01:00
async exec(message) {
let shameboardChannel = message.channel.id;
2019-01-11 12:47:04 +01:00
fs.readFile(`./board/shame${message.guild.id}.json`, 'utf8', function readFileCallback(err, data) {
2019-01-02 08:09:45 +01:00
if (err) {
2019-01-11 12:47:04 +01:00
fs.writeFile(`./board/shame${message.guild.id}.json`, `{"shameboard": "${shameboardChannel}"}`, function (err) {
2019-01-02 08:09:45 +01:00
if (err) {
console.log(err);
}
});
} else {
let shameboard = JSON.parse(data); //now it an object
shameboard['shameboard'] = shameboardChannel;
var json = JSON.stringify(shameboard); //convert it back to json
2019-01-11 12:47:04 +01:00
fs.writeFile(`./board/shame${message.guild.id}.json`, json, 'utf8', function (err) {
2019-01-02 08:09:45 +01:00
if (err) {
2019-01-02 10:48:26 +01:00
2019-01-02 08:09:45 +01:00
return console.log(err);
}
});
}
});
2019-01-02 10:48:26 +01:00
2019-01-02 08:09:45 +01:00
return message.channel.send('This channel have been set as the shameboard');
}
}
2019-01-01 09:42:54 +01:00
module.exports = shameboardCommand;