/[sudobot]/branches/9.x-dev/extensions/neko/src/commands/NekoCommand.ts
ViewVC logotype

Contents of /branches/9.x-dev/extensions/neko/src/commands/NekoCommand.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (show annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 1097 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
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 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26