2023-08-15 05:20:31 +00:00
// @ts-check
2023-10-05 23:31:10 +00:00
const assert = require ( "assert" ) . strict
2023-08-15 05:20:31 +00:00
const passthrough = require ( "../../passthrough" )
2023-10-05 23:31:10 +00:00
const { discord , sync , db , select , from } = passthrough
2023-08-15 05:20:31 +00:00
/** @type {import("./message-to-event")} */
const messageToEvent = sync . require ( "../converters/message-to-event" )
/** @type {import("../actions/register-user")} */
2023-08-16 05:03:05 +00:00
const registerUser = sync . require ( "../actions/register-user" )
2023-08-15 05:20:31 +00:00
/** @type {import("../actions/create-room")} */
const createRoom = sync . require ( "../actions/create-room" )
/ * *
* @ param { import ( "discord-api-types/v10" ) . GatewayMessageCreateDispatchData } message
* IMPORTANT : This may not have all the normal fields ! The API documentation doesn 't provide possible types, just says it' s all optional !
* Since I don 't have a spec, I will have to capture some real traffic and add it as test cases... I hope they don' t change anything later ...
* @ param { import ( "discord-api-types/v10" ) . APIGuild } guild
2023-08-17 00:35:34 +00:00
* @ param { import ( "../../matrix/api" ) } api simple - as - nails dependency injection for the matrix API
2023-08-15 05:20:31 +00:00
* /
2023-08-17 00:35:34 +00:00
async function editToChanges ( message , guild , api ) {
2023-08-15 05:20:31 +00:00
// Figure out what events we will be replacing
2023-10-05 23:31:10 +00:00
const roomID = select ( "channel_room" , "room_id" , { channel _id : message . channel _id } ) . pluck ( ) . get ( )
assert ( roomID )
/** @type {string?} Null if we don't have a sender in the room, which will happen if it's a webhook's message. The bridge bot will do the edit instead. */
2023-10-09 22:23:51 +00:00
const senderMxid = from ( "sim" ) . join ( "sim_member" , "mxid" ) . where ( { user _id : message . author . id , room _id : roomID } ) . pluck ( "mxid" ) . get ( ) || null
2023-10-05 23:31:10 +00:00
const oldEventRows = select ( "event_message" , [ "event_id" , "event_type" , "event_subtype" , "part" ] , { message _id : message . id } ) . all ( )
2023-08-15 05:20:31 +00:00
// Figure out what we will be replacing them with
2023-08-16 08:44:38 +00:00
const newFallbackContent = await messageToEvent . messageToEvent ( message , guild , { includeEditFallbackStar : true } , { api } )
const newInnerContent = await messageToEvent . messageToEvent ( message , guild , { includeReplyFallback : false } , { api } )
assert . ok ( newFallbackContent . length === newInnerContent . length )
2023-08-15 05:20:31 +00:00
// Match the new events to the old events
/ *
Rules :
+ The events must have the same type .
+ The events must have the same subtype .
2023-08-16 05:03:05 +00:00
Events will therefore be divided into four categories :
2023-08-15 05:20:31 +00:00
* /
/** 1. Events that are matched, and should be edited by sending another m.replace event */
let eventsToReplace = [ ]
/** 2. Events that are present in the old version only, and should be blanked or redacted */
let eventsToRedact = [ ]
/** 3. Events that are present in the new version only, and should be sent as new, with references back to the context */
let eventsToSend = [ ]
2023-08-16 05:03:05 +00:00
// 4. Events that are matched and have definitely not changed, so they don't need to be edited or replaced at all. This is represented as nothing.
2023-08-15 05:20:31 +00:00
2023-08-16 08:44:38 +00:00
function shift ( ) {
newFallbackContent . shift ( )
newInnerContent . shift ( )
}
2023-08-15 05:20:31 +00:00
// For each old event...
2023-08-16 08:44:38 +00:00
outer : while ( newFallbackContent . length ) {
const newe = newFallbackContent [ 0 ]
2023-08-15 05:20:31 +00:00
// Find a new event to pair it with...
for ( let i = 0 ; i < oldEventRows . length ; i ++ ) {
const olde = oldEventRows [ i ]
2023-08-25 13:44:50 +00:00
if ( olde . event _type === newe . $type && olde . event _subtype === ( newe . msgtype || null ) ) { // The spec does allow subtypes to change, so I can change this condition later if I want to
2023-08-15 05:20:31 +00:00
// Found one!
// Set up the pairing
eventsToReplace . push ( {
old : olde ,
2023-08-16 08:44:38 +00:00
newFallbackContent : newFallbackContent [ 0 ] ,
newInnerContent : newInnerContent [ 0 ]
2023-08-15 05:20:31 +00:00
} )
// These events have been handled now, so remove them from the source arrays
2023-08-16 08:44:38 +00:00
shift ( )
2023-08-15 05:20:31 +00:00
oldEventRows . splice ( i , 1 )
// Go all the way back to the start of the next iteration of the outer loop
continue outer
}
}
// If we got this far, we could not pair it to an existing event, so it'll have to be a new one
2023-08-17 00:35:34 +00:00
eventsToSend . push ( newInnerContent [ 0 ] )
2023-08-16 08:44:38 +00:00
shift ( )
2023-08-15 05:20:31 +00:00
}
// Anything remaining in oldEventRows is present in the old version only and should be redacted.
eventsToRedact = oldEventRows
2023-10-06 03:50:23 +00:00
// If events are being deleted, we might be deleting the part = 0. But we want to have a part = 0 at all times. In this case we choose an existing event to promote.
let promoteEvent = null , promoteNextEvent = false
if ( eventsToRedact . some ( e => e . part === 0 ) ) {
if ( eventsToReplace . length ) {
// We can choose an existing event to promote. Bigger order is better.
const order = e => 2 * + ( e . event _type === "m.room.message" ) + 1 * + ( e . event _subtype === "m.text" )
eventsToReplace . sort ( ( a , b ) => order ( b ) - order ( a ) )
promoteEvent = eventsToReplace [ 0 ] . old . event _id
} else {
// Everything is being deleted. Whatever gets sent in their place will be the new part = 0.
promoteNextEvent = true
}
}
2023-08-15 05:20:31 +00:00
// Now, everything in eventsToSend and eventsToRedact is a real change, but everything in eventsToReplace might not have actually changed!
2023-08-17 04:41:28 +00:00
// (Example: a MESSAGE_UPDATE for a text+image message - Discord does not allow the image to be changed, but the text might have been.)
2023-08-16 05:03:05 +00:00
// So we'll remove entries from eventsToReplace that *definitely* cannot have changed. (This is category 4 mentioned above.) Everything remaining *may* have changed.
2023-08-15 05:20:31 +00:00
eventsToReplace = eventsToReplace . filter ( ev => {
// Discord does not allow files, images, attachments, or videos to be edited.
2023-10-13 08:32:42 +00:00
if ( ev . old . event _type === "m.room.message" && ev . old . event _subtype !== "m.text" && ev . old . event _subtype !== "m.emote" && ev . old . event _subtype !== "m.notice" ) {
2023-08-15 05:20:31 +00:00
return false
}
// Discord does not allow stickers to be edited.
if ( ev . old . event _type === "m.sticker" ) {
return false
}
// Anything else is fair game.
return true
} )
2023-08-16 05:03:05 +00:00
// Removing unnecessary properties before returning
eventsToRedact = eventsToRedact . map ( e => e . event _id )
2023-08-17 04:41:28 +00:00
eventsToReplace = eventsToReplace . map ( e => ( { oldID : e . old . event _id , newContent : makeReplacementEventContent ( e . old . event _id , e . newFallbackContent , e . newInnerContent ) } ) )
2023-08-16 05:03:05 +00:00
2023-10-06 03:50:23 +00:00
return { roomID , eventsToReplace , eventsToRedact , eventsToSend , senderMxid , promoteEvent , promoteNextEvent }
2023-08-15 05:20:31 +00:00
}
2023-08-16 05:03:05 +00:00
/ * *
* @ template T
* @ param { string } oldID
2023-08-16 08:44:38 +00:00
* @ param { T } newFallbackContent
* @ param { T } newInnerContent
2023-08-16 05:03:05 +00:00
* @ returns { import ( "../../types" ) . Event . ReplacementContent < T > } content
* /
2023-08-17 04:41:28 +00:00
function makeReplacementEventContent ( oldID , newFallbackContent , newInnerContent ) {
2023-08-16 08:44:38 +00:00
const content = {
... newFallbackContent ,
2023-08-16 05:03:05 +00:00
"m.mentions" : { } ,
"m.new_content" : {
2023-08-16 08:44:38 +00:00
... newInnerContent
2023-08-16 05:03:05 +00:00
} ,
"m.relates_to" : {
rel _type : "m.replace" ,
event _id : oldID
}
}
2023-08-16 08:44:38 +00:00
delete content [ "m.new_content" ] [ "$type" ]
2023-08-16 05:03:05 +00:00
// Client-Server API spec 11.37.3: Any m.relates_to property within m.new_content is ignored.
2023-08-16 08:44:38 +00:00
delete content [ "m.new_content" ] [ "m.relates_to" ]
return content
2023-08-16 05:03:05 +00:00
}
module . exports . editToChanges = editToChanges
2023-08-17 04:41:28 +00:00
module . exports . makeReplacementEventContent = makeReplacementEventContent