cheat a bit by using random id for follows
This commit is contained in:
parent
497c9c15e7
commit
3702ab34ef
|
@ -983,11 +983,10 @@ func dumpactivity(item junk.Junk) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func rubadubdub(user *WhatAbout, req junk.Junk) {
|
func rubadubdub(user *WhatAbout, req junk.Junk) {
|
||||||
xid, _ := req.GetString("id")
|
|
||||||
actor, _ := req.GetString("actor")
|
actor, _ := req.GetString("actor")
|
||||||
j := junk.New()
|
j := junk.New()
|
||||||
j["@context"] = itiswhatitis
|
j["@context"] = itiswhatitis
|
||||||
j["id"] = user.URL + "/dub/" + url.QueryEscape(xid)
|
j["id"] = user.URL + "/dub/" + xfiltrate()
|
||||||
j["type"] = "Accept"
|
j["type"] = "Accept"
|
||||||
j["actor"] = user.URL
|
j["actor"] = user.URL
|
||||||
j["to"] = actor
|
j["to"] = actor
|
||||||
|
@ -1005,7 +1004,7 @@ func itakeitallback(user *WhatAbout, xid string) {
|
||||||
j["actor"] = user.URL
|
j["actor"] = user.URL
|
||||||
j["to"] = xid
|
j["to"] = xid
|
||||||
f := junk.New()
|
f := junk.New()
|
||||||
f["id"] = user.URL + "/sub/" + url.QueryEscape(xid)
|
f["id"] = user.URL + "/sub/" + xfiltrate()
|
||||||
f["type"] = "Follow"
|
f["type"] = "Follow"
|
||||||
f["actor"] = user.URL
|
f["actor"] = user.URL
|
||||||
f["to"] = xid
|
f["to"] = xid
|
||||||
|
@ -1023,7 +1022,7 @@ func subsub(user *WhatAbout, xid string, owner string) {
|
||||||
}
|
}
|
||||||
j := junk.New()
|
j := junk.New()
|
||||||
j["@context"] = itiswhatitis
|
j["@context"] = itiswhatitis
|
||||||
j["id"] = user.URL + "/sub/" + url.QueryEscape(xid)
|
j["id"] = user.URL + "/sub/" + xfiltrate()
|
||||||
j["type"] = "Follow"
|
j["type"] = "Follow"
|
||||||
j["actor"] = user.URL
|
j["actor"] = user.URL
|
||||||
j["to"] = owner
|
j["to"] = owner
|
||||||
|
|
Loading…
Reference in New Issue