1 |
import axios from "axios"; |
2 |
import Command, { CommandMessage, CommandReturn } from "@sudobot/core/Command"; |
3 |
import { logError } from "@sudobot/utils/Logger"; |
4 |
|
5 |
export default class AnimeCommand extends Command { |
6 |
public readonly name = "anime"; |
7 |
public readonly validationRules = []; |
8 |
public readonly permissions = []; |
9 |
|
10 |
public readonly description = "Fetch a random neko, waifu, or kitsune image"; |
11 |
|
12 |
async execute(message: CommandMessage): Promise<CommandReturn> { |
13 |
await this.deferIfInteraction(message); |
14 |
|
15 |
const apis = [ |
16 |
"https://nekos.best/api/v2/neko", |
17 |
"https://nekos.best/api/v2/waifu", |
18 |
"https://nekos.best/api/v2/kitsune" |
19 |
]; |
20 |
|
21 |
const randomApi = apis[Math.floor(Math.random() * apis.length)]; |
22 |
|
23 |
try { |
24 |
const response = await axios.get(randomApi); |
25 |
|
26 |
if (response.status < 200 || response.status >= 300) { |
27 |
throw new Error("Invalid status code"); |
28 |
} |
29 |
|
30 |
await this.deferredReply(message, { |
31 |
files: [ |
32 |
{ |
33 |
attachment: response.data.results[0].url |
34 |
} |
35 |
] |
36 |
}); |
37 |
} catch (e) { |
38 |
logError(e); |
39 |
await this.error(message, "Failed to fetch an image"); |
40 |
} |
41 |
} |
42 |
} |