-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttp.go
389 lines (305 loc) · 7.47 KB
/
http.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
package main
import (
"bufio"
"encoding/json"
"errors"
"fmt"
"io"
"mime"
"net/http"
"github.com/julienschmidt/httprouter"
)
const applicationJSON = "application/json"
func makeCreateDefHandler(s *Server) httprouter.Handle {
return func(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
defer r.Body.Close()
// New generator definition with defaults.
def := NewDef()
if err := json.NewDecoder(r.Body).Decode(def); err != nil {
w.WriteHeader(http.StatusUnprocessableEntity)
fmt.Fprintf(w, err.Error())
return
}
err := s.CreateDef(def)
if err != nil {
w.WriteHeader(http.StatusServiceUnavailable)
fmt.Fprint(w, err.Error())
return
}
w.WriteHeader(http.StatusCreated)
}
}
func makeUpdateDefHandler(s *Server) httprouter.Handle {
return func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
name := p.ByName("name")
def, err := s.GetDef(name)
if err == ErrNoDef {
w.WriteHeader(http.StatusNotFound)
return
}
id := def.ID
defer r.Body.Close()
if err := json.NewDecoder(r.Body).Decode(def); err != nil {
w.WriteHeader(http.StatusUnprocessableEntity)
fmt.Fprintf(w, err.Error())
return
}
def.ID = id
if err = s.UpdateDef(name, def); err != nil {
w.WriteHeader(http.StatusServiceUnavailable)
fmt.Fprint(w, err.Error())
return
}
w.WriteHeader(http.StatusNoContent)
}
}
func makeGetDefsHandler(s *Server) httprouter.Handle {
return func(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
defs, err := s.GetDefs()
if err != nil {
w.WriteHeader(http.StatusServiceUnavailable)
fmt.Fprint(w, err.Error())
return
}
w.Header().Set("content-type", applicationJSON)
if err := json.NewEncoder(w).Encode(defs); err != nil {
w.WriteHeader(http.StatusInternalServerError)
fmt.Fprintf(w, err.Error())
return
}
}
}
func makeDeleteDefHandler(s *Server) httprouter.Handle {
return func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
name := p.ByName("name")
err := s.DelDef(name)
if err == ErrNoDef {
w.WriteHeader(http.StatusNotFound)
return
}
if err != nil {
w.WriteHeader(http.StatusServiceUnavailable)
fmt.Fprint(w, err.Error())
return
}
w.WriteHeader(http.StatusNoContent)
}
}
func makeGetDefHandler(s *Server) httprouter.Handle {
return func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
name := p.ByName("name")
def, err := s.GetDef(name)
if err == ErrNoDef {
w.WriteHeader(http.StatusNotFound)
return
}
b, err := json.Marshal(def)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
w.Write([]byte(err.Error()))
return
}
w.Header().Set("content-type", applicationJSON)
w.Write(b)
}
}
func parseGenBody(mediaType string, r io.Reader) ([]*IdentAlias, error) {
// Decode request body containing the aliases.
var (
err error
idents []*IdentAlias
)
switch mediaType {
case applicationJSON:
var a []string
err = json.NewDecoder(r).Decode(&a)
idents = make([]*IdentAlias, len(a))
for i, ident := range a {
idents[i] = &IdentAlias{
Ident: ident,
}
}
default:
sc := bufio.NewScanner(r)
for sc.Scan() {
idents = append(idents, &IdentAlias{
Ident: sc.Text(),
})
}
err = sc.Err()
}
if err != nil {
return nil, err
}
return idents, nil
}
func makeGenHandler(s *Server) httprouter.Handle {
return func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
name := p.ByName("name")
readOnly := r.URL.Query().Get("ro") != ""
def, err := s.GetDef(name)
if err == ErrNoDef {
w.WriteHeader(http.StatusNotFound)
return
}
// Something else wrong.
if err != nil {
w.WriteHeader(http.StatusServiceUnavailable)
fmt.Fprint(w, err.Error())
return
}
mediaType, _, _ := mime.ParseMediaType(r.Header.Get("content-type"))
idents, err := parseGenBody(mediaType, r.Body)
r.Body.Close()
if err != nil {
w.WriteHeader(http.StatusUnprocessableEntity)
fmt.Fprint(w, err.Error())
return
}
if readOnly {
idents, err = s.Get(def, idents)
if err != nil {
w.WriteHeader(http.StatusServiceUnavailable)
fmt.Fprint(w, err.Error())
return
}
switch mediaType {
case applicationJSON:
w.Header().Set("content-type", applicationJSON)
json.NewEncoder(w).Encode(idents)
default:
for _, ia := range idents {
switch ia.Status {
case StatusExists:
fmt.Fprintln(w, "1", ia.Alias)
case StatusMissing:
fmt.Fprintln(w, "0")
}
}
}
return
}
idents, err = s.Gen(def, idents)
if err != nil {
w.WriteHeader(http.StatusServiceUnavailable)
fmt.Fprint(w, err.Error())
return
}
switch mediaType {
case applicationJSON:
w.Header().Set("content-type", applicationJSON)
json.NewEncoder(w).Encode(idents)
default:
for _, ia := range idents {
switch ia.Status {
case StatusExists:
fmt.Fprintln(w, "0", ia.Alias)
case StatusCreated:
fmt.Fprintln(w, "1", ia.Alias)
}
}
}
}
}
func parsePutBody(mediaType string, r io.Reader) ([]*IdentAlias, error) {
var (
err error
idents []*IdentAlias
)
switch mediaType {
case applicationJSON:
err = json.NewDecoder(r).Decode(&idents)
default:
sr := bufio.NewScanner(r)
for sr.Scan() {
line := sr.Text()
toks := splitRegex.Split(line, 2)
if len(toks) != 2 {
return nil, errors.New("delimiter should match [\\s\\t,]+")
}
idents = append(idents, &IdentAlias{
Ident: string(toks[0]),
Alias: string(toks[1]),
})
}
err = sr.Err()
}
if err != nil {
return nil, err
}
return idents, nil
}
func makePutHandler(s *Server) httprouter.Handle {
return func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
name := p.ByName("name")
def, err := s.GetDef(name)
if err == ErrNoDef {
w.WriteHeader(http.StatusNotFound)
return
}
// Something else wrong.
if err != nil {
w.WriteHeader(http.StatusServiceUnavailable)
fmt.Fprint(w, err.Error())
return
}
mediaType, _, _ := mime.ParseMediaType(r.Header.Get("content-type"))
idents, err := parsePutBody(mediaType, r.Body)
r.Body.Close()
if err != nil {
w.WriteHeader(http.StatusUnprocessableEntity)
fmt.Fprint(w, err.Error())
return
}
if err := s.Put(def, idents); err != nil {
w.WriteHeader(http.StatusServiceUnavailable)
fmt.Fprint(w, err.Error())
return
}
w.WriteHeader(http.StatusNoContent)
}
}
func parseDeleteBody(r io.Reader) ([]string, error) {
var a []string
sc := bufio.NewScanner(r)
for sc.Scan() {
a = append(a, sc.Text())
}
return a, sc.Err()
}
func makeDeleteHandler(s *Server) httprouter.Handle {
return func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
name := p.ByName("name")
def, err := s.GetDef(name)
if err == ErrNoDef {
w.WriteHeader(http.StatusNotFound)
return
}
// Something else wrong.
if err != nil {
w.WriteHeader(http.StatusServiceUnavailable)
fmt.Fprint(w, err.Error())
return
}
mediaType, _, _ := mime.ParseMediaType(r.Header.Get("content-type"))
var idents []string
switch mediaType {
case applicationJSON:
err = json.NewDecoder(r.Body).Decode(&idents)
default:
idents, err = parseDeleteBody(r.Body)
}
r.Body.Close()
if err != nil {
w.WriteHeader(http.StatusUnprocessableEntity)
fmt.Fprint(w, err.Error())
return
}
if err := s.Del(def, idents); err != nil {
w.WriteHeader(http.StatusServiceUnavailable)
fmt.Fprint(w, err.Error())
return
}
w.WriteHeader(http.StatusNoContent)
}
}