blob: 9adb8175c2eb38facc6a73dd7e2926ac8565e2cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
package resources
import (
"fmt"
"net/url"
"path"
"github.com/go-fed/activity/streams"
)
func RenderOutbox(name, domain string) (map[string]interface{}, error) {
first, err := url.Parse(path.Join("https://", domain, "actors", name, "outbox", "?=page=true"))
if err != nil {
return nil, fmt.Errorf("could not partse url: %w", err)
}
oc := streams.NewActivityStreamsOrderedCollection()
ocProp := streams.NewActivityStreamsFirstProperty()
ocProp.SetIRI(first)
oc.SetActivityStreamsFirst(ocProp)
return oc.Serialize()
}
|