diff options
author | Wim <wim@42.be> | 2022-02-06 20:58:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-06 20:58:13 +0100 |
commit | 7288f71201b648a7e2fc6e7b32f3c043604b70f6 (patch) | |
tree | 1996395c9599e59a8a87b50e6a3d998146b0b24e /bridge | |
parent | 9c43eff753ec4976f1bd879732915e29c933c5b9 (diff) | |
download | matterbridge-msglm-7288f71201b648a7e2fc6e7b32f3c043604b70f6.tar.gz matterbridge-msglm-7288f71201b648a7e2fc6e7b32f3c043604b70f6.tar.bz2 matterbridge-msglm-7288f71201b648a7e2fc6e7b32f3c043604b70f6.zip |
Make HTMLDisable work correct (matrix) (#1716)
Diffstat (limited to 'bridge')
-rw-r--r-- | bridge/matrix/matrix.go | 91 |
1 files changed, 60 insertions, 31 deletions
diff --git a/bridge/matrix/matrix.go b/bridge/matrix/matrix.go index 739a7923..706ae302 100644 --- a/bridge/matrix/matrix.go +++ b/bridge/matrix/matrix.go @@ -48,8 +48,10 @@ type matrixUsername struct { // SubTextMessage represents the new content of the message in edit messages. type SubTextMessage struct { - MsgType string `json:"msgtype"` - Body string `json:"body"` + MsgType string `json:"msgtype"` + Body string `json:"body"` + FormattedBody string `json:"formatted_body,omitempty"` + Format string `json:"format,omitempty"` } // MessageRelation explains how the current message relates to a previous message. @@ -151,7 +153,13 @@ func (b *Bmatrix) Send(msg config.Message) (string, error) { m := matrix.TextMessage{ MsgType: "m.emote", Body: username.plain + msg.Text, - FormattedBody: username.formatted + msg.Text, + FormattedBody: username.formatted + helper.ParseMarkdown(msg.Text), + Format: "org.matrix.custom.html", + } + + if b.GetBool("HTMLDisable") { + m.Format = "" + m.FormattedBody = "" } msgID := "" @@ -214,20 +222,29 @@ func (b *Bmatrix) Send(msg config.Message) (string, error) { // Edit message if we have an ID if msg.ID != "" { - rmsg := EditedMessage{TextMessage: matrix.TextMessage{ - Body: username.plain + msg.Text, - MsgType: "m.text", - }} - if b.GetBool("HTMLDisable") { - rmsg.TextMessage.FormattedBody = username.formatted + "* " + msg.Text - } else { - rmsg.Format = "org.matrix.custom.html" - rmsg.TextMessage.FormattedBody = username.formatted + "* " + helper.ParseMarkdown(msg.Text) + rmsg := EditedMessage{ + TextMessage: matrix.TextMessage{ + Body: username.plain + msg.Text, + MsgType: "m.text", + Format: "org.matrix.custom.html", + FormattedBody: username.formatted + helper.ParseMarkdown(msg.Text), + }, } + rmsg.NewContent = SubTextMessage{ - Body: rmsg.TextMessage.Body, - MsgType: "m.text", + Body: rmsg.TextMessage.Body, + FormattedBody: rmsg.TextMessage.FormattedBody, + Format: rmsg.TextMessage.Format, + MsgType: "m.text", + } + + if b.GetBool("HTMLDisable") { + rmsg.TextMessage.Format = "" + rmsg.TextMessage.FormattedBody = "" + rmsg.NewContent.Format = "" + rmsg.NewContent.FormattedBody = "" } + rmsg.RelatedTo = MessageRelation{ EventID: msg.ID, Type: "m.replace", @@ -251,33 +268,21 @@ func (b *Bmatrix) Send(msg config.Message) (string, error) { MsgType: "m.notice", Body: username.plain + msg.Text, FormattedBody: username.formatted + msg.Text, + Format: "org.matrix.custom.html", } - var ( - resp *matrix.RespSendEvent - err error - ) - - err = b.retry(func() error { - resp, err = b.mc.SendMessageEvent(channel, "m.room.message", m) - - return err - }) - if err != nil { - return "", err + if b.GetBool("HTMLDisable") { + m.Format = "" + m.FormattedBody = "" } - return resp.EventID, err - } - - if b.GetBool("HTMLDisable") { var ( resp *matrix.RespSendEvent err error ) err = b.retry(func() error { - resp, err = b.mc.SendText(channel, username.plain+msg.Text) + resp, err = b.mc.SendMessageEvent(channel, "m.room.message", m) return err }) @@ -294,9 +299,15 @@ func (b *Bmatrix) Send(msg config.Message) (string, error) { MsgType: "m.text", Body: username.plain + msg.Text, FormattedBody: username.formatted + helper.ParseMarkdown(msg.Text), + Format: "org.matrix.custom.html", }, } + if b.GetBool("HTMLDisable") { + m.TextMessage.Format = "" + m.TextMessage.FormattedBody = "" + } + m.RelatedTo = InReplyToRelation{ InReplyTo: InReplyToRelationContent{ EventID: msg.ParentID, @@ -320,6 +331,24 @@ func (b *Bmatrix) Send(msg config.Message) (string, error) { return resp.EventID, err } + if b.GetBool("HTMLDisable") { + var ( + resp *matrix.RespSendEvent + err error + ) + + err = b.retry(func() error { + resp, err = b.mc.SendText(channel, username.plain+msg.Text) + + return err + }) + if err != nil { + return "", err + } + + return resp.EventID, err + } + // Post normal message with HTML support (eg riot.im) var ( resp *matrix.RespSendEvent |