From a33f269c88c432c532d7816f180e5262d73ebf02 Mon Sep 17 00:00:00 2001 From: Seth Falco Date: Thu, 6 Jul 2023 01:13:30 +0100 Subject: [PATCH] fix: join room on reaction events Signed-off-by: Seth Falco --- src/bot.ts | 34 ++++++++++++++++++++++++++-------- test/test_discordbot.ts | 3 +++ 2 files changed, 29 insertions(+), 8 deletions(-) diff --git a/src/bot.ts b/src/bot.ts index 0d3bdbc1..6b5b3780 100644 --- a/src/bot.ts +++ b/src/bot.ts @@ -1197,10 +1197,6 @@ export class DiscordBot { const reactionName = reaction.emoji.name; log.verbose(`Got message reaction add event for ${message.id} with ${reactionName}`); - const intent = this.GetIntentFromDiscordMember(user); - await intent.ensureRegistered(); - this.userActivity.updateUserActivity(intent.userId); - const storeEvent = await this.store.Get(DbEvent, { discord_id: message.id }); @@ -1210,8 +1206,21 @@ export class DiscordBot { return; } + const intent = this.GetIntentFromDiscordMember(user); + await intent.ensureRegistered(); + this.userActivity.updateUserActivity(intent.userId); + while (storeEvent.Next()) { const [ eventId, roomId ] = storeEvent.MatrixId.split(";"); + + // If the user is partial, only forward the event for rooms they're already in. + if (user.partial) { + log.warn(`Skipping reaction add for user with Discord ID ${user.id} in ${roomId}. User was partial.`); + continue; + } + + await this.userSync.JoinRoom(user, roomId); + const reactionEventId = await intent.underlyingClient.unstableApis.addReactionToEvent( roomId, eventId, @@ -1234,10 +1243,6 @@ export class DiscordBot { const message = reaction.message; log.verbose(`Got message reaction remove event for ${message.id} with ${reaction.emoji.name}`); - const intent = this.GetIntentFromDiscordMember(user); - await intent.ensureRegistered(); - this.userActivity.updateUserActivity(intent.userId); - const storeEvent = await this.store.Get(DbEvent, { discord_id: message.id, }); @@ -1247,8 +1252,21 @@ export class DiscordBot { return; } + const intent = this.GetIntentFromDiscordMember(user); + await intent.ensureRegistered(); + this.userActivity.updateUserActivity(intent.userId); + while (storeEvent.Next()) { const [ eventId, roomId ] = storeEvent.MatrixId.split(";"); + + // If the user is partial, only forward the event for rooms they're already in. + if (user.partial) { + log.warn(`Skipping reaction remove for user with Discord ID ${user.id} in ${roomId}. User was partial.`); + continue; + } + + await this.userSync.JoinRoom(user, roomId); + const underlyingClient = intent.underlyingClient; const { chunk } = await underlyingClient.unstableApis.getRelationsForEvent( diff --git a/test/test_discordbot.ts b/test/test_discordbot.ts index c89a0cd0..9c9e469d 100644 --- a/test/test_discordbot.ts +++ b/test/test_discordbot.ts @@ -476,6 +476,9 @@ describe("DiscordBot", () => { discord.userActivity = { updateUserActivity: () => { } }; + discord.userSync = { + JoinRoom: async () => { }, + }; discord.GetIntentFromDiscordMember = () => { return mockBridge.getIntent(author.id); }