1 |
/** |
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 { Message, PermissionResolvable, Permissions } from 'discord.js'; |
21 |
import BaseCommand from '../../utils/structures/BaseCommand'; |
22 |
import DiscordClient from '../../client/Client'; |
23 |
import CommandOptions from '../../types/CommandOptions'; |
24 |
import MessageEmbed from '../../client/MessageEmbed'; |
25 |
import ms from 'ms'; |
26 |
import { timeSince } from '../../utils/util'; |
27 |
import CustomQueue from '../../queues/CustomQueue'; |
28 |
import { PermissionFlagsBits } from 'discord-api-types/v10'; |
29 |
|
30 |
export default class AddQueueCommand extends BaseCommand { |
31 |
permissions = [Permissions.FLAGS.MANAGE_MESSAGES]; |
32 |
|
33 |
constructor() { |
34 |
super('addqueue', 'automation', []); |
35 |
} |
36 |
|
37 |
async run(client: DiscordClient, msg: Message, options: CommandOptions) { |
38 |
if (options.args[1] === undefined) { |
39 |
await msg.reply({ |
40 |
embeds: [ |
41 |
new MessageEmbed() |
42 |
.setColor('#f14a60') |
43 |
.setDescription(`This command requires at least two arguments.`) |
44 |
] |
45 |
}); |
46 |
|
47 |
return; |
48 |
} |
49 |
|
50 |
const time = await ms(options.args[0]); |
51 |
let cmd: string[]; |
52 |
|
53 |
if (!time) { |
54 |
await msg.reply({ |
55 |
embeds: [ |
56 |
new MessageEmbed() |
57 |
.setColor('#f14a60') |
58 |
.setDescription(`Invalid time interval given.`) |
59 |
] |
60 |
}); |
61 |
|
62 |
return; |
63 |
} |
64 |
|
65 |
cmd = [...options.args]; |
66 |
cmd.shift(); |
67 |
|
68 |
const cmdObj = client.commands.get(cmd[0]); |
69 |
|
70 |
if (!cmdObj) { |
71 |
await msg.reply({ |
72 |
embeds: [ |
73 |
new MessageEmbed() |
74 |
.setColor('#f14a60') |
75 |
.setDescription(`Invalid command given.`) |
76 |
] |
77 |
}); |
78 |
|
79 |
return; |
80 |
} |
81 |
|
82 |
if (!cmdObj.supportsLegacy) { |
83 |
await msg.reply({ |
84 |
embeds: [ |
85 |
new MessageEmbed() |
86 |
.setColor('#f14a60') |
87 |
.setDescription(`This command conflicts with queued jobs. (Non-legacy handler)`) |
88 |
] |
89 |
}); |
90 |
|
91 |
return; |
92 |
} |
93 |
|
94 |
const allowed = await client.auth.verify(msg.member!, cmdObj); |
95 |
|
96 |
if (!allowed) { |
97 |
await msg.reply({ |
98 |
embeds: [ |
99 |
new MessageEmbed() |
100 |
.setColor('#f14a60') |
101 |
.setDescription(`Operation not permitted. You don't have enough permissions to run this command.`) |
102 |
] |
103 |
}); |
104 |
|
105 |
return; |
106 |
} |
107 |
|
108 |
// const command = await cmd.join(' '); |
109 |
|
110 |
// const queue = await setTimeoutv2('queue', time, msg.guild!.id, command, command, msg.id, msg.channel!.id, msg.guild!.id); |
111 |
|
112 |
const queue = await client.queueManager.addQueue(CustomQueue, { |
113 |
data: { |
114 |
channelID: msg.channel.id, |
115 |
guildID: msg.guild!.id, |
116 |
messageID: msg.id, |
117 |
cmd, |
118 |
}, |
119 |
runAt: new Date(Date.now() + time), |
120 |
guild: msg.guild!.id |
121 |
}); |
122 |
|
123 |
await msg.reply({ |
124 |
embeds: [ |
125 |
new MessageEmbed() |
126 |
.setColor('#007bff') |
127 |
.setDescription(`The queue has been added. Don't delete the command message - it will be used by the queue later.`) |
128 |
.setFields([ |
129 |
{ |
130 |
name: "ID", |
131 |
value: queue.id + '', |
132 |
}, |
133 |
{ |
134 |
name: "Command", |
135 |
value: `\`${cmd.join(' ')}\`` |
136 |
}, |
137 |
{ |
138 |
name: "Time", |
139 |
value: "After " + timeSince(Date.now() - time).replace(' ago', '') |
140 |
} |
141 |
]) |
142 |
] |
143 |
}); |
144 |
} |
145 |
} |