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 { ClientEvents } from "discord.js"; |
21 |
import Event from "../core/Event"; |
22 |
import { logError, logInfo, logWarn } from "../utils/logger"; |
23 |
|
24 |
export default class ReadyEvent extends Event { |
25 |
public name: keyof ClientEvents = "ready"; |
26 |
|
27 |
async execute() { |
28 |
logInfo("The bot has logged in."); |
29 |
await this.client.server.onReady(); |
30 |
this.client.server.start().catch(logError); |
31 |
this.client.queueManager.onReady().catch(logError); |
32 |
const homeGuild = await this.client.getHomeGuild(); |
33 |
|
34 |
if (this.client.configManager.systemConfig.sync_emojis) { |
35 |
try { |
36 |
const emojis = await homeGuild.emojis.fetch(); |
37 |
|
38 |
for (const [id, emoji] of emojis) { |
39 |
if (!this.client.emojis.cache.has(id)) { |
40 |
this.client.emojis.cache.set(id, emoji); |
41 |
this.client.emojiMap.set(emoji.name ?? emoji.identifier, emoji); |
42 |
} |
43 |
} |
44 |
|
45 |
logInfo("Successfully synced the emojis of home guild."); |
46 |
} catch (e) { |
47 |
logError(e); |
48 |
logWarn("Failed to fetch some of the emojis. The bot may not show some of the emojis in it's responses."); |
49 |
} |
50 |
} |
51 |
} |
52 |
} |