mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 15:56:52 +02:00
47 lines
1.4 KiB
JavaScript
47 lines
1.4 KiB
JavaScript
const Command = require('../../structures/Command');
|
|
const request = require('node-superfetch');
|
|
const { stripIndents } = require('common-tags');
|
|
const { FAILURE_EMOJI_ID, FAILURE_EMOJI_NAME, SUCCESS_EMOJI_ID, SUCCESS_EMOJI_NAME } = process.env;
|
|
|
|
module.exports = class SpoopyLinkCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'spoopy-link',
|
|
group: 'analyze',
|
|
memberName: 'spoopy-link',
|
|
description: 'Determines if a link is spoopy or not.',
|
|
args: [
|
|
{
|
|
key: 'site',
|
|
prompt: 'What site do you think is spoopy?',
|
|
type: 'string',
|
|
parse: site => encodeURIComponent(site)
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
async run(msg, { site }) {
|
|
try {
|
|
const { body } = await request.get(`https://spoopy.link/api/${site}`);
|
|
const chain = body.chain.map(
|
|
url => `<${url.url}> ${url.safe ? this.successEmoji : `${this.failureEmoji} (${url.reasons.join(', ')})`}`
|
|
);
|
|
return msg.say(stripIndents`
|
|
${body.safe ? 'Safe!' : 'Not safe...'}
|
|
${chain.join('\n')}
|
|
`);
|
|
} catch (err) {
|
|
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
|
|
}
|
|
}
|
|
|
|
get successEmoji() {
|
|
return SUCCESS_EMOJI_ID && SUCCESS_EMOJI_NAME ? `<:${SUCCESS_EMOJI_NAME}:${SUCCESS_EMOJI_ID}>` : '✅';
|
|
}
|
|
|
|
get failureEmoji() {
|
|
return FAILURE_EMOJI_ID && FAILURE_EMOJI_NAME ? `<:${FAILURE_EMOJI_NAME}:${FAILURE_EMOJI_ID}>` : '❌';
|
|
}
|
|
};
|