26 lines
963 B
JavaScript
26 lines
963 B
JavaScript
// @ts-check
|
|
|
|
const assert = require("assert")
|
|
|
|
const passthrough = require("../../passthrough")
|
|
const { discord, sync, db } = passthrough
|
|
/** @type {import("../converters/thread-to-announcement")} */
|
|
const threadToAnnouncement = sync.require("../converters/thread-to-announcement")
|
|
/** @type {import("../../matrix/api")} */
|
|
const api = sync.require("../../matrix/api")
|
|
|
|
/**
|
|
* @param {string} parentRoomID
|
|
* @param {string} threadRoomID
|
|
* @param {import("discord-api-types/v10").APIThreadChannel} thread
|
|
*/
|
|
async function announceThread(parentRoomID, threadRoomID, thread) {
|
|
/** @type {string?} */
|
|
const creatorMxid = db.prepare("SELECT mxid FROM sim WHERE discord_id = ?").pluck().get(thread.owner_id)
|
|
|
|
const content = await threadToAnnouncement.threadToAnnouncement(parentRoomID, threadRoomID, creatorMxid, thread, {api})
|
|
|
|
await api.sendEvent(parentRoomID, "m.room.message", content, creatorMxid)
|
|
}
|
|
|
|
module.exports.announceThread = announceThread
|