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