Skip to content

Commit 074602c

Browse files
committed
✨ implements faux dms
1 parent 2a3d1b0 commit 074602c

File tree

7 files changed

+653
-1215
lines changed

7 files changed

+653
-1215
lines changed

src/v2/commands/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { filter } from 'domyno';
1717
import { isEqual } from 'lodash-es';
1818

1919
import type { CommandDataWithHandler } from '../../types';
20-
import { commands } from '../modules/modmail';
20+
import { modmailCommands } from '../modules/modmail';
2121
import { asyncCatch } from '../utils/asyncCatch.js';
2222
import { map, mapʹ } from '../utils/map.js';
2323
import { merge } from '../utils/merge.js';
@@ -51,7 +51,7 @@ export const guildCommands = new Map(
5151
shitpostInteraction,
5252
npmInteraction,
5353
whynoInteraction,
54-
...commands,
54+
...modmailCommands,
5555
// warn // Not used atm
5656
].map(command => [command.name, command])
5757
); // placeholder for now

src/v2/index.ts

+11-2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ import { registerCommands } from './commands/index.js';
3131
import pointDecaySystem, { loadLastDecayFromDB } from './helpful_role/point_decay.js';
3232
import { registerMessageContextMenu } from './message_context/index.js';
3333
import { handleDM } from './modules/modmail/index.js';
34+
import { handleDmThread } from './modules/modmail/util/handleDmThread.js';
35+
import { isDmThread } from './modules/modmail/util/isDmThread.js';
36+
import { isModMailThread } from './modules/modmail/util/isModMailThread.js';
3437
import { registerUserContextMenu } from './user_context/index.js';
3538
import { stripMarkdownQuote } from './utils/content_format.js';
3639
import { purge as purgeDMLocks } from './utils/dmLock.js';
@@ -161,8 +164,14 @@ const handleNonCommandGuildMessages = async (msg: Message) => {
161164
if (msg.author.bot) {
162165
return;
163166
}
164-
if (isWebdevAndWebDesignServer(msg) && isThanksMessage(quoteLessContent)) {
165-
handleThanks(msg);
167+
168+
if (isWebdevAndWebDesignServer(msg)) {
169+
if(isThanksMessage(quoteLessContent)) {
170+
handleThanks(msg);
171+
}
172+
if(isDmThread(msg)) {
173+
handleDmThread(msg)
174+
}
166175
}
167176
await detectDeprecatedCommands(msg);
168177
await detectJustAsk(msg);

src/v2/modules/modmail/commands/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ import { reportUser } from './reportUser';
55
import { sendCommand } from './send';
66

77

8-
export const commands = [sendCommand, reportMessage, initiateModmail, reportUser, closeCommand ];
8+
export const modmailCommands = [sendCommand, reportMessage, initiateModmail, reportUser, closeCommand];

src/v2/modules/modmail/commands/send.ts

+61-20
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
import type {
22
DMChannel,
33
Guild,
4+
GuildMember,
45
Message,
56
MessageOptions,
67
MessagePayload,
78
TextChannel,
8-
ThreadChannel} from 'discord.js';
9-
import {
10-
MessageActionRow,
11-
MessageButton,
12-
MessageEmbed
9+
ThreadChannel,
1310
} from 'discord.js';
11+
import { MessageActionRow, MessageButton, MessageEmbed } from 'discord.js';
1412

1513
import type { CommandDataWithHandler } from '../../../../types';
1614
import { SERVER_ID, MOD_ROLE_ID, DM_ALT_CHANNEL_ID } from '../../../env';
@@ -104,7 +102,7 @@ export const sendCommand: CommandDataWithHandler = {
104102
],
105103
});
106104
} catch (error) {
107-
console.error(error)
105+
console.error(error);
108106
}
109107
},
110108
onAttach(client) {
@@ -126,8 +124,12 @@ export const sendCommand: CommandDataWithHandler = {
126124
return;
127125
}
128126

129-
const dmChannel = await member.createDM();
130-
const message = await dmChannel.messages.fetch(msgId);
127+
const message = await getDmMessage({
128+
member,
129+
msgId,
130+
guild: interaction.guild,
131+
});
132+
131133
try {
132134
await message.delete();
133135
if ('edit' in interaction.message) {
@@ -179,7 +181,7 @@ async function sendFakeDM(
179181
{ upsert: true, new: true }
180182
).exec();
181183

182-
console.log(dmThread)
184+
console.log(dmThread);
183185

184186
const channel = (await guild.channels.fetch(
185187
dmThread.channelId
@@ -190,20 +192,59 @@ async function sendFakeDM(
190192
thread = await channel.threads.fetch(dmThread.threadId);
191193
} else {
192194
try {
193-
thread = await channel.threads.create({
194-
name: `${dmChannel.recipient.username}_${dmChannel.recipient.discriminator} [${userId}]`,
195-
type: 'GUILD_PRIVATE_THREAD',
196-
});
197-
} catch {
198-
thread = await channel.threads.create({
199-
name: `${dmChannel.recipient.username}_${dmChannel.recipient.discriminator} [${userId}]`,
200-
type: 'GUILD_PUBLIC_THREAD',
201-
});
202-
}
195+
thread = await channel.threads.create({
196+
name: `${dmChannel.recipient.username}_${dmChannel.recipient.discriminator} [${userId}]`,
197+
type: 'GUILD_PRIVATE_THREAD',
198+
});
199+
} catch {
200+
thread = await channel.threads.create({
201+
name: `${dmChannel.recipient.username}_${dmChannel.recipient.discriminator} [${userId}]`,
202+
type: 'GUILD_PUBLIC_THREAD',
203+
});
204+
}
203205

204206
dmThread.updateOne({ threadId: thread.id }).exec();
205207
}
206208

207209
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions
208-
return thread.send(typeof content === 'string' ? `${dmChannel.recipient} ${content}` : { content: `${dmChannel.recipient} ${(content as {content?: string }).content ?? ''}`, ...content})
210+
return thread.send(
211+
typeof content === 'string'
212+
? `${dmChannel.recipient} ${content}`
213+
: {
214+
content: `${dmChannel.recipient} ${
215+
(content as { content?: string }).content ?? ''
216+
}`,
217+
...content,
218+
}
219+
);
220+
}
221+
async function getDmMessage({
222+
member,
223+
guild,
224+
msgId,
225+
}: {
226+
member: GuildMember;
227+
guild: Guild;
228+
msgId: string;
229+
}): Promise<Message | null> {
230+
const userId = member.user.id;
231+
const dmChannelReplacement = await DMThread.findOne({
232+
guildId: SERVER_ID,
233+
userId,
234+
closedAt: { $exists: false },
235+
}).exec();
236+
237+
console.log(dmChannelReplacement)
238+
if (dmChannelReplacement) {
239+
const channel = (await guild.channels.fetch(
240+
dmChannelReplacement.channelId
241+
)) as TextChannel;
242+
243+
const thread = await channel.threads.fetch(dmChannelReplacement.threadId);
244+
return thread.messages.fetch(msgId);
245+
}
246+
247+
const dmChannel = await member.createDM();
248+
249+
return await dmChannel.messages.fetch(msgId);
209250
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
import type { Message} from 'discord.js';
2+
import { MessageEmbed } from 'discord.js';
3+
4+
import { ModMailThread } from '../db/modmail_thread';
5+
import { getModMailThread } from './getModMailThread';
6+
7+
export const handleDmThread = async (msg: Message) => {
8+
const modmailThreadData = await ModMailThread.findOne({
9+
userId: msg.author.id,
10+
guildId: msg.guildId,
11+
closedAt: { $exists: false },
12+
}).exec();
13+
14+
if(!modmailThreadData) {
15+
return
16+
}
17+
18+
const modmailThread = await getModMailThread(msg.guild, msg.author)
19+
20+
if (msg.attachments.size === 0) {
21+
await modmailThread.send({
22+
embeds: [
23+
new MessageEmbed()
24+
.setColor(0xff_96_00)
25+
.setAuthor({
26+
name: `${msg.author.username}#${msg.author.discriminator}`,
27+
iconURL: msg.author.avatarURL(),
28+
})
29+
.setDescription(msg.content)
30+
.setTitle('Message Received')
31+
.setTimestamp(msg.createdTimestamp),
32+
],
33+
});
34+
35+
msg.react("✅")
36+
}
37+
};
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import type { Guild, Message, TextChannel } from 'discord.js';
2+
3+
import { DM_ALT_CHANNEL_ID } from '../../../env';
4+
import { DMThread } from '../db/dm_thread';
5+
import { cache } from "./cache";
6+
7+
export const isDmThread = async (msg: Message): Promise<boolean> => {
8+
if(!msg.channel.isThread()) {
9+
return false
10+
}
11+
12+
if (msg.channel.parent?.id !== DM_ALT_CHANNEL_ID) {
13+
return false
14+
}
15+
16+
const dmThread = await DMThread.findOne({
17+
guildId: msg.guild,
18+
threadId: msg.channelId,
19+
channelId: msg.channel.parent.id,
20+
closedAt: { $exists: false }
21+
}).exec()
22+
23+
return !!dmThread
24+
};

0 commit comments

Comments
 (0)