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 { TextChannel, Collection, User, Message, GuildMember } from 'discord.js'; |
23 |
import { isDisabledServer } from '../../utils/util'; |
24 |
|
25 |
export default class RawEvent extends BaseEvent { |
26 |
events = { |
27 |
MESSAGE_REACTION_ADD: 'messageReactionAddRaw', |
28 |
}; |
29 |
|
30 |
constructor() { |
31 |
super('raw'); |
32 |
} |
33 |
|
34 |
async run(client: DiscordClient, event: { d: any, t: keyof RawEvent['events'] }) { |
35 |
if (!this.events.hasOwnProperty(event.t)) |
36 |
return; |
37 |
|
38 |
const { d: data } = event; |
39 |
// const user = client.users.cache.find(i => i.id === data.user_id); |
40 |
console.log(data); |
41 |
const channel = <TextChannel> client.channels.cache.find(i => i.id === data.channel_id); |
42 |
|
43 |
// if (channel) { |
44 |
// let message: Message | undefined; |
45 |
|
46 |
// try { |
47 |
// message = await channel.messages.fetch(data.message_id); |
48 |
// } |
49 |
// catch (e) { |
50 |
// console.log(e); |
51 |
// } |
52 |
|
53 |
// if (!message) { |
54 |
// return; |
55 |
// } |
56 |
|
57 |
// let member: GuildMember | undefined; |
58 |
|
59 |
// if (!message.member) { |
60 |
// try { |
61 |
// member = await channel.guild.members.fetch(message.author.id); |
62 |
// } |
63 |
// catch (e) { |
64 |
// console.log(e); |
65 |
// } |
66 |
|
67 |
// if (!member) { |
68 |
// return; |
69 |
// } |
70 |
// else { |
71 |
// (message as any).member = member; |
72 |
// } |
73 |
// } |
74 |
|
75 |
// if (!message.guild) { |
76 |
// (message as any).guild ??= channel.guild!; |
77 |
// (message as any).guildId ??= channel.guildId!; |
78 |
// } |
79 |
|
80 |
// if (!message.channel) { |
81 |
// (message as any).channel ??= channel!; |
82 |
// (message as any).channelId ??= channel.id!; |
83 |
// } |
84 |
|
85 |
// // const emojiKey = (data.emoji.id) ? `${data.emoji.name}:${data.emoji.id}` : data.emoji.name; |
86 |
|
87 |
// console.log("Reactions", message.reactions.cache, data.emoji.id); |
88 |
|
89 |
// const reaction = message.reactions.cache.get(data.emoji.id); |
90 |
|
91 |
// client.emit(this.events[event.t], { |
92 |
// ...(reaction ?? {}), |
93 |
// users: reaction ? reaction.users : { |
94 |
// cache: new Collection<string, User>([ |
95 |
// [message.author.id, message.author] |
96 |
// ]) |
97 |
// }, |
98 |
// message: reaction?.message ?? message, |
99 |
// emoji: reaction?.emoji ?? data.emoji, |
100 |
// remove: reaction?.remove.bind(reaction) ?? null |
101 |
// }, message); |
102 |
// } |
103 |
} |
104 |
} |