2023-05-09 05:13:59 +00:00
|
|
|
// @ts-check
|
|
|
|
|
2023-07-04 05:19:17 +00:00
|
|
|
const assert = require("assert").strict
|
2023-05-09 05:13:59 +00:00
|
|
|
|
|
|
|
const passthrough = require("../../passthrough")
|
2023-09-18 10:51:59 +00:00
|
|
|
const {discord, sync, db, select} = passthrough
|
2023-05-09 05:13:59 +00:00
|
|
|
/** @type {import("../../matrix/api")} */
|
|
|
|
const api = sync.require("../../matrix/api")
|
|
|
|
/** @type {import("./register-user")} */
|
|
|
|
const registerUser = sync.require("./register-user")
|
|
|
|
/** @type {import("../actions/create-room")} */
|
|
|
|
const createRoom = sync.require("../actions/create-room")
|
2023-09-25 09:20:23 +00:00
|
|
|
/** @type {import("../converters/emoji-to-key")} */
|
|
|
|
const emojiToKey = sync.require("../converters/emoji-to-key")
|
|
|
|
|
2023-05-09 05:13:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {import("discord-api-types/v10").GatewayMessageReactionAddDispatchData} data
|
|
|
|
*/
|
|
|
|
async function addReaction(data) {
|
2023-08-21 09:04:41 +00:00
|
|
|
const user = data.member?.user
|
|
|
|
assert.ok(user && user.username)
|
2023-09-19 11:02:51 +00:00
|
|
|
|
2023-10-14 09:08:10 +00:00
|
|
|
const parentID = select("event_message", "event_id", {message_id: data.message_id, reaction_part: 0}).pluck().get()
|
2023-08-21 09:04:41 +00:00
|
|
|
if (!parentID) return // Nothing can be done if the parent message was never bridged.
|
|
|
|
assert.equal(typeof parentID, "string")
|
2023-09-19 11:02:51 +00:00
|
|
|
|
2023-09-25 09:20:23 +00:00
|
|
|
const key = await emojiToKey.emojiToKey(data.emoji)
|
2023-09-25 09:21:34 +00:00
|
|
|
const shortcode = key.startsWith("mxc://") ? `:${data.emoji.name}:` : undefined
|
2023-09-19 11:02:51 +00:00
|
|
|
|
2023-05-09 05:13:59 +00:00
|
|
|
const roomID = await createRoom.ensureRoom(data.channel_id)
|
|
|
|
const senderMxid = await registerUser.ensureSimJoined(user, roomID)
|
2023-08-19 06:40:01 +00:00
|
|
|
const eventID = await api.sendEvent(roomID, "m.reaction", {
|
2023-08-21 09:04:41 +00:00
|
|
|
"m.relates_to": {
|
|
|
|
rel_type: "m.annotation",
|
|
|
|
event_id: parentID,
|
2023-09-19 11:02:51 +00:00
|
|
|
key
|
2023-09-25 07:18:57 +00:00
|
|
|
},
|
2023-09-25 09:21:34 +00:00
|
|
|
shortcode
|
2023-08-21 09:04:41 +00:00
|
|
|
}, senderMxid)
|
2023-05-09 05:13:59 +00:00
|
|
|
return eventID
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports.addReaction = addReaction
|