/[sudobot]/branches/8.x/src/commands/automation/TempRoleCommand.ts
ViewVC logotype

Annotation of /branches/8.x/src/commands/automation/TempRoleCommand.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (hide annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 7088 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
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 { 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    
102     let duration: number | ReturnType<typeof stringToTimeInterval> = context.isLegacy
103     ? context.parsedNamedArgs.duration ?? 0
104     : stringToTimeInterval(context.options.getString("duration", true), {
105     milliseconds: true
106     });
107    
108     let offset: number | ReturnType<typeof stringToTimeInterval> = context.isLegacy
109     ? context.parsedNamedArgs.offset ?? 0
110     : stringToTimeInterval(context.options.getString("start_after") ?? "0s", {
111     milliseconds: true
112     });
113    
114     if (typeof duration === "object") {
115     if (duration.error) {
116     await this.error(message, `Invalid duration specified!\nDescription: ${duration.error}`);
117     return;
118     }
119    
120     duration = duration.result;
121     }
122    
123     if (typeof offset === "object") {
124     if (offset.error) {
125     await this.error(message, `Invalid time offset specified!\nDescription: ${offset.error}`);
126     return;
127     }
128    
129     offset = offset.result;
130     }
131    
132     if ((duration as number) < 0) {
133     await this.error(message, "Duration cannot be negative!");
134     return;
135     }
136    
137     if ((offset as number) < 0) {
138     await this.error(message, "Offset cannot be negative!");
139     return;
140     }
141    
142     const totalDuration = (offset as number) + (duration as number);
143    
144     if (offset === 0) {
145     await member.roles.add(role, "Adding role to member as the I was commanded to do so");
146     } else {
147     await this.client.queueManager.add(
148     new QueueEntry({
149     args: [message.member!.user.id, role.id],
150     client: this.client,
151     createdAt: new Date(),
152     filePath: path.resolve(__dirname, "../../queues/TempRoleAddQueue"),
153     guild: message.guild!,
154     name: "TempRoleAddQueue",
155     userId: message.member!.user.id,
156     willRunAt: new Date((Date.now() + offset) as number)
157     })
158     );
159     }
160    
161     await this.client.queueManager.add(
162     new QueueEntry({
163     args: [message.member!.user.id, role.id],
164     client: this.client,
165     createdAt: new Date(),
166     filePath: path.resolve(__dirname, "../../queues/TempRoleRemoveQueue"),
167     guild: message.guild!,
168     name: "TempRoleRemoveQueue",
169     userId: message.member!.user.id,
170     willRunAt: new Date(Date.now() + totalDuration)
171     })
172     );
173    
174     await this.success(
175     message,
176     `Successfully ${
177     offset === 0 ? "added the given role to the member" : "queued a job to add the role to the member"
178     }. I'll take away the role ${time(new Date(Date.now() + totalDuration), "R")}.`
179     );
180     }
181     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26