1 |
rakinar2 |
577 |
/** |
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 BaseEvent from '../../utils/structures/BaseEvent'; |
21 |
|
|
import DiscordClient from '../../client/Client'; |
22 |
|
|
import { GuildMember } from 'discord.js'; |
23 |
|
|
import autoRole from '../../services/AutoRole'; |
24 |
|
|
import GuildInfo, { IGuildInfo } from '../../models/GuildInfo'; |
25 |
|
|
import { isDisabledServer } from '../../utils/util'; |
26 |
|
|
|
27 |
|
|
export default class GuildMemberAddEvent extends BaseEvent { |
28 |
|
|
constructor() { |
29 |
|
|
super('guildMemberAdd'); |
30 |
|
|
} |
31 |
|
|
|
32 |
|
|
async run(client: DiscordClient, member: GuildMember) { |
33 |
|
|
if (member.user.id === client.user!.id) |
34 |
|
|
return; |
35 |
|
|
|
36 |
|
|
if (isDisabledServer(member.guild.id)) |
37 |
|
|
return; |
38 |
|
|
|
39 |
|
|
let info: IGuildInfo | undefined | null; |
40 |
|
|
|
41 |
|
|
try { |
42 |
|
|
info = await GuildInfo.findOneAndUpdate({ |
43 |
|
|
guild_id: member.guild.id |
44 |
|
|
}, { |
45 |
|
|
$inc: { |
46 |
|
|
totalMembersJoined: 1 |
47 |
|
|
}, |
48 |
|
|
updatedAt: new Date() |
49 |
|
|
}, { |
50 |
|
|
new: true, |
51 |
|
|
upsert: true |
52 |
|
|
}); |
53 |
|
|
} |
54 |
|
|
catch (e) { |
55 |
|
|
console.log(e); |
56 |
|
|
} |
57 |
|
|
|
58 |
|
|
await client.logger.onGuildMemberAdd(member, info ?? undefined); |
59 |
|
|
|
60 |
|
|
if (member.user.bot) |
61 |
|
|
return; |
62 |
|
|
|
63 |
|
|
if (await client.antijoin.start(member)) { |
64 |
|
|
return; |
65 |
|
|
} |
66 |
|
|
|
67 |
|
|
await client.antiraid.start(member); |
68 |
|
|
await autoRole(client, member); |
69 |
|
|
|
70 |
|
|
await client.welcomer.start(member); |
71 |
|
|
|
72 |
|
|
if (client.config.props[member.guild.id].verification.enabled) { |
73 |
|
|
await client.verification.start(member); |
74 |
|
|
} |
75 |
|
|
|
76 |
|
|
if (!(await client.profileFilter.check(member))) { |
77 |
|
|
await client.automute.onMemberJoin(member); |
78 |
|
|
console.log("Run automute"); |
79 |
|
|
} |
80 |
|
|
} |
81 |
|
|
} |