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 { GuildMember, PermissionsBitField, Role, SlashCommandBuilder, time } from "discord.js"; |
21 |
import path from "path"; |
22 |
import Command, { ArgumentType, BasicCommandContext, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command"; |
23 |
import QueueEntry from "../../utils/QueueEntry"; |
24 |
import { stringToTimeInterval } from "../../utils/datetime"; |
25 |
|
26 |
export default class TempRoleCommand extends Command { |
27 |
public readonly name = "temprole"; |
28 |
public readonly validationRules: ValidationRule[] = [ |
29 |
{ |
30 |
types: [ArgumentType.TimeInterval], |
31 |
name: "duration", |
32 |
errors: { |
33 |
required: "Please provide a duration and a role!", |
34 |
"type:invalid": "You've specified an invalid duration.", |
35 |
}, |
36 |
time: { |
37 |
unit: 'ms' |
38 |
} |
39 |
}, |
40 |
{ |
41 |
types: [ArgumentType.Member], |
42 |
entity: { |
43 |
notNull: true |
44 |
}, |
45 |
name: "member", |
46 |
errors: { |
47 |
"entity:null": "That member does not exist!", |
48 |
required: "Please provide a target member!", |
49 |
"type:invalid": "You've specified an invalid member." |
50 |
} |
51 |
}, |
52 |
{ |
53 |
types: [ArgumentType.Role], |
54 |
entity: { |
55 |
notNull: true |
56 |
}, |
57 |
name: "role", |
58 |
errors: { |
59 |
"entity:null": "That role does not exist!", |
60 |
required: "Please provide a target role!", |
61 |
"type:invalid": "You've specified an invalid role." |
62 |
} |
63 |
}, |
64 |
{ |
65 |
types: [ArgumentType.TimeInterval], |
66 |
name: "offset", |
67 |
errors: { |
68 |
required: "Please provide a valid offset duration!", |
69 |
"type:invalid": "You've specified an invalid offset duration.", |
70 |
}, |
71 |
time: { |
72 |
unit: 'ms' |
73 |
}, |
74 |
optional: true, |
75 |
default: 0 |
76 |
} |
77 |
]; |
78 |
public readonly permissions = [PermissionsBitField.Flags.ManageRoles]; |
79 |
public readonly slashCOmmandBuilder = new SlashCommandBuilder() |
80 |
.addUserOption(option => option.setName("member").setDescription("The target member").setRequired(true)) |
81 |
.addRoleOption(option => option.setName("role").setDescription("The target role to give").setRequired(true)) |
82 |
.addStringOption(option => |
83 |
option.setName("duration").setDescription("The duration after the system should revoke the role").setRequired(true) |
84 |
) |
85 |
.addStringOption(option => |
86 |
option.setName("start_after").setDescription("The offset duration after the system should assign the role") |
87 |
); |
88 |
public readonly description = "Temporarily give a role to a member"; |
89 |
public readonly since = "6.25.2"; |
90 |
|
91 |
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
92 |
await this.deferIfInteraction(message); |
93 |
const member: GuildMember = context.isLegacy ? context.parsedNamedArgs.member : context.options.getMember("member"); |
94 |
|
95 |
if (!member) { |
96 |
await this.error(message, "Invalid member specified!"); |
97 |
return; |
98 |
} |
99 |
|
100 |
const role: Role = context.isLegacy ? context.parsedNamedArgs.role : context.options.getRole("role", true); |
101 |
const duration: number = context.isLegacy |
102 |
? context.parsedNamedArgs.duration ?? 0 |
103 |
: stringToTimeInterval(context.options.getString("duration", true), { |
104 |
milliseconds: true |
105 |
}); |
106 |
const offset: number = context.isLegacy |
107 |
? context.parsedNamedArgs.offset ?? 0 |
108 |
: stringToTimeInterval(context.options.getString("start_after") ?? "0s", { |
109 |
milliseconds: true |
110 |
}); |
111 |
const totalDuration = offset + duration; |
112 |
|
113 |
if (offset === 0) { |
114 |
await member.roles.add(role, "Adding role to member as the I was commanded to do so"); |
115 |
} else { |
116 |
await this.client.queueManager.add( |
117 |
new QueueEntry({ |
118 |
args: [message.member!.user.id, role.id], |
119 |
client: this.client, |
120 |
createdAt: new Date(), |
121 |
filePath: path.resolve(__dirname, "../../queues/TempRoleAddQueue"), |
122 |
guild: message.guild!, |
123 |
name: "TempRoleAddQueue", |
124 |
userId: message.member!.user.id, |
125 |
willRunAt: new Date(Date.now() + offset) |
126 |
}) |
127 |
); |
128 |
} |
129 |
|
130 |
await this.client.queueManager.add( |
131 |
new QueueEntry({ |
132 |
args: [message.member!.user.id, role.id], |
133 |
client: this.client, |
134 |
createdAt: new Date(), |
135 |
filePath: path.resolve(__dirname, "../../queues/TempRoleRemoveQueue"), |
136 |
guild: message.guild!, |
137 |
name: "TempRoleRemoveQueue", |
138 |
userId: message.member!.user.id, |
139 |
willRunAt: new Date(Date.now() + totalDuration) |
140 |
}) |
141 |
); |
142 |
|
143 |
await this.success( |
144 |
message, |
145 |
`Successfully ${ |
146 |
offset === 0 ? "added the given role to the member" : " queued a job to add the role to the member" |
147 |
}. I'll take away the role ${time(new Date(Date.now() + totalDuration), "R")}.` |
148 |
); |
149 |
} |
150 |
} |