blob: 23b28446c22ec8a69cd746a7daa06b8e96807f60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package resources
import (
"net/url"
"path"
"github.com/go-fed/activity/streams"
)
func RenderProfile(name, domain string) (map[string]interface{}, error) {
u, err := url.Parse(path.Join("https://", domain, "actors", name, "inbox"))
if err != nil {
panic(err)
}
inb := streams.NewActivityStreamsInboxProperty()
inb.SetIRI(u)
p := streams.NewActivityStreamsService()
p.SetActivityStreamsInbox(inb)
return p.Serialize()
}
|