-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler.go
437 lines (374 loc) · 9.55 KB
/
handler.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
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
package sips
import (
"context"
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
"strconv"
"strings"
"time"
"github.com/gorilla/mux"
)
var (
errNoToken = errors.New("no bearer token provided")
errInvalidStatusQuery = errors.New("status list must be non-empty and have at most 4 elements")
errNoRequestID = errors.New("request ID is required")
)
type ctxKeyToken struct{}
func withToken(ctx context.Context, token string) context.Context {
return context.WithValue(ctx, ctxKeyToken{}, token)
}
// Token returns the auth token associated with the context.
func Token(ctx context.Context) (string, bool) {
tok, ok := ctx.Value(ctxKeyToken{}).(string)
return tok, ok
}
func tokenFromRequest(req *http.Request) (string, bool) {
auth := req.Header.Get("Authorization")
if auth == "" {
return "", false
}
parts := strings.SplitN(auth, " ", 2)
if len(parts) < 2 {
return "", false
}
if parts[0] != "Bearer" {
return "", false
}
return parts[1], true
}
// PinHandler is an interface satisfied by types that can be used to
// handle pinning service requests.
//
// Every method is called after the authentication token is pulled
// from HTTP headers, so it can be assumed that a token is included in
// the provided context. It should not, however, be assumed that the
// token is valid.
//
// Errors returned by a PinHandler's methods are returned to the
// client verbatim, so implementations should be careful not to
// include data that shouldn't be shown to clients in them. If an
// error implements StatusError, the HTTP status code returned will be
// whatever the error's Status method returns.
type PinHandler interface {
// Pins returns a list of pinning request statuses based on the
// given query.
//
// BUG: Doesn't properly allow a differenation between number of
// results returned and total number of results, thus breaking
// paging.
Pins(ctx context.Context, query PinQuery) ([]PinStatus, error)
// AddPin adds a new pin to the service's backend.
AddPin(ctx context.Context, pin Pin) (PinStatus, error)
// GetPin gets the status of a specific pinning request.
GetPin(ctx context.Context, requestID string) (PinStatus, error)
// UpdatePin replaces a pinning request's pin with new info.
UpdatePin(ctx context.Context, requestID string, pin Pin) (PinStatus, error)
// DeletePin removes a pinning request.
DeletePin(ctx context.Context, requestID string) error
}
type handler struct {
h PinHandler
}
// Handler returns a new HTTP handler that uses h to handle pinning
// service requests. It will handle requests to the "/pins" path and
// related subpaths, so the user does not need to strip the prefix in
// order to use it.
func Handler(h PinHandler) http.Handler {
r := mux.NewRouter()
handler := handler{h: h}
r.Methods("GET", "OPTIONS").Path("/pins").HandlerFunc(handler.getPins)
r.Methods("POST", "OPTIONS").Path("/pins").HandlerFunc(handler.postPins)
r.Methods("GET", "OPTIONS").Path("/pins/{requestID}").HandlerFunc(handler.getPinByID)
r.Methods("POST", "OPTIONS").Path("/pins/{requestID}").HandlerFunc(handler.postPinByID)
r.Methods("DELETE", "OPTIONS").Path("/pins/{requestID}").HandlerFunc(handler.deletePinByID)
r.Use(mux.CORSMethodMiddleware(r))
r.Use(func(h http.Handler) http.Handler {
return http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) {
rw.Header().Set("Content-Type", "application/json")
token, ok := tokenFromRequest(req)
if !ok {
respondError(
rw,
http.StatusUnauthorized,
errNoToken,
)
return
}
req = req.WithContext(withToken(req.Context(), token))
h.ServeHTTP(rw, req)
})
})
return r
}
func (h handler) getPins(rw http.ResponseWriter, req *http.Request) {
ctx := req.Context()
q := req.URL.Query()
query := defaultPinQuery()
query.CID = strings.SplitN(q.Get("cid"), ",", 11)
switch {
case len(query.CID) == 1:
if query.CID[0] == "" {
query.CID = nil
}
case len(query.CID) > 10:
respondError(
rw,
http.StatusBadRequest,
fmt.Errorf("too many CIDs: %v", len(query.CID)),
)
return
}
query.Name = q.Get("name")
match := TextMatchingStrategy(q.Get("match"))
if match != "" {
if !match.valid() {
respondError(
rw,
http.StatusBadRequest,
fmt.Errorf("invalid matching strategy: %q", match),
)
return
}
query.Match = match
}
status := strings.SplitN(q.Get("status"), ",", 5)
if (len(status) == 0) || (len(status) > 4) {
respondError(
rw,
http.StatusBadRequest,
errInvalidStatusQuery,
)
return
}
for _, v := range status {
query.Status = append(query.Status, RequestStatus(v))
}
before := q.Get("before")
if before != "" {
var err error
query.Before, err = time.Parse(time.RFC3339, before)
if err != nil {
respondError(
rw,
http.StatusBadRequest,
fmt.Errorf("invalid before %q: %w", before, err),
)
return
}
}
after := q.Get("after")
if after != "" {
var err error
query.After, err = time.Parse(time.RFC3339, after)
if err != nil {
respondError(
rw,
http.StatusBadRequest,
fmt.Errorf("invalid after %q: %w", after, err),
)
return
}
}
limit := q.Get("limit")
if limit != "" {
plimit, err := strconv.ParseInt(limit, 10, 0)
if err != nil {
respondError(
rw,
http.StatusBadRequest,
fmt.Errorf("invalid limit %q: %w", limit, err),
)
return
}
query.Limit = int(plimit)
}
meta := q.Get("meta")
if meta != "" {
err := json.Unmarshal([]byte(meta), &query.Meta)
if err != nil {
respondError(
rw,
http.StatusBadRequest,
fmt.Errorf("invalid meta %q: %w", meta, err),
)
return
}
}
pins, err := h.h.Pins(ctx, query)
if err != nil {
respondError(rw, http.StatusInternalServerError, err)
return
}
err = json.NewEncoder(rw).Encode(struct {
Count int `json:"count"`
Results []PinStatus `json:"results"`
}{
Count: len(pins),
Results: pins,
})
if err != nil {
respondError(rw, http.StatusInternalServerError, err)
return
}
}
func (h handler) postPins(rw http.ResponseWriter, req *http.Request) {
ctx := req.Context()
body, err := io.ReadAll(req.Body)
if err != nil {
respondError(rw, http.StatusInternalServerError, err)
return
}
var pin Pin
err = json.Unmarshal(body, &pin)
if err != nil {
respondError(
rw,
http.StatusBadRequest,
fmt.Errorf("failed to parse body: %w", err),
)
return
}
status, err := h.h.AddPin(ctx, pin)
if err != nil {
respondError(rw, http.StatusInternalServerError, err)
return
}
err = json.NewEncoder(rw).Encode(status)
if err != nil {
respondError(rw, http.StatusInternalServerError, err)
return
}
}
func (h handler) getPinByID(rw http.ResponseWriter, req *http.Request) {
ctx := req.Context()
vars := mux.Vars(req)
id := vars["requestID"]
if id == "" {
respondError(
rw,
http.StatusBadRequest,
errNoRequestID,
)
return
}
status, err := h.h.GetPin(ctx, id)
if err != nil {
respondError(rw, http.StatusInternalServerError, err)
return
}
err = json.NewEncoder(rw).Encode(status)
if err != nil {
respondError(rw, http.StatusInternalServerError, err)
return
}
}
func (h handler) postPinByID(rw http.ResponseWriter, req *http.Request) {
ctx := req.Context()
vars := mux.Vars(req)
id := vars["requestID"]
if id == "" {
respondError(
rw,
http.StatusBadRequest,
errNoRequestID,
)
return
}
body, err := io.ReadAll(req.Body)
if err != nil {
respondError(rw, http.StatusInternalServerError, err)
return
}
var pin Pin
err = json.Unmarshal(body, &pin)
if err != nil {
respondError(
rw,
http.StatusBadRequest,
fmt.Errorf("failed to parse body: %w", err),
)
return
}
status, err := h.h.UpdatePin(ctx, id, pin)
if err != nil {
respondError(rw, http.StatusInternalServerError, err)
return
}
err = json.NewEncoder(rw).Encode(status)
if err != nil {
respondError(rw, http.StatusInternalServerError, err)
return
}
}
func (h handler) deletePinByID(rw http.ResponseWriter, req *http.Request) {
ctx := req.Context()
vars := mux.Vars(req)
id := vars["requestID"]
if id == "" {
respondError(
rw,
http.StatusBadRequest,
errNoRequestID,
)
return
}
err := h.h.DeletePin(ctx, id)
if err != nil {
respondError(rw, http.StatusInternalServerError, err)
return
}
// Yields no response body if successful.
}
type errorResponse struct {
Error errorResponseError `json:"error"`
}
type errorResponseError struct {
Reason string `json:"reason"`
Details string `json:"details,omitempty"`
}
func respondError(rw http.ResponseWriter, status int, err error) {
var statusError StatusError
if errors.As(err, &statusError) {
status = statusError.Status()
}
rw.WriteHeader(status)
json.NewEncoder(rw).Encode(errorResponse{
Error: errorResponseError{
Reason: reasonFromStatus(status),
Details: err.Error(),
},
})
}
func reasonFromStatus(status int) string {
switch status {
case http.StatusBadRequest:
return "BAD_REQUEST"
case http.StatusUnauthorized:
return "UNAUTHORIZED"
case http.StatusNotFound:
return "NOT_FOUND"
case http.StatusConflict:
return "INSUFFICIENT_FUNDS"
default:
return "INTERNAL_SERVER_ERROR"
}
}
// StatusError is implemented by errors returned by PinHandler
// implementations that want to send custom status codes to the
// client.
//
// Several status codes have special handling. These include
// - 400 Bad Request
// - 401 Unauthorized
// - 404 Not Found
// - 409 Conflict
//
// These status codes will produce special error messages for the
// client. All other status codes will produce the same error message
// as a 500 Internal Server Error code does.
type StatusError interface {
Status() int
}