-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdatadrop.ts
More file actions
426 lines (403 loc) · 15.8 KB
/
datadrop.ts
File metadata and controls
426 lines (403 loc) · 15.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
import * as path from "node:path";
import {
ConsoleLogger,
type DefaultLogger,
LogEventLevel,
} from "@hunteroi/advanced-logger";
import {
InteractionsSelfRoleManager,
type RoleToEmojiData,
SelfRoleManagerEvents,
} from "@hunteroi/discord-selfrole";
import {
type ChildChannelData,
type ParentChannelData,
TempChannelsManager,
TempChannelsManagerEvents,
} from "@hunteroi/discord-temp-channels";
import {
VerificationManager,
VerificationManagerEvents,
} from "@hunteroi/discord-verification";
import {
type ButtonInteraction,
Client,
type ClientEvents,
type ClientOptions,
Collection,
type GuildMember,
type GuildTextBasedChannel,
type Message,
type Role,
type Snowflake,
type StringSelectMenuInteraction,
type VoiceChannel,
} from "discord.js";
import { readConfig } from "./config.js";
import { getErrorMessage, readFilesFrom } from "./helpers.js";
import type {
Command,
Configuration,
Event,
IDatabaseService,
User,
} from "./models/index.js";
import { PostgresDatabaseService, SMTPService } from "./services/index.js";
export class DatadropClient extends Client {
#config: Configuration;
readonly database: IDatabaseService;
readonly logger: DefaultLogger;
readonly commands: Collection<string, Command>;
readonly selfRoleManager: InteractionsSelfRoleManager;
readonly tempChannelsManager: TempChannelsManager;
readonly verificationManager: VerificationManager<User>;
public readonly errorMessage = "Je n'ai pas su t'envoyer le code!";
public readonly activeAccountMessage = "ton compte est déjà vérifié!";
constructor(options: ClientOptions, config: Configuration) {
super(options);
this.#config = config;
this.logger = new ConsoleLogger({
minLevel: LogEventLevel[config.minLevel.toLowerCase()],
includeTimestamp: config.includeTimestamp,
});
this.commands = new Collection();
this.selfRoleManager = new InteractionsSelfRoleManager(this, {
channelsMessagesFetchLimit: 10,
deleteAfterUnregistration: false,
});
this.tempChannelsManager = new TempChannelsManager(this);
this.database = new PostgresDatabaseService(this.logger);
const communicationService = new SMTPService(
config.communicationServiceOptions,
);
this.verificationManager = new VerificationManager(
this,
this.database,
communicationService,
{
codeGenerationOptions: { length: 6 },
maxNbCodeCalledBeforeResend: 3,
errorMessage: () => this.errorMessage,
pendingMessage: (user: User) =>
`Ton code de vérification vient de t'être envoyé, ${user.username}`,
alreadyPendingMessage: (user: User) =>
`${user.username}, tu as déjà un code en attente!`,
alreadyActiveMessage: (user: User) =>
`${user.username}, ${this.activeAccountMessage}`,
validCodeMessage: (user: User, code: string) =>
`Le code ${code} est valide. Bienvenue ${user.username}!`,
invalidCodeMessage: (_, code: string) =>
`Le code ${code} est invalide!`,
},
);
}
get config(): Configuration {
return this.#config;
}
async reloadConfig(): Promise<void> {
this.#config = await readConfig();
}
#listenToVerificationEvents(): void {
this.verificationManager.on(
VerificationManagerEvents.codeVerify,
async (
user: User,
userid: Snowflake,
code: string,
isVerified: boolean,
) => {
this.logger.info(
`L'utilisateur ${user.username} (${userid}) ${isVerified ? "a été vérifié avec succès" : "a échoué sa vérification"} avec le code ${code}.`,
);
if (isVerified) {
const guild = await this.guilds.fetch(this.#config.guildId);
const member = await guild.members.fetch(userid);
await member.roles.add(
this.#config.verifiedRoleId,
`Compte Hénallux vérifié! ${user.data.email}`,
);
}
},
);
this.verificationManager.on(
VerificationManagerEvents.codeCreate,
(code: string) =>
this.logger.debug(`Le code ${code} vient d'être créé.`),
);
this.verificationManager.on(
VerificationManagerEvents.userCreate,
(user: User) =>
this.logger.debug(
`L'utilisateur ${user.username} (${user.userid}) vient d'être enregistré.`,
),
);
this.verificationManager.on(
VerificationManagerEvents.userAwait,
(user: User) =>
this.logger.debug(
`L'utilisateur ${user.username} (${user.userid}) attend d'être vérifié.`,
),
);
this.verificationManager.on(
VerificationManagerEvents.userActive,
(user: User) =>
this.logger.debug(
`L'utilisateur ${user.username} (${user.userid}) est déjà actif!`,
),
);
this.verificationManager.on(
VerificationManagerEvents.error,
(user: User, error: unknown) =>
this.logger.error(
`Une erreur est survenue lors de l'envoi du code à l'utilisateur ${user.username} (${user.userid}).\nErreur: ${getErrorMessage(error)}`,
),
);
}
#listenToTempChannelsEvents(): void {
this.tempChannelsManager.on(
TempChannelsManagerEvents.channelRegister,
async (parent: ParentChannelData) => {
const parentChannel = (await this.channels.fetch(
parent.channelId,
)) as VoiceChannel;
this.logger.info(
`Canal ${parentChannel.name} enregistré comme générateur de canaux temporaires!`,
);
},
);
this.tempChannelsManager.on(
TempChannelsManagerEvents.channelUnregister,
async (parent: ParentChannelData) => {
const parentChannel = (await this.channels.fetch(
parent.channelId,
)) as VoiceChannel;
this.logger.info(
`Canal ${parentChannel.name} désenregistré comme générateur de canaux temporaires!`,
);
},
);
this.tempChannelsManager.on(
TempChannelsManagerEvents.childAdd,
(child: ChildChannelData) =>
this.logger.info(
`Le membre <${child.owner.displayName}> (${child.owner.id}) a lancé la création d'un canal vocal dynamique`,
),
);
this.tempChannelsManager.on(
TempChannelsManagerEvents.childRemove,
(child: ChildChannelData) =>
this.logger.info(
`Plus aucun utilisateur dans <${child.voiceChannel.name}> (${child.voiceChannel.id}). Canal supprimé.`,
),
);
this.tempChannelsManager.on(
TempChannelsManagerEvents.error,
(error: unknown, message: string) =>
this.logger.error(
`Une erreur est survenie lors de la gestion des canaux dynamiques.\nErreur: ${message}\n${getErrorMessage(error)}`,
),
);
}
#listenToSelfRoleEvents(): void {
this.selfRoleManager.on(
SelfRoleManagerEvents.interaction,
async (
_: RoleToEmojiData,
interaction: StringSelectMenuInteraction | ButtonInteraction,
) => {
await interaction.editReply(
"Ton interaction a été enregistrée.",
);
},
);
this.selfRoleManager.on(
SelfRoleManagerEvents.maxRolesReach,
async (
member: GuildMember,
interaction: StringSelectMenuInteraction | ButtonInteraction,
nbRoles: number,
maxRoles: number,
) => {
const channel = await member.guild.channels.fetch(
interaction.message.channel.id,
);
let message = `Le membre <${member.user.tag}> a atteint la limite de rôles`;
if (channel) message += ` dans <${channel.name}>`;
message += `! (${nbRoles}/${maxRoles})`;
this.logger.info(message);
await interaction.editReply(
`Tu ne peux pas t'assigner plus de ${maxRoles} rôle${maxRoles > 1 ? "s" : ""} dans ce canal! Tu en as déjà ${nbRoles} d'assigné${nbRoles > 1 ? "s" : ""}`,
);
},
);
this.selfRoleManager.on(
SelfRoleManagerEvents.messageRetrieve,
(msg: Message) => {
const channel = msg.channel as GuildTextBasedChannel;
this.logger.info(
`Message récupéré dans ${channel.parent?.name}-${channel.name} (${msg.channelId})`,
);
},
);
this.selfRoleManager.on(
SelfRoleManagerEvents.messageCreate,
(msg: Message) => {
const channel = msg.channel as GuildTextBasedChannel;
this.logger.info(
`Message créé dans ${channel.parent?.name}-${channel.name} (${msg.channelId})`,
);
},
);
this.selfRoleManager.on(
SelfRoleManagerEvents.messageDelete,
(msg: Message) => {
const channel = msg.channel as GuildTextBasedChannel;
this.logger.info(
`Message supprimé de ${channel.parent?.name}-${channel.name} (${msg.channelId})`,
);
},
);
this.selfRoleManager.on(
SelfRoleManagerEvents.roleAdd,
async (
role: Role,
member: GuildMember,
interaction: StringSelectMenuInteraction | ButtonInteraction,
) => {
this.logger.info(
`Le rôle ${role.name} (<${role.id}>) a été ajouté à <${member.user.tag}>`,
);
await interaction.editReply(`Le rôle ${role} t'a été ajouté.`);
},
);
this.selfRoleManager.on(
SelfRoleManagerEvents.roleRemove,
async (
role: Role,
member: GuildMember,
interaction?: StringSelectMenuInteraction | ButtonInteraction,
) => {
this.logger.info(
`Le rôle ${role.name} (<${role.id}>) a été retiré de <${member.user.tag}>`,
);
if (interaction)
await interaction.editReply(
`Le rôle ${role} t'a été retiré.`,
);
},
);
this.selfRoleManager.on(
SelfRoleManagerEvents.requiredRolesMissing,
async (
member: GuildMember,
interaction: StringSelectMenuInteraction | ButtonInteraction,
role: Role,
requiredRoles: string[],
) => {
const requiredRolesMissing: Role[] = (
await Promise.all(
requiredRoles.map((requiredRole) =>
member.guild.roles.fetch(requiredRole),
),
)
)
.map((role) => role as Role)
.filter((requiredRole) => !!requiredRole);
const roleNames = requiredRolesMissing
.map((role) => `${role.name} (<${role.id}>)`)
.join(", ");
this.logger.info(
`Le rôle ${role.name} (<${role.id}>) n'a pas pu être donné à <${member.user.tag}> parce que tous les rôles requis ne sont pas assignés à ce membre: ${roleNames}.`,
);
await interaction.editReply(
`Tu ne peux pas t'assigner le rôle ${role}! Tu dois d'abord avoir les rôles suivants: ${requiredRolesMissing.join(", ")}.`,
);
},
);
this.selfRoleManager.on(
SelfRoleManagerEvents.maxRolesReach,
async (
member: GuildMember,
interaction: StringSelectMenuInteraction | ButtonInteraction,
currentRolesNumber: number,
maxRolesNumber: number,
role: Role,
) => {
this.logger.info(
`Le rôle ${role.name} (<${role.id}>) n'a pas pu être donné à <${member.user.tag}> parce que ce membre a été la limite de rôles: ${currentRolesNumber}/${maxRolesNumber}.`,
);
await interaction.editReply(
`Tu ne peux pas t'assigner le rôle ${role}! Tu as atteint la limite: ${currentRolesNumber}/${maxRolesNumber}.`,
);
},
);
this.selfRoleManager.on(
SelfRoleManagerEvents.error,
(error: unknown, message: string) => {
this.logger.error(
`Une erreur est survenue lors de la gestion des rôles automatiques.\nErreur: ${message}\n${getErrorMessage(error)}`,
);
},
);
}
async #bindEvents(): Promise<void> {
const eventDirectory = path.join(import.meta.dirname, "events");
await readFilesFrom<Event>(
eventDirectory,
(eventFileName: string, event: Event) => {
this.logger.info(
`Event '${event.name}' ('${eventFileName}') chargé`,
);
if (event.once) {
this.once(
event.name,
event.execute.bind(null, this) as (
...args: ClientEvents[keyof ClientEvents]
) => void,
);
} else {
this.on(
event.name,
event.execute.bind(null, this) as (
...args: ClientEvents[keyof ClientEvents]
) => void,
);
}
},
this.logger,
);
}
async #bindCommands(): Promise<void> {
const commandDirectory = path.join(import.meta.dirname, "commands");
await readFilesFrom<Command>(
commandDirectory,
(commandFileName: string, props: Command) => {
this.logger.info(
`Commande '${props.data.name}' ('${commandFileName}') chargée`,
);
this.commands.set(props.data.name, props);
},
this.logger,
);
}
async start(): Promise<void> {
try {
this.#listenToSelfRoleEvents();
this.#listenToTempChannelsEvents();
this.#listenToVerificationEvents();
await this.#bindEvents();
await this.#bindCommands();
await this.database?.start();
this.login();
} catch (error) {
this.logger.error(
`Une erreur est survenue lors du démarrage du bot.\nErreur: ${getErrorMessage(error)}`,
);
throw error;
}
}
async stop(): Promise<void> {
await this.database?.stop();
process.exit(0);
}
}