diff options
author | Julio Capote <jcapote@gmail.com> | 2022-12-29 20:08:16 +0000 |
---|---|---|
committer | Julio Capote <jcapote@gmail.com> | 2022-12-29 20:08:16 +0000 |
commit | a4288b06bf13210721c8f2fae64bc12c118f9041 (patch) | |
tree | 49808a68d61aa450c6625477e468968fd3198ded /views/profile.go | |
parent | 5a990719a02f4fd33817a2188be17b3b50498b49 (diff) | |
download | communique-a4288b06bf13210721c8f2fae64bc12c118f9041.tar.gz |
refactor
Diffstat (limited to 'views/profile.go')
-rw-r--r-- | views/profile.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/views/profile.go b/views/profile.go new file mode 100644 index 0000000..12aae54 --- /dev/null +++ b/views/profile.go @@ -0,0 +1,21 @@ +package views + +import ( + "git.capotej.com/capotej/communique/urls" + "github.com/go-fed/activity/streams" +) + +func RenderProfile(name, domain string) (map[string]interface{}, error) { + u, err := urls.UrlInbox(name, domain) + if err != nil { + return nil, err + } + + inb := streams.NewActivityStreamsInboxProperty() + inb.SetIRI(u) + + p := streams.NewActivityStreamsService() + p.SetActivityStreamsInbox(inb) + + return streams.Serialize(p) +} |