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

Contents of /branches/9.x-dev/extensions/neko/src/commands/AnimeCommand.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: 1336 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
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 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26