1 |
rakinar2 |
577 |
/** |
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 { PermissionsBitField } from "discord.js"; |
21 |
|
|
import Command, { BasicCommandContext, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command"; |
22 |
|
|
|
23 |
|
|
export default class QueueCancelCommand extends Command { |
24 |
|
|
public readonly name = "queue__cancel"; |
25 |
|
|
public readonly validationRules: ValidationRule[] = []; |
26 |
|
|
public readonly aliases = ["queue__remove", "queuecancel", "cancelqueue", "rmqueue", "delqueue", "removequeue", "queuedel"]; |
27 |
|
|
public readonly permissions = [PermissionsBitField.Flags.ManageMessages]; |
28 |
|
|
public readonly description = "Cancels a command queue"; |
29 |
|
|
public readonly since = "5.57.0"; |
30 |
|
|
|
31 |
|
|
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
32 |
|
|
if (context.isLegacy && !context.args[0]) { |
33 |
|
|
await this.error(message, "Please provide the ID of the queue to remove!"); |
34 |
|
|
return; |
35 |
|
|
} |
36 |
|
|
|
37 |
|
|
const id = context.isLegacy ? parseInt(context.args[0] ?? "") : context.options.getInteger("id", true); |
38 |
|
|
|
39 |
|
|
if (isNaN(id)) { |
40 |
|
|
await this.error(message, "Please provide a valid queue ID!"); |
41 |
|
|
return; |
42 |
|
|
} |
43 |
|
|
|
44 |
|
|
const queue = this.client.queueManager.queues.get(id.toString()); |
45 |
|
|
|
46 |
|
|
if (!queue || queue.options.guild.id !== message.guildId!) { |
47 |
|
|
await this.error(message, "Could not find a queue with that ID!"); |
48 |
|
|
return; |
49 |
|
|
} |
50 |
|
|
|
51 |
|
|
await this.client.queueManager.removeById(id); |
52 |
|
|
await this.success(message, `Successfully removed queue with ID \`${id}\`.`); |
53 |
|
|
} |
54 |
|
|
} |