gomuks/ui/messages/html/parser.go

421 lines
11 KiB
Go
Raw Normal View History

2018-04-13 23:34:25 +02:00
// gomuks - A terminal Matrix client written in Go.
2019-01-17 13:13:25 +01:00
// Copyright (C) 2019 Tulir Asokan
2018-04-13 23:34:25 +02:00
//
// This program is free software: you can redistribute it and/or modify
2019-01-17 13:13:25 +01:00
// it under the terms of the GNU Affero General Public License as published by
2018-04-13 23:34:25 +02:00
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2019-01-17 13:13:25 +01:00
// GNU Affero General Public License for more details.
2018-04-13 23:34:25 +02:00
//
2019-01-17 13:13:25 +01:00
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
2018-04-13 23:34:25 +02:00
2019-04-09 17:42:49 +02:00
package html
2018-04-13 23:34:25 +02:00
import (
"regexp"
2019-01-17 13:13:25 +01:00
"strconv"
2018-04-13 23:34:25 +02:00
"strings"
2019-04-07 19:13:23 +02:00
"github.com/alecthomas/chroma"
"github.com/alecthomas/chroma/lexers"
"github.com/alecthomas/chroma/styles"
"github.com/lucasb-eyer/go-colorful"
2018-06-01 23:44:21 +02:00
"golang.org/x/net/html"
2019-01-17 13:13:25 +01:00
"maunium.net/go/gomuks/matrix/event"
2019-01-17 13:13:25 +01:00
"maunium.net/go/mautrix"
"maunium.net/go/tcell"
"maunium.net/go/gomuks/matrix/rooms"
"maunium.net/go/gomuks/ui/widget"
2018-04-13 23:34:25 +02:00
)
var matrixToURL = regexp.MustCompile("^(?:https?://)?(?:www\\.)?matrix\\.to/#/([#@!].*)")
2018-04-13 23:34:25 +02:00
2018-05-31 15:59:40 +02:00
type htmlParser struct {
room *rooms.Room
keepLinebreak bool
2018-05-31 15:59:40 +02:00
}
func AdjustStyleBold(style tcell.Style) tcell.Style {
2018-05-31 15:59:40 +02:00
return style.Bold(true)
}
func AdjustStyleItalic(style tcell.Style) tcell.Style {
2018-05-31 15:59:40 +02:00
return style.Italic(true)
}
func AdjustStyleUnderline(style tcell.Style) tcell.Style {
2018-05-31 15:59:40 +02:00
return style.Underline(true)
}
func AdjustStyleStrikethrough(style tcell.Style) tcell.Style {
2018-05-31 15:59:40 +02:00
return style.Strikethrough(true)
2018-04-13 23:34:25 +02:00
}
2019-03-26 21:09:10 +01:00
func AdjustStyleTextColor(color tcell.Color) func(tcell.Style) tcell.Style {
return func(style tcell.Style) tcell.Style {
return style.Foreground(color)
}
}
2019-03-26 21:09:10 +01:00
func AdjustStyleBackgroundColor(color tcell.Color) func(tcell.Style) tcell.Style {
return func(style tcell.Style) tcell.Style {
return style.Background(color)
}
}
2018-06-01 23:28:21 +02:00
func (parser *htmlParser) getAttribute(node *html.Node, attribute string) string {
for _, attr := range node.Attr {
if attr.Key == attribute {
return attr.Val
}
}
return ""
}
2019-04-09 17:42:49 +02:00
func (parser *htmlParser) listToEntity(node *html.Node) Entity {
children := parser.nodeToEntities(node.FirstChild)
2018-05-31 15:59:40 +02:00
ordered := node.Data == "ol"
start := 1
2018-05-31 15:59:40 +02:00
if ordered {
if startRaw := parser.getAttribute(node, "start"); len(startRaw) > 0 {
var err error
start, err = strconv.Atoi(startRaw)
if err != nil {
start = 1
}
2018-06-01 23:28:21 +02:00
}
}
listItems := children[:0]
for _, child := range children {
if child.GetTag() == "li" {
listItems = append(listItems, child)
2018-05-31 15:59:40 +02:00
}
2019-04-07 02:22:51 +02:00
}
2019-04-09 17:42:49 +02:00
return NewListEntity(ordered, start, listItems)
2018-04-13 23:34:25 +02:00
}
2019-04-09 17:42:49 +02:00
func (parser *htmlParser) basicFormatToEntity(node *html.Node) Entity {
entity := &ContainerEntity{
BaseEntity: &BaseEntity{
Tag: node.Data,
},
Children: parser.nodeToEntities(node.FirstChild),
2019-04-07 02:22:51 +02:00
}
2018-05-31 15:59:40 +02:00
switch node.Data {
case "b", "strong":
2019-04-07 02:22:51 +02:00
entity.AdjustStyle(AdjustStyleBold)
2018-05-31 15:59:40 +02:00
case "i", "em":
2019-04-07 02:22:51 +02:00
entity.AdjustStyle(AdjustStyleItalic)
case "s", "del", "strike":
2019-04-07 02:22:51 +02:00
entity.AdjustStyle(AdjustStyleStrikethrough)
2018-05-31 15:59:40 +02:00
case "u", "ins":
2019-04-07 02:22:51 +02:00
entity.AdjustStyle(AdjustStyleUnderline)
case "font":
fgColor, ok := parser.parseColor(node, "data-mx-color", "color")
if ok {
entity.AdjustStyle(AdjustStyleTextColor(fgColor))
}
bgColor, ok := parser.parseColor(node, "data-mx-bg-color", "background-color")
if ok {
entity.AdjustStyle(AdjustStyleBackgroundColor(bgColor))
}
}
2019-04-07 02:22:51 +02:00
return entity
}
2019-03-26 21:09:10 +01:00
func (parser *htmlParser) parseColor(node *html.Node, mainName, altName string) (color tcell.Color, ok bool) {
hex := parser.getAttribute(node, mainName)
if len(hex) == 0 {
2019-03-26 21:09:10 +01:00
hex = parser.getAttribute(node, altName)
if len(hex) == 0 {
2019-03-26 21:09:10 +01:00
return
}
}
2019-03-26 21:09:10 +01:00
cful, err := colorful.Hex(hex)
if err != nil {
2019-04-09 17:42:49 +02:00
color2, found := colorMap[strings.ToLower(hex)]
2019-03-26 21:09:10 +01:00
if !found {
return
}
2019-03-26 21:09:10 +01:00
cful, _ = colorful.MakeColor(color2)
}
2019-03-26 21:09:10 +01:00
r, g, b := cful.RGB255()
return tcell.NewRGBColor(int32(r), int32(g), int32(b)), true
}
2019-04-09 17:42:49 +02:00
func (parser *htmlParser) headerToEntity(node *html.Node) Entity {
return (&ContainerEntity{
BaseEntity: &BaseEntity{
Tag: node.Data,
},
Children: append(
[]Entity{NewTextEntity(strings.Repeat("#", int(node.Data[1]-'0')) + " ")},
parser.nodeToEntities(node.FirstChild)...
),
2019-04-07 02:22:51 +02:00
}).AdjustStyle(AdjustStyleBold)
2018-05-31 15:59:40 +02:00
}
2019-04-09 17:42:49 +02:00
func (parser *htmlParser) blockquoteToEntity(node *html.Node) Entity {
return NewBlockquoteEntity(parser.nodeToEntities(node.FirstChild))
2018-05-31 15:59:40 +02:00
}
2019-04-14 23:34:48 +02:00
func (parser *htmlParser) linkToEntity(node *html.Node) Entity {
entity := &ContainerEntity{
BaseEntity: &BaseEntity{
Tag: "a",
},
Children: parser.nodeToEntities(node.FirstChild),
2019-04-07 02:22:51 +02:00
}
2018-06-01 23:28:21 +02:00
href := parser.getAttribute(node, "href")
2018-05-31 15:59:40 +02:00
if len(href) == 0 {
2019-04-14 23:34:48 +02:00
return entity
2018-05-31 15:59:40 +02:00
}
match := matrixToURL.FindStringSubmatch(href)
if len(match) == 2 {
pillTarget := match[1]
2019-04-14 23:34:48 +02:00
text := NewTextEntity(pillTarget)
2018-05-31 15:59:40 +02:00
if pillTarget[0] == '@' {
if member := parser.room.GetMember(pillTarget); member != nil {
2019-04-14 23:34:48 +02:00
text.Text = member.Displayname
text.Style = text.Style.Foreground(widget.GetHashColor(pillTarget))
2018-05-31 15:59:40 +02:00
}
2019-04-14 23:34:48 +02:00
entity.Children = []Entity{text}
/*} else if slash := strings.IndexRune(pillTarget, '/'); slash != -1 {
room := pillTarget[:slash]
event := pillTarget[slash+1:]*/
} else if pillTarget[0] == '#' {
entity.Children = []Entity{text}
2018-05-31 15:59:40 +02:00
}
}
2019-04-07 19:13:23 +02:00
// TODO add click action and underline on hover for links
2019-04-14 23:34:48 +02:00
return entity
2018-04-13 23:34:25 +02:00
}
2019-04-09 17:42:49 +02:00
func (parser *htmlParser) imageToEntity(node *html.Node) Entity {
2019-04-07 19:13:23 +02:00
alt := parser.getAttribute(node, "alt")
if len(alt) == 0 {
alt = parser.getAttribute(node, "title")
if len(alt) == 0 {
alt = "[inline image]"
}
}
entity := &TextEntity{
BaseEntity: &BaseEntity{
Tag: "img",
},
2019-04-07 19:13:23 +02:00
Text: alt,
}
// TODO add click action and underline on hover for inline images
return entity
}
func colourToColor(colour chroma.Colour) tcell.Color {
if !colour.IsSet() {
return tcell.ColorDefault
}
return tcell.NewRGBColor(int32(colour.Red()), int32(colour.Green()), int32(colour.Blue()))
}
func styleEntryToStyle(se chroma.StyleEntry) tcell.Style {
return tcell.StyleDefault.
Bold(se.Bold == chroma.Yes).
Italic(se.Italic == chroma.Yes).
Underline(se.Underline == chroma.Yes).
Foreground(colourToColor(se.Colour)).
Background(colourToColor(se.Background))
}
2019-04-09 17:42:49 +02:00
func (parser *htmlParser) syntaxHighlight(text, language string) Entity {
lexer := lexers.Get(strings.ToLower(language))
2019-04-07 19:13:23 +02:00
if lexer == nil {
return nil
}
iter, err := lexer.Tokenise(nil, text)
if err != nil {
return nil
}
// TODO allow changing theme
2019-04-07 19:13:23 +02:00
style := styles.SolarizedDark
2019-04-07 19:13:23 +02:00
tokens := iter.Tokens()
2019-04-09 17:42:49 +02:00
children := make([]Entity, len(tokens))
2019-04-07 19:13:23 +02:00
for i, token := range tokens {
if token.Value == "\n" {
children[i] = NewBreakEntity()
2019-04-07 19:13:23 +02:00
} else {
children[i] = &TextEntity{
BaseEntity: &BaseEntity{
Tag: token.Type.String(),
Style: styleEntryToStyle(style.Get(token.Type)),
DefaultHeight: 1,
},
Text: token.Value,
2019-04-07 19:13:23 +02:00
}
}
}
2019-04-09 17:42:49 +02:00
return NewCodeBlockEntity(children, styleEntryToStyle(style.Get(chroma.Background)))
2019-04-07 19:13:23 +02:00
}
2019-04-09 17:42:49 +02:00
func (parser *htmlParser) codeblockToEntity(node *html.Node) Entity {
lang := "plaintext"
2019-04-07 19:13:23 +02:00
// TODO allow disabling syntax highlighting
if node.FirstChild.Type == html.ElementNode && node.FirstChild.Data == "code" {
node = node.FirstChild
attr := parser.getAttribute(node, "class")
2019-04-07 19:13:23 +02:00
for _, class := range strings.Split(attr, " ") {
if strings.HasPrefix(class, "language-") {
lang = class[len("language-"):]
break
}
}
2019-04-07 02:22:51 +02:00
}
parser.keepLinebreak = true
text := (&ContainerEntity{
Children: parser.nodeToEntities(node.FirstChild),
}).PlainText()
parser.keepLinebreak = false
return parser.syntaxHighlight(text, lang)
2019-04-07 02:22:51 +02:00
}
2019-04-09 17:42:49 +02:00
func (parser *htmlParser) tagNodeToEntity(node *html.Node) Entity {
2018-05-31 15:59:40 +02:00
switch node.Data {
case "blockquote":
return parser.blockquoteToEntity(node)
2018-05-31 15:59:40 +02:00
case "ol", "ul":
return parser.listToEntity(node)
case "h1", "h2", "h3", "h4", "h5", "h6":
return parser.headerToEntity(node)
2018-05-31 15:59:40 +02:00
case "br":
2019-04-09 17:42:49 +02:00
return NewBreakEntity()
case "b", "strong", "i", "em", "s", "strike", "del", "u", "ins", "font":
return parser.basicFormatToEntity(node)
case "a":
return parser.linkToEntity(node)
2019-04-07 19:13:23 +02:00
case "img":
return parser.imageToEntity(node)
2018-05-31 15:59:40 +02:00
case "pre":
2019-04-07 02:22:51 +02:00
return parser.codeblockToEntity(node)
case "hr":
return NewHorizontalLineEntity()
case "mx-reply":
return nil
2018-05-31 15:59:40 +02:00
default:
return &ContainerEntity{
BaseEntity: &BaseEntity{
Tag: node.Data,
Block: parser.isBlockTag(node.Data),
},
Children: parser.nodeToEntities(node.FirstChild),
2019-04-07 02:22:51 +02:00
}
}
2018-04-13 23:34:25 +02:00
}
2019-04-09 17:42:49 +02:00
func (parser *htmlParser) singleNodeToEntity(node *html.Node) Entity {
2018-05-31 15:59:40 +02:00
switch node.Type {
case html.TextNode:
if !parser.keepLinebreak {
2019-05-12 16:34:47 +02:00
node.Data = strings.Replace(node.Data, "\n", "", -1)
2018-05-31 15:59:40 +02:00
}
2019-04-10 16:08:39 +02:00
if len(node.Data) == 0 {
return nil
}
return NewTextEntity(node.Data)
2018-05-31 15:59:40 +02:00
case html.ElementNode:
return parser.tagNodeToEntity(node)
2018-05-31 15:59:40 +02:00
case html.DocumentNode:
2019-04-07 17:21:38 +02:00
if node.FirstChild.Data == "html" && node.FirstChild.NextSibling == nil {
return parser.singleNodeToEntity(node.FirstChild)
2019-04-07 17:21:38 +02:00
}
return &ContainerEntity{
BaseEntity: &BaseEntity{
Tag: "html",
Block: true,
},
Children: parser.nodeToEntities(node.FirstChild),
2019-04-07 02:22:51 +02:00
}
2018-05-31 15:59:40 +02:00
default:
2019-04-07 02:22:51 +02:00
return nil
}
2018-04-13 23:34:25 +02:00
}
2019-04-09 17:42:49 +02:00
func (parser *htmlParser) nodeToEntities(node *html.Node) (entities []Entity) {
2018-05-31 15:59:40 +02:00
for ; node != nil; node = node.NextSibling {
if entity := parser.singleNodeToEntity(node); entity != nil {
2019-04-07 02:22:51 +02:00
entities = append(entities, entity)
}
}
2018-05-31 15:59:40 +02:00
return
}
var BlockTags = []string{"p", "h1", "h2", "h3", "h4", "h5", "h6", "ol", "ul", "li", "pre", "blockquote", "div", "hr", "table"}
2018-05-31 15:59:40 +02:00
func (parser *htmlParser) isBlockTag(tag string) bool {
for _, blockTag := range BlockTags {
if tag == blockTag {
return true
}
2018-05-31 15:59:40 +02:00
}
return false
}
2019-04-09 17:42:49 +02:00
func (parser *htmlParser) Parse(htmlData string) Entity {
2018-05-31 15:59:40 +02:00
node, _ := html.Parse(strings.NewReader(htmlData))
2019-04-10 16:08:39 +02:00
bodyNode := node.FirstChild.FirstChild
for bodyNode != nil && (bodyNode.Type != html.ElementNode || bodyNode.Data != "body") {
bodyNode = bodyNode.NextSibling
}
if bodyNode != nil {
return parser.singleNodeToEntity(bodyNode)
}
return parser.singleNodeToEntity(node)
2018-04-13 23:34:25 +02:00
}
2019-04-09 17:42:49 +02:00
const TabLength = 4
// Parse parses a HTML-formatted Matrix event into a UIMessage.
func Parse(room *rooms.Room, evt *event.Event, senderDisplayname string) Entity {
htmlData := evt.Content.FormattedBody
2019-04-09 17:42:49 +02:00
if evt.Content.Format != mautrix.FormatHTML {
2019-05-12 16:34:47 +02:00
htmlData = strings.Replace(html.EscapeString(evt.Content.Body), "\n", "<br/>", -1)
2019-04-09 17:42:49 +02:00
}
htmlData = strings.Replace(htmlData, "\t", strings.Repeat(" ", TabLength), -1)
2018-04-13 23:34:25 +02:00
parser := htmlParser{room: room}
2019-04-07 02:22:51 +02:00
root := parser.Parse(htmlData)
beRoot := root.(*ContainerEntity)
2019-04-10 16:08:39 +02:00
beRoot.Block = false
if len(beRoot.Children) > 0 {
beChild, ok := beRoot.Children[0].(*ContainerEntity)
2019-04-10 16:08:39 +02:00
if ok && beChild.Tag == "p" {
// Hacky fix for m.emote
beChild.Block = false
}
}
2018-04-13 23:34:25 +02:00
2018-11-13 23:00:35 +01:00
if evt.Content.MsgType == mautrix.MsgEmote {
root = &ContainerEntity{
BaseEntity: &BaseEntity{
Tag: "emote",
},
2019-04-09 17:42:49 +02:00
Children: []Entity{
NewTextEntity("* "),
NewTextEntity(senderDisplayname).AdjustStyle(AdjustStyleTextColor(widget.GetHashColor(evt.Sender))),
NewTextEntity(" "),
2019-04-07 02:22:51 +02:00
root,
},
}
2018-05-31 15:59:40 +02:00
}
2019-04-07 02:22:51 +02:00
return root
2018-04-13 23:34:25 +02:00
}