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