1 |
/** |
2 |
* This file is part of SudoBot. |
3 |
* |
4 |
* Copyright (C) 2021-2023 OSN Developers. |
5 |
* |
6 |
* SudoBot is free software; you can redistribute it and/or modify it |
7 |
* under the terms of the GNU Affero General Public License as published by |
8 |
* the Free Software Foundation, either version 3 of the License, or |
9 |
* (at your option) any later version. |
10 |
* |
11 |
* SudoBot is distributed in the hope that it will be useful, but |
12 |
* WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
* GNU Affero General Public License for more details. |
15 |
* |
16 |
* You should have received a copy of the GNU Affero General Public License |
17 |
* along with SudoBot. If not, see <https://www.gnu.org/licenses/>. |
18 |
*/ |
19 |
|
20 |
import axios from "axios"; |
21 |
import { EmbedBuilder } from "discord.js"; |
22 |
import Command, { AnyCommandContext, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command"; |
23 |
import { log, logError } from "../../utils/logger"; |
24 |
|
25 |
export default class JokeCommand extends Command { |
26 |
public readonly name = "joke"; |
27 |
public readonly validationRules: ValidationRule[] = []; |
28 |
public readonly permissions = []; |
29 |
public readonly url = "https://v2.jokeapi.dev/joke/Any?blacklistFlags=nsfw,religious,political,racist"; |
30 |
|
31 |
public readonly description = "Tells you a random joke."; |
32 |
|
33 |
async execute(message: CommandMessage, context: AnyCommandContext): Promise<CommandReturn> { |
34 |
await this.deferIfInteraction(message); |
35 |
|
36 |
try { |
37 |
const response = await axios.get(this.url, { |
38 |
headers: { |
39 |
Accept: "application/json" |
40 |
} |
41 |
}); |
42 |
|
43 |
log(response.data); |
44 |
|
45 |
await this.deferredReply(message, { |
46 |
embeds: [ |
47 |
new EmbedBuilder() |
48 |
.setColor("#007bff") |
49 |
.setTitle("Joke") |
50 |
.setDescription( |
51 |
response.data.type === "twopart" |
52 |
? response.data.setup + "\n\n" + response.data.delivery |
53 |
: response.data.joke |
54 |
) |
55 |
.addFields({ |
56 |
name: "Category", |
57 |
value: response.data.category |
58 |
}) |
59 |
.setFooter({ |
60 |
text: `ID: ${response.data.id}` |
61 |
}) |
62 |
] |
63 |
}); |
64 |
} catch (e) { |
65 |
logError(e); |
66 |
|
67 |
await this.deferredReply(message, { |
68 |
content: "Something went wrong with the API response. Please try again later." |
69 |
}); |
70 |
} |
71 |
} |
72 |
} |