1 |
/** |
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 { runTimeouts } from '../../utils/setTimeout'; |
23 |
import { LogLevel } from '../../services/DebugLogger'; |
24 |
import { exit } from 'process'; |
25 |
import Punishment from '../../models/Punishment'; |
26 |
import Counter from '../../models/Counter'; |
27 |
|
28 |
export default class ReadyEvent extends BaseEvent { |
29 |
constructor() { |
30 |
super('ready'); |
31 |
} |
32 |
|
33 |
async run(client: DiscordClient) { |
34 |
console.log(`\nLogged in as ${client.user!.tag}!`); |
35 |
await client.server.run(); |
36 |
|
37 |
runTimeouts(); |
38 |
client.queueManager.loadQueues(); |
39 |
client.startupManager.boot(); |
40 |
client.randomStatus.update(); |
41 |
client.autobackup.onReady().catch(console.error); |
42 |
|
43 |
for (const guild of client.guilds.cache.toJSON()) { |
44 |
console.log(guild.id + ' ' + guild.name); |
45 |
|
46 |
if (!client.config.props[guild.id]) { |
47 |
console.log('Unauthorized guilds found! Please run the cli with `guildpurge` command to remove unauthorized guilds.'); |
48 |
await client.debugLogger.logLeaveJoin(LogLevel.CRITICAL, `Unauthorized guild detected: ${guild.name} [ID: ${guild.id}]`); |
49 |
exit(-1); |
50 |
} |
51 |
} |
52 |
|
53 |
for (const guild of client.guilds.cache.values()) { |
54 |
if (client.config.props[guild.id].invite_tracking?.enabled) { |
55 |
client.inviteTracker.refreshInvites(guild).catch(console.error); |
56 |
} |
57 |
} |
58 |
|
59 |
if ((await Counter.count()) < 1) { |
60 |
const lastPunishment = await Punishment.findOne({}, undefined, { |
61 |
sort: { |
62 |
createdAt: -1 |
63 |
} |
64 |
}); |
65 |
|
66 |
await Counter.create({ |
67 |
_id: 'punishments_id', |
68 |
seq: lastPunishment!.numericId |
69 |
}); |
70 |
} |
71 |
} |
72 |
} |