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 type Client from "../core/Client"; |
21 |
import EventListener from "../core/EventListener"; |
22 |
import { Events } from "../types/ClientEvents"; |
23 |
import { logError, logInfo, logWarn } from "../utils/Logger"; |
24 |
|
25 |
export default class ReadyEvent extends EventListener<Events.Ready> { |
26 |
public readonly name = Events.Ready; |
27 |
|
28 |
async execute(client: Client<true>) { |
29 |
logInfo("The bot has logged in."); |
30 |
|
31 |
this.client.configManager.onReady(); |
32 |
this.client.startupManager.onReady(); |
33 |
await this.client.server.onReady(); |
34 |
this.client.queueManager.onReady().catch(logError); |
35 |
const homeGuild = await this.client.getHomeGuild(); |
36 |
|
37 |
if (this.client.configManager.systemConfig.sync_emojis) { |
38 |
try { |
39 |
const emojis = await homeGuild.emojis.fetch(); |
40 |
|
41 |
for (const [id, emoji] of emojis) { |
42 |
if (!this.client.emojis.cache.has(id)) { |
43 |
this.client.emojis.cache.set(id, emoji); |
44 |
this.client.emojiMap.set(emoji.name ?? emoji.identifier, emoji); |
45 |
} |
46 |
} |
47 |
|
48 |
logInfo("Successfully synced the emojis of home guild."); |
49 |
} catch (e) { |
50 |
logError(e); |
51 |
logWarn( |
52 |
"Failed to fetch some of the emojis. The bot may not show some of the emojis in it's responses." |
53 |
); |
54 |
} |
55 |
} |
56 |
|
57 |
if (client.configManager.systemConfig.log_server?.auto_start) { |
58 |
this.client.logServer.listen(); |
59 |
} |
60 |
} |
61 |
} |