-
Notifications
You must be signed in to change notification settings - Fork 0
/
types.go
103 lines (81 loc) · 2.37 KB
/
types.go
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
package litepub
import (
"encoding/json"
"time"
)
type DummyBaseContext struct{}
func (c *DummyBaseContext) UnmarshalJSON([]byte) error {
return nil
}
func (c DummyBaseContext) MarshalJSON() ([]byte, error) {
return json.Marshal([]string{
"https://www.w3.org/ns/activitystreams",
"https://w3id.org/security/v1",
"https://pleroma.site/schemas/litepub-0.1.jsonld",
})
}
type Base struct {
Context DummyBaseContext `json:"@context"`
Id string `json:"id"`
Type string `json:"type"`
}
type Actor struct {
Base
Name string `json:"name"`
PreferredUsername string `json:"preferredUsername"`
ManuallyApprovesFollowers bool `json:"manuallyApprovesFollowers"`
Image ActorImage `json:"image,omitempty"`
Icon ActorImage `json:"icon,omitempty"`
Summary string `json:"summary,omitempty"`
URL string `json:"url"`
Inbox string `json:"inbox"`
Outbox string `json:"outbox"`
Followers string `json:"followers"`
Following string `json:"following"`
Published time.Time `json:"published"`
PublicKey PublicKey `json:"publicKey"`
}
type ActorImage struct {
Type string `json:"type,omitempty"`
URL string `json:"url,omitempty"`
}
type PublicKey struct {
Id string `json:"id"`
Owner string `json:"owner"`
PublicKeyPEM string `json:"publicKeyPem"`
}
type Accept struct {
Base
Object interface{} `json:"object"`
}
type OrderedCollection struct {
Base
TotalItems int `json:"totalItems"`
First json.RawMessage `json:"first"`
}
type OrderedCollectionPage[I any] struct {
Base
TotalItems int `json:"totalItems"`
PartOf string `json:"partOf"`
OrderedItems []I `json:"orderedItems"`
Next string `json:"next"`
}
type Follow struct {
Base
Actor string `json:"actor"`
Object string `json:"object"`
}
type Create[O any] struct {
Base
Actor string `json:"actor"`
Object O `json:"object"`
}
type Note struct {
Base
Published time.Time `json:"published"`
AttributedTo string `json:"attributedTo"`
InReplyTo string `json:"InReplyToAtomUri"`
Content string `json:"content"`
To []string `json:"to"`
CC []string `json:"cc"`
}