Haha-Yes/commands/owner/twitter/censor.js

56 lines
1.1 KiB
JavaScript
Raw Normal View History

2019-02-26 00:23:54 +01:00
const { Command } = require('discord-akairo');
const fs = require('fs');
class censorCommand extends Command {
constructor() {
super('censor', {
aliases: ['censor'],
category: 'owner',
ownerOnly: 'true',
args: [
{
id: 'word',
2019-02-26 15:10:34 +01:00
type: 'string',
match: 'rest'
2019-02-26 00:23:54 +01:00
}
],
description: {
content: 'Censor word for twitter',
usage: '[word]',
examples: ['nigger']
}
});
}
async exec(message, args) {
let word = args.word;
let words = [];
let json = JSON.stringify(words);
fs.readFile('./json/twitter/censor.json', 'utf8', function readFileCallback(err, data) {
if (err) {
fs.writeFile('./json/twitter/censor.json', `["${word}"]`, function (err) {
if (err) {
console.log(err);
}
});
} else {
words = JSON.parse(data); //now it an object
words.push(word);
json = JSON.stringify(words); //convert it back to json
fs.writeFile('./json/twitter/censor.json', json, 'utf8', function (err) {
if (err) {
return console.log(err);
}
});
}
});
return message.channel.send(`censored the word ${word}`);
}
}
module.exports = censorCommand;