-
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
-
119
-
120
-
121
-
122
-
123
-
124
-
125
-
126
-
127
-
128
-
129
-
130
-
131
-
132
-
133
-
134
-
135
-
136
-
137
-
138
-
139
-
140
-
141
-
142
-
143
-
144
-
145
-
146
-
147
-
148
-
149
-
150
-
151
-
152
-
153
-
154
-
155
-
156
-
157
-
158
-
159
-
160
-
161
-
162
-
163
-
164
-
165
-
166
-
167
-
168
-
169
-
170
-
171
-
172
-
173
-
174
-
175
-
176
-
177
-
178
-
179
-
180
-
181
-
182
-
183
-
184
-
185
-
186
-
187
-
188
-
189
-
190
-
191
-
192
-
193
-
194
-
195
-
196
-
197
-
198
-
199
-
200
-
201
-
202
-
203
-
204
-
205
-
206
-
207
-
208
-
209
-
210
-
211
-
212
-
213
-
214
-
215
-
216
-
217
-
218
-
219
-
220
-
221
-
222
-
223
-
224
-
225
-
226
-
227
-
228
-
229
-
230
-
231
-
232
-
233
-
234
-
235
-
236
-
237
-
238
-
239
-
240
-
241
-
242
-
243
package handler
import (
"errors"
"fmt"
as "github.com/go-ap/activitystreams"
j "github.com/go-ap/jsonld"
"github.com/go-ap/storage"
"net/http"
)
// CtxtKey type alias for the key under which we're storing the Collection Storage in the Request's context
type CtxtKey string
var RepositoryKey = CtxtKey("__repo")
// MethodValidator is the interface need to be implemented to specify if an HTTP request's method
// is supported by the implementor object
type MethodValidator interface {
ValidMethod(r *http.Request) bool
}
// RequestValidator is the interface need to be implemented to specify if the whole HTTP request
// is valid in the context of the implementor object
type RequestValidator interface {
ValidateRequest(r *http.Request) (int, error)
}
// ActivityHandlerFn is the type that we're using to represent handlers that process requests containing
// an ActivityStreams Activity. It needs to implement the http.Handler interface.
//
// It is considered that following the execution of the handler, we return a pair formed of a HTTP status together with
// an IRI representing a new Object - in the case of transitive activities that had a side effect, or
// an error.
// In the case of intransitive activities the iri will always be empty.
type ActivityHandlerFn func(CollectionType, *http.Request, storage.ActivitySaver) (as.IRI, int, error)
func (a ActivityHandlerFn) Storage(r *http.Request) (storage.ActivitySaver, error) {
ctxVal := r.Context().Value(RepositoryKey)
st, ok := ctxVal.(storage.ActivitySaver)
if !ok {
return nil, errors.New("unable to load storage from context")
}
return st, nil
}
// ValidMethod validates if the current handler can process the current request
func (a ActivityHandlerFn) ValidMethod(r *http.Request) bool {
return r.Method != http.MethodPost
}
// ValidateRequest validates if the current handler can process the current request
func (a ActivityHandlerFn) ValidateRequest(r *http.Request) (int, error) {
if !a.ValidMethod(r) {
return http.StatusNotAcceptable, fmt.Errorf("invalid HTTP method %s", r.Method)
}
return http.StatusOK, nil
}
// ServeHTTP implements the http.Handler interface for the ActivityHandlerFn type
func (a ActivityHandlerFn) ServeHTTP(w http.ResponseWriter, r *http.Request) {
var dat []byte
var iri as.IRI
var err error
var status = http.StatusInternalServerError
writeResponse := func(status int, dat []byte) {
w.WriteHeader(status)
if r.Method == http.MethodGet {
w.Write(dat)
}
}
if status, err = a.ValidateRequest(r); err != nil {
dat = []byte(err.Error())
writeResponse(status, dat)
return
}
st, err := a.Storage(r)
if err != nil {
dat = []byte(err.Error())
writeResponse(status, dat)
return
}
if iri, status, err = a(Typer.Type(r), r, st); err != nil {
dat = []byte(err.Error())
writeResponse(status, dat)
return
}
w.WriteHeader(status)
switch status {
case http.StatusCreated:
dat = []byte("CREATED")
w.Header().Set("Location", iri.String())
case http.StatusGone:
dat = []byte("DELETED")
default:
dat = []byte("OK")
}
w.Write(dat)
}
// CollectionHandlerFn is the type that we're using to represent handlers that will return ActivityStreams
// Collection or OrderedCollection objects. It needs to implement the http.Handler interface.
type CollectionHandlerFn func(CollectionType, *http.Request, storage.CollectionLoader) (as.CollectionInterface, error)
func (c CollectionHandlerFn) Storage(r *http.Request) (storage.CollectionLoader, error) {
ctxVal := r.Context().Value(RepositoryKey)
repo, ok := ctxVal.(storage.CollectionLoader)
if !ok {
return nil, errors.New("unable to load storage from context")
}
return repo, nil
}
// ValidMethod validates if the current handler can process the current request
func (c CollectionHandlerFn) ValidMethod(r *http.Request) bool {
return r.Method == http.MethodGet || r.Method == http.MethodHead
}
// ValidateRequest validates if the current handler can process the current request
func (c CollectionHandlerFn) ValidateRequest(r *http.Request) (int, error) {
if !c.ValidMethod(r) {
return http.StatusMethodNotAllowed, fmt.Errorf("invalid HTTP method %s", r.Method)
}
return http.StatusOK, nil
}
// ServeHTTP implements the http.Handler interface for the CollectionHandlerFn type
func (c CollectionHandlerFn) ServeHTTP(w http.ResponseWriter, r *http.Request) {
var dat []byte
var status = http.StatusInternalServerError
var err error
writeResponse := func(status int, dat []byte) {
w.WriteHeader(status)
if r.Method == http.MethodGet {
w.Write(dat)
}
}
status, err = c.ValidateRequest(r)
if err != nil {
dat = []byte(err.Error())
writeResponse(status, dat)
return
}
st, err := c.Storage(r)
if err != nil {
dat = []byte(err.Error())
writeResponse(status, dat)
return
}
col, err := c(Typer.Type(r), r, st)
if err != nil {
dat = []byte(err.Error())
writeResponse(status, dat)
return
}
if dat, err = j.WithContext(j.IRI(as.ActivityBaseURI)).Marshal(col); err != nil {
dat = []byte(err.Error())
writeResponse(status, dat)
return
}
status = http.StatusOK
writeResponse(status, dat)
}
// ItemHandlerFn is the type that we're using to represent handlers that return ActivityStreams
// objects. It needs to implement the http.Handler interface
type ItemHandlerFn func(*http.Request, storage.ObjectLoader) (as.Item, error)
func (i ItemHandlerFn) Storage(r *http.Request) (storage.ObjectLoader, error) {
ctxVal := r.Context().Value(RepositoryKey)
st, ok := ctxVal.(storage.ObjectLoader)
if !ok {
return nil, errors.New("unable to load storage from context")
}
return st, nil
}
// ValidMethod validates if the current handler can process the current request
func (i ItemHandlerFn) ValidMethod(r *http.Request) bool {
return r.Method != http.MethodGet && r.Method != http.MethodHead
}
// ValidateRequest validates if the current handler can process the current request
func (i ItemHandlerFn) ValidateRequest(r *http.Request) (int, error) {
if !i.ValidMethod(r) {
return http.StatusMethodNotAllowed, fmt.Errorf("invalid HTTP method %s", r.Method)
}
return http.StatusOK, nil
}
// ServeHTTP implements the http.Handler interface for the ItemHandlerFn type
func (i ItemHandlerFn) ServeHTTP(w http.ResponseWriter, r *http.Request) {
var dat []byte
var err error
status := http.StatusInternalServerError
writeResponse := func(status int, dat []byte) {
w.WriteHeader(status)
if r.Method == http.MethodGet {
w.Write(dat)
}
}
status, err = i.ValidateRequest(r)
if err != nil {
dat = []byte(err.Error())
writeResponse(status, dat)
return
}
st, err := i.Storage(r)
if err != nil {
dat = []byte(err.Error())
writeResponse(status, dat)
return
}
it, err := i(r, st)
if err != nil {
dat = []byte(err.Error())
writeResponse(status, dat)
return
}
if dat, err = j.WithContext(j.IRI(as.ActivityBaseURI)).Marshal(it); err != nil {
dat = []byte(err.Error())
writeResponse(status, dat)
return
}
status = http.StatusOK
writeResponse(status, dat)
}