mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 15:56:52 +02:00
43 lines
1.0 KiB
JavaScript
43 lines
1.0 KiB
JavaScript
const { Command } = require('discord.js-commando');
|
|
const snekfetch = require('snekfetch');
|
|
const { CLEVERBOT_KEY } = process.env;
|
|
|
|
module.exports = class CleverbotCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'cleverbot',
|
|
aliases: ['clevs'],
|
|
group: 'other',
|
|
memberName: 'cleverbot',
|
|
description: 'Chat with Cleverbot.',
|
|
details: 'Only the bot owner(s) may use this command.',
|
|
ownerOnly: true,
|
|
args: [
|
|
{
|
|
key: 'message',
|
|
prompt: 'What do you want to say to Cleverbot?',
|
|
type: 'string'
|
|
}
|
|
]
|
|
});
|
|
|
|
this.convos = new Map();
|
|
}
|
|
|
|
async run(msg, { message }) {
|
|
try {
|
|
const { body } = await snekfetch
|
|
.get('https://www.cleverbot.com/getreply')
|
|
.query({
|
|
key: CLEVERBOT_KEY,
|
|
cs: this.convos.get(msg.channel.id),
|
|
input: message
|
|
});
|
|
this.convos.set(msg.channel.id, body.cs);
|
|
return msg.reply(body.output);
|
|
} catch (err) {
|
|
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
|
|
}
|
|
}
|
|
};
|