1 |
rakinar2 |
577 |
/** |
2 |
|
|
* This file is part of SudoBot. |
3 |
|
|
* |
4 |
|
|
* Copyright (C) 2021-2022 OSN Inc. |
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 { CommandInteraction, Message, MessageEmbed } from 'discord.js'; |
21 |
|
|
import BaseCommand from '../../utils/structures/BaseCommand'; |
22 |
|
|
import DiscordClient from '../../client/Client'; |
23 |
|
|
import CommandOptions from '../../types/CommandOptions'; |
24 |
|
|
import InteractionOptions from '../../types/InteractionOptions'; |
25 |
|
|
import axios from 'axios'; |
26 |
|
|
import path from 'path'; |
27 |
|
|
import { deleteFile, download } from '../../utils/util'; |
28 |
|
|
|
29 |
|
|
export default class DogCommand extends BaseCommand { |
30 |
|
|
supportsInteractions: boolean = true; |
31 |
|
|
|
32 |
|
|
constructor() { |
33 |
|
|
super('dog', 'fun', []); |
34 |
|
|
} |
35 |
|
|
|
36 |
|
|
async run(client: DiscordClient, msg: Message | CommandInteraction, options: CommandOptions | InteractionOptions) { |
37 |
|
|
if (msg instanceof CommandInteraction) |
38 |
|
|
await msg.deferReply(); |
39 |
|
|
|
40 |
|
|
axios.get("https://api.thedogapi.com/v1/images/search", { |
41 |
|
|
headers: { |
42 |
|
|
"x-api-key": process.env.DOG_API_TOKEN! |
43 |
|
|
} |
44 |
|
|
}) |
45 |
|
|
.then(res => { |
46 |
|
|
if (res && res.status === 200) { |
47 |
|
|
let name = res.data[0].url; |
48 |
|
|
const pos = name.indexOf('?'); |
49 |
|
|
|
50 |
|
|
if (pos !== -1) { |
51 |
|
|
name = name.substring(0, pos); |
52 |
|
|
} |
53 |
|
|
|
54 |
|
|
name = name.split(/\/+/); |
55 |
|
|
name = name[name.length - 1]; |
56 |
|
|
|
57 |
|
|
console.log(name); |
58 |
|
|
let filename = path.join(process.env.SUDO_PREFIX ?? path.join(__dirname, '../../..'), 'tmp', name); |
59 |
|
|
|
60 |
|
|
if (filename.endsWith('.false')) { |
61 |
|
|
filename = filename.replace(/\.false$/, '.png'); |
62 |
|
|
} |
63 |
|
|
|
64 |
|
|
download(res.data[0].url, filename) |
65 |
|
|
.then(async () => { |
66 |
|
|
if (msg instanceof CommandInteraction) { |
67 |
|
|
await msg.editReply({ |
68 |
|
|
files: [ |
69 |
|
|
{ |
70 |
|
|
attachment: filename, |
71 |
|
|
name |
72 |
|
|
} |
73 |
|
|
] |
74 |
|
|
}); |
75 |
|
|
} |
76 |
|
|
else { |
77 |
|
|
await msg.reply({ |
78 |
|
|
files: [ |
79 |
|
|
{ |
80 |
|
|
attachment: filename, |
81 |
|
|
name |
82 |
|
|
} |
83 |
|
|
] |
84 |
|
|
}); |
85 |
|
|
} |
86 |
|
|
|
87 |
|
|
await deleteFile(filename); |
88 |
|
|
}) |
89 |
|
|
.catch(err => { |
90 |
|
|
console.log("DL error: " + err.message); |
91 |
|
|
|
92 |
|
|
deleteFile(filename); |
93 |
|
|
|
94 |
|
|
if (msg instanceof CommandInteraction) |
95 |
|
|
msg.editReply({ |
96 |
|
|
embeds: [ |
97 |
|
|
new MessageEmbed() |
98 |
|
|
.setColor('#f14a60') |
99 |
|
|
.setDescription('Internal API error occured (download-time error), please try again.') |
100 |
|
|
] |
101 |
|
|
}); |
102 |
|
|
else |
103 |
|
|
msg.reply({ |
104 |
|
|
embeds: [ |
105 |
|
|
new MessageEmbed() |
106 |
|
|
.setColor('#f14a60') |
107 |
|
|
.setDescription('Internal API error occured (download-time error), please try again.') |
108 |
|
|
] |
109 |
|
|
}); |
110 |
|
|
}); |
111 |
|
|
} |
112 |
|
|
else if (res?.status === 429) { |
113 |
|
|
if (msg instanceof CommandInteraction) |
114 |
|
|
msg.editReply({ |
115 |
|
|
embeds: [ |
116 |
|
|
new MessageEmbed() |
117 |
|
|
.setColor('#f14a60') |
118 |
|
|
.setDescription('Too many requests at the same time, please try again after some time.') |
119 |
|
|
] |
120 |
|
|
}); |
121 |
|
|
else |
122 |
|
|
msg.reply({ |
123 |
|
|
embeds: [ |
124 |
|
|
new MessageEmbed() |
125 |
|
|
.setColor('#f14a60') |
126 |
|
|
.setDescription('Too many requests at the same time, please try again after some time.') |
127 |
|
|
] |
128 |
|
|
}); |
129 |
|
|
} |
130 |
|
|
else { |
131 |
|
|
if (msg instanceof CommandInteraction) |
132 |
|
|
msg.editReply({ |
133 |
|
|
embeds: [ |
134 |
|
|
new MessageEmbed() |
135 |
|
|
.setColor('#f14a60') |
136 |
|
|
.setDescription('Internal API error occured (pre-download time error), please try again.') |
137 |
|
|
] |
138 |
|
|
}); |
139 |
|
|
else |
140 |
|
|
msg.reply({ |
141 |
|
|
embeds: [ |
142 |
|
|
new MessageEmbed() |
143 |
|
|
.setColor('#f14a60') |
144 |
|
|
.setDescription('Internal API error occured (pre-download time error), please try again.') |
145 |
|
|
] |
146 |
|
|
}); |
147 |
|
|
} |
148 |
|
|
}) |
149 |
|
|
.catch(err => { |
150 |
|
|
if (msg instanceof CommandInteraction) |
151 |
|
|
msg.editReply({ |
152 |
|
|
embeds: [ |
153 |
|
|
new MessageEmbed() |
154 |
|
|
.setColor('#f14a60') |
155 |
|
|
.setDescription('Too many requests at the same time, please try again after some time.') |
156 |
|
|
] |
157 |
|
|
}); |
158 |
|
|
else |
159 |
|
|
msg.reply({ |
160 |
|
|
embeds: [ |
161 |
|
|
new MessageEmbed() |
162 |
|
|
.setColor('#f14a60') |
163 |
|
|
.setDescription('Too many requests at the same time, please try again after some time.') |
164 |
|
|
] |
165 |
|
|
}); |
166 |
|
|
}); |
167 |
|
|
} |
168 |
|
|
} |