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
|
package views
import (
"net/url"
"git.capotej.com/capotej/communique/models"
"git.capotej.com/capotej/communique/urls"
"github.com/go-fed/activity/streams"
"github.com/go-fed/activity/streams/vocab"
)
func activityObjectNote(name, domain string, v models.OutboxItem) (vocab.ActivityStreamsNote, error) {
var err error
note := streams.NewActivityStreamsNote()
noteUrl, err := urls.UrlNote(name, domain, string(v.Id))
if err != nil {
return nil, err
}
noteIdProp := streams.NewJSONLDIdProperty()
noteIdProp.Set(noteUrl)
note.SetJSONLDId(noteIdProp)
contentProp := streams.NewActivityStreamsContentProperty()
contentProp.AppendXMLSchemaString(string(v.Content))
note.SetActivityStreamsContent(contentProp)
actorUrl, err := urls.UrlProfile(name, domain)
if err != nil {
return nil, err
}
attrProp := streams.NewActivityStreamsAttributedToProperty()
attrProp.AppendIRI(actorUrl)
note.SetActivityStreamsAttributedTo(attrProp)
summaryProp := streams.NewActivityStreamsSummaryProperty()
summaryProp.AppendXMLSchemaString("")
note.SetActivityStreamsSummary(summaryProp)
noteUrlProp := streams.NewActivityStreamsUrlProperty()
noteUrlProp.AppendIRI(noteUrl)
note.SetActivityStreamsUrl(noteUrlProp)
publicUrl, err := url.Parse("https://www.w3.org/ns/activitystreams#Public")
if err != nil {
return nil, err
}
toProp := streams.NewActivityStreamsToProperty()
toProp.AppendIRI(publicUrl)
note.SetActivityStreamsTo(toProp)
publishedProp := streams.NewActivityStreamsPublishedProperty()
publishedProp.Set(v.CreatedAt)
note.SetActivityStreamsPublished(publishedProp)
return note, err
}
func activityObjectCreate(name, domain string, v models.OutboxItem, note vocab.ActivityStreamsNote) (vocab.ActivityStreamsCreate, error) {
var err error
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)
publicUrl, err := url.Parse("https://www.w3.org/ns/activitystreams#Public")
if err != nil {
return nil, err
}
toProp := streams.NewActivityStreamsToProperty()
toProp.AppendIRI(publicUrl)
crea.SetActivityStreamsTo(toProp)
publishedProp := streams.NewActivityStreamsPublishedProperty()
publishedProp.Set(v.CreatedAt)
crea.SetActivityStreamsPublished(publishedProp)
actorUrl, err := urls.UrlProfile(name, domain)
if err != nil {
return nil, err
}
actorProp := streams.NewActivityStreamsActorProperty()
actorProp.AppendIRI(actorUrl)
crea.SetActivityStreamsActor(actorProp)
obj.AppendActivityStreamsNote(note)
return crea, err
}
|