Fix text to HTML conversion

pull/51/head
Tulir Asokan 2024-04-05 19:51:15 +03:00
parent 7525d06ede
commit 9af0d73bee
2 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,6 @@ package main
import (
"fmt"
"html"
"io/ioutil"
"net/http"
"path"
@ -87,7 +86,7 @@ func (portal *Portal) mrkdwnToMatrixHtml(mrkdwn string) string {
func (portal *Portal) renderSlackTextBlock(block slack.TextBlockObject) string {
if block.Type == slack.PlainTextType {
return html.EscapeString(html.UnescapeString(block.Text))
return event.TextToHTML(block.Text)
} else if block.Type == slack.MarkdownType {
return portal.mrkdwnToMatrixHtml(block.Text)
} else {
@ -114,7 +113,7 @@ func (portal *Portal) renderRichTextSectionElements(elements []slack.RichTextSec
htmlText.WriteString("<code>")
}
}
htmlText.WriteString(html.EscapeString(html.UnescapeString(e.Text)))
htmlText.WriteString(event.TextToHTML(e.Text))
if e.Style != nil {
if e.Style.Code {
htmlText.WriteString("</code>")
@ -153,7 +152,7 @@ func (portal *Portal) renderRichTextSectionElements(elements []slack.RichTextSec
} else {
linkText = e.URL
}
htmlText.WriteString(fmt.Sprintf(`<a href="%s">%s</a>`, e.URL, html.EscapeString(html.UnescapeString(linkText))))
htmlText.WriteString(fmt.Sprintf(`<a href="%s">%s</a>`, e.URL, event.TextToHTML(linkText)))
case *slack.RichTextSectionBroadcastElement:
htmlText.WriteString("@room")
case *slack.RichTextSectionEmojiElement:

View File

@ -435,6 +435,7 @@ func (user *User) slackMessageHandler(userTeam *database.UserTeam) {
case *slack.LatencyReport:
user.log.Debugln("latency report:", event.Value)
case *slack.MessageEvent:
user.bridge.ZLog.Trace().Any("event_content", event).Msg("Raw slack message event")
key := database.NewPortalKey(userTeam.Key.TeamID, event.Channel)
portal := user.bridge.GetPortalByID(key)
if portal != nil {