all repos — honk @ 7d74b2c01be0a603994d5b1c43ce4f2db479b30f

my fork of honk

fix inline imgs so they don't lose the donks
Ted Unangst tedu@tedunangst.com
Mon, 21 Oct 2019 23:12:43 -0400
commit

7d74b2c01be0a603994d5b1c43ce4f2db479b30f

parent

1d045629c87909e2cf087471e989cfc89f518bab

2 files changed, 33 insertions(+), 36 deletions(-)

jump to
M activity.goactivity.go

@@ -826,7 +826,7 @@ }

// grab any inline imgs imgfilt := htfilter.New() - imgfilt.Imager = inlineimgs + imgfilt.Imager = inlineimgsfor(&xonk) imgfilt.String(content) // init xonk
M fun.gofun.go

@@ -31,6 +31,7 @@ "golang.org/x/net/html"

"humungus.tedunangst.com/r/webs/cache" "humungus.tedunangst.com/r/webs/htfilter" "humungus.tedunangst.com/r/webs/httpsig" + "humungus.tedunangst.com/r/webs/templates" ) var allowedclasses = make(map[string]bool)

@@ -48,9 +49,6 @@ allowedclasses["dl"] = true

} func reverbolate(userid int64, honks []*Honk) { - filt := htfilter.New() - filt.Imager = replaceimg - filt.SpanClasses = allowedclasses for _, h := range honks { h.What += "ed" if h.What == "tonked" {

@@ -91,7 +89,11 @@ h.Precis = demoji(h.Precis)

h.Noise = demoji(h.Noise) h.Open = "open" + zap := make(map[string]bool) { + filt := htfilter.New() + filt.Imager = replaceimgsand(zap) + filt.SpanClasses = allowedclasses p, _ := filt.String(h.Precis) n, _ := filt.String(h.Noise) h.Precis = string(p)

@@ -115,11 +117,10 @@ }

h.Open = "" } - zap := make(map[*Donk]bool) emuxifier := func(e string) string { for _, d := range h.Donks { if d.Name == e { - zap[d] = true + zap[d.XID] = true if d.Local { return fmt.Sprintf(`<img class="emu" title="%s" src="/d/%s">`, d.Name, d.XID) }

@@ -132,7 +133,7 @@ h.Noise = re_emus.ReplaceAllStringFunc(h.Noise, emuxifier)

j := 0 for i := 0; i < len(h.Donks); i++ { - if !zap[h.Donks[i]] { + if !zap[h.Donks[i].XID] { h.Donks[j] = h.Donks[i] j++ }

@@ -144,40 +145,36 @@ h.HTML = template.HTML(h.Noise)

} } -func replaceimg(node *html.Node) string { - src := htfilter.GetAttr(node, "src") - alt := htfilter.GetAttr(node, "alt") - //title := GetAttr(node, "title") - if htfilter.HasClass(node, "Emoji") && alt != "" { - return alt +func replaceimgsand(zap map[string]bool) func(node *html.Node) string { + return func(node *html.Node) string { + src := htfilter.GetAttr(node, "src") + alt := htfilter.GetAttr(node, "alt") + //title := GetAttr(node, "title") + if htfilter.HasClass(node, "Emoji") && alt != "" { + return alt + } + d := finddonk(src) + if d != nil { + zap[d.XID] = true + return string(templates.Sprintf(`<img alt="%s" title="%s" src="/d/%s">`, alt, alt, d.XID)) + } + return string(templates.Sprintf(`&lt;img alt="%s" src="<a href="%s">%s<a>"&gt;`, alt, src, src)) } - alt = html.EscapeString(alt) - src = html.EscapeString(src) - d := finddonk(src) - if d != nil { - src = fmt.Sprintf("https://%s/d/%s", serverName, d.XID) - return fmt.Sprintf(`<img alt="%s" title="%s" src="%s">`, alt, alt, src) - } - return fmt.Sprintf(`&lt;img alt="%s" src="<a href="%s">%s<a>"&gt;`, alt, src, src) } -func inlineimgs(node *html.Node) string { - src := htfilter.GetAttr(node, "src") - alt := htfilter.GetAttr(node, "alt") - //title := GetAttr(node, "title") - if htfilter.HasClass(node, "Emoji") && alt != "" { - return alt - } - alt = html.EscapeString(alt) - src = html.EscapeString(src) - if !strings.HasPrefix(src, "https://"+serverName+"/") { - d := savedonk(src, "image", alt, "image", true) - if d != nil { - src = fmt.Sprintf("https://%s/d/%s", serverName, d.XID) +func inlineimgsfor(honk *Honk) func(node *html.Node) string { + return func(node *html.Node) string { + src := htfilter.GetAttr(node, "src") + alt := htfilter.GetAttr(node, "alt") + if !strings.HasPrefix(src, "https://"+serverName+"/") { + d := savedonk(src, "image", alt, "image", true) + if d != nil { + honk.Donks = append(honk.Donks, d) + } } + log.Printf("inline img with src: %s", src) + return "" } - log.Printf("inline img with src: %s", src) - return fmt.Sprintf(`<img alt="%s" title="%s" src="%s>`, alt, alt, src) } func translate(honk *Honk) {