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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
package views
import (
"net/url"
"git.capotej.com/capotej/communique/models"
"git.capotej.com/capotej/communique/urls"
"github.com/go-fed/activity/streams"
)
// RenderOutboxCollection takes a page of ActivityStream objects as JSON strings and concatenates them together to return an
// ActivtyStreamsOrderedCollection
func RenderOutboxCollection(name, domain string, page []models.OutboxItem) (map[string]interface{}, error) {
id, err := urls.UrlOutboxPage(name, domain)
if err != nil {
return nil, err
}
partOf, err := urls.UrlOutbox(name, domain)
if err != nil {
return nil, err
}
publicUrl, err := url.Parse("https://www.w3.org/ns/activitystreams#Public")
if err != nil {
return nil, err
}
toProp := streams.NewActivityStreamsToProperty()
toProp.AppendIRI(publicUrl)
oc := streams.NewActivityStreamsOrderedCollectionPage()
idProp := streams.NewJSONLDIdProperty()
idProp.Set(id)
oc.SetJSONLDId(idProp)
partOfProp := streams.NewActivityStreamsPartOfProperty()
partOfProp.SetIRI(partOf)
oc.SetActivityStreamsPartOf(partOfProp)
itemsProp := streams.NewActivityStreamsOrderedItemsProperty()
for _, v := range page {
publishedProp := streams.NewActivityStreamsPublishedProperty()
publishedProp.Set(v.CreatedAt)
crea := streams.NewActivityStreamsCreate()
obj := streams.NewActivityStreamsObjectProperty()
creaIdProp := streams.NewJSONLDIdProperty()
activityUrl, err := urls.UrlActivity(name, domain, string(v.Id))
if err != nil {
return nil, err
}
creaIdProp.Set(activityUrl)
crea.SetJSONLDId(creaIdProp)
crea.SetActivityStreamsObject(obj)
crea.SetActivityStreamsTo(toProp)
crea.SetActivityStreamsPublished(publishedProp)
actorUrl, err := urls.UrlProfile(name, domain)
if err != nil {
return nil, err
}
actorProp := streams.NewActivityStreamsActorProperty()
actorProp.AppendIRI(actorUrl)
crea.SetActivityStreamsActor(actorProp)
noteUrl, err := urls.UrlNote(name, domain, string(v.Id))
if err != nil {
return nil, err
}
note := streams.NewActivityStreamsNote()
noteIdProp := streams.NewJSONLDIdProperty()
noteIdProp.Set(noteUrl)
note.SetJSONLDId(noteIdProp)
contentProp := streams.NewActivityStreamsContentProperty()
contentProp.AppendXMLSchemaString(string(v.Content))
note.SetActivityStreamsContent(contentProp)
note.SetActivityStreamsTo(toProp)
note.SetActivityStreamsPublished(publishedProp)
obj.AppendActivityStreamsNote(note)
itemsProp.AppendActivityStreamsCreate(crea)
}
oc.SetActivityStreamsOrderedItems(itemsProp)
return streams.Serialize(oc)
}
func RenderOutbox(name, domain string, totalItems int) (map[string]interface{}, error) {
id, err := urls.UrlOutbox(name, domain)
if err != nil {
return nil, err
}
first, err := urls.UrlOutboxPage(name, domain)
if err != nil {
return nil, err
}
oc := streams.NewActivityStreamsOrderedCollection()
idProp := streams.NewJSONLDIdProperty()
idProp.Set(id)
oc.SetJSONLDId(idProp)
itemsProp := streams.NewActivityStreamsTotalItemsProperty()
itemsProp.Set(totalItems)
oc.SetActivityStreamsTotalItems(itemsProp)
ocProp := streams.NewActivityStreamsFirstProperty()
ocProp.SetIRI(first)
oc.SetActivityStreamsFirst(ocProp)
return streams.Serialize(oc)
}
|