grotesque workaround for friendica style repeats
This commit is contained in:
parent
07b041fc26
commit
25c46f5839
30
activity.go
30
activity.go
|
@ -26,6 +26,7 @@ import (
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
|
"regexp"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
@ -555,10 +556,39 @@ func xonksaver(user *WhatAbout, item junk.Junk, origin string) *Honk {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if obj != nil {
|
||||||
|
_, ok := obj.GetString("diaspora:guid")
|
||||||
|
if ok {
|
||||||
|
// frienda does the silliest bonks
|
||||||
|
c, ok := item.FindString([]string{"source", "content"})
|
||||||
|
if ok {
|
||||||
|
re_link := regexp.MustCompile(`link='([^']*)'`)
|
||||||
|
m := re_link.FindStringSubmatch(c)
|
||||||
|
if len(m) > 1 {
|
||||||
|
xid := m[1]
|
||||||
|
log.Printf("getting friendica flavored bonk: %s", xid)
|
||||||
|
if !needxonkid(user, xid) {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
newobj, err := GetJunkHardMode(xid)
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("error getting bonk: %s: %s", xid, err)
|
||||||
|
} else {
|
||||||
|
obj = newobj
|
||||||
|
origin = originate(xid)
|
||||||
|
what = "bonk"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
var xonk Honk
|
var xonk Honk
|
||||||
// early init
|
// early init
|
||||||
xonk.UserID = user.ID
|
xonk.UserID = user.ID
|
||||||
xonk.Honker, _ = item.GetString("actor")
|
xonk.Honker, _ = item.GetString("actor")
|
||||||
|
if xonk.Honker == "" {
|
||||||
|
xonk.Honker, _ = item.GetString("attributedTo")
|
||||||
|
}
|
||||||
if obj != nil {
|
if obj != nil {
|
||||||
if xonk.Honker == "" {
|
if xonk.Honker == "" {
|
||||||
xonk.Honker = extractattrto(obj)
|
xonk.Honker = extractattrto(obj)
|
||||||
|
|
Loading…
Reference in New Issue