-
Notifications
You must be signed in to change notification settings - Fork 6
/
marshal.go
435 lines (409 loc) · 12.6 KB
/
marshal.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
// Copyright 2015 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.
package httprequest
import (
"bytes"
"encoding/json"
"fmt"
"io"
"net/http"
"net/url"
"reflect"
"strings"
"github.com/julienschmidt/httprouter"
"gopkg.in/errgo.v1"
)
// Marshal is the counterpart of Unmarshal. It takes information from
// x, which must be a pointer to a struct, and returns an HTTP request
// using the given method that holds all of the information.
//
// The Body field in the returned request will always be of type
// BytesReaderCloser.
//
// If x implements the HeaderSetter interface, its SetHeader method will
// be called to add additional headers to the HTTP request after it has
// been marshaled. If x is pointer to a CustomHeader object then Marshal will use
// its Body member to create the HTTP request.
//
// The HTTP request will use the given method. Named fields in the given
// baseURL will be filled out from "path"-tagged fields in x to form the
// URL path in the returned request. These are specified as for httprouter.
//
// If a field in baseURL is a suffix of the form "*var" (a trailing wildcard element
// that holds the rest of the path), the marshaled string must begin with a "/".
// This matches the httprouter convention that it always returns such fields
// with a "/" prefix.
//
// If a field is of type string or []string, the value of the field will
// be used directly; otherwise if implements encoding.TextMarshaler, that
// will be used to marshal the field, otherwise fmt.Sprint will be used.
//
// An "omitempty" attribute on a form or header field specifies that
// if the form or header value is zero, the form or header entry
// will be omitted. If the field is a nil pointer, it will be omitted;
// otherwise if the field type implements IsZeroer, that method
// will be used to determine whether the value is zero, otherwise
// if the value is comparable, it will be compared with the zero
// value for its type, otherwise the value will never be omitted.
// One notable implementation of IsZeroer is time.Time.
//
// An "inbody" attribute on a form field specifies that the field will
// be marshaled as part of an application/x-www-form-urlencoded body.
// Note that the field may still be unmarshaled from either a URL query
// parameter or a form-encoded body.
//
// For example, this code:
//
// type UserDetails struct {
// Age int
// }
//
// type Test struct {
// Username string `httprequest:"user,path"`
// ContextId int64 `httprequest:"context,form"`
// Extra string `httprequest:"context,form,omitempty"`
// Details UserDetails `httprequest:",body"`
// }
// req, err := Marshal("http://example.com/users/:user/details", "GET", &Test{
// Username: "bob",
// ContextId: 1234,
// Details: UserDetails{
// Age: 36,
// }
// })
// if err != nil {
// ...
// }
//
// will produce an HTTP request req with a URL of
// http://example.com/users/bob/details?context=1234 and a JSON-encoded
// body holding `{"Age":36}`.
//
// It is an error if there is a field specified in the URL that is not
// found in x.
func Marshal(baseURL, method string, x interface{}) (*http.Request, error) {
var xv reflect.Value
if ch, ok := x.(*CustomHeader); ok {
xv = reflect.ValueOf(ch.Body)
} else {
xv = reflect.ValueOf(x)
}
pt, err := getRequestType(xv.Type())
if err != nil {
return nil, errgo.WithCausef(err, ErrBadUnmarshalType, "bad type %s", xv.Type())
}
req, err := http.NewRequest(method, baseURL, BytesReaderCloser{bytes.NewReader(nil)})
if err != nil {
return nil, errgo.Mask(err)
}
req.GetBody = func() (io.ReadCloser, error) { return BytesReaderCloser{bytes.NewReader(nil)}, nil }
req.Form = url.Values{}
if pt.formBody {
// Use req.PostForm as a place to put the values that
// will be marshaled as part of the form body.
// It's ignored by http.Client, but that's OK because
// we'll make the body ourselves later.
req.PostForm = url.Values{}
}
p := &Params{
Request: req,
}
if err := marshal(p, xv, pt); err != nil {
return nil, errgo.Mask(err, errgo.Is(ErrUnmarshal))
}
if pt.formBody {
data := []byte(req.PostForm.Encode())
p.Request.Body = BytesReaderCloser{bytes.NewReader(data)}
p.Request.GetBody = func() (io.ReadCloser, error) { return BytesReaderCloser{bytes.NewReader(data)}, nil }
p.Request.ContentLength = int64(len(data))
p.Request.Header.Set("Content-Type", "application/x-www-form-urlencoded")
p.Request.PostForm = nil
}
if headerSetter, ok := x.(HeaderSetter); ok {
headerSetter.SetHeader(p.Request.Header)
}
return p.Request, nil
}
// marshal is the internal version of Marshal.
func marshal(p *Params, xv reflect.Value, pt *requestType) error {
xv = xv.Elem()
for _, f := range pt.fields {
fv := xv.FieldByIndex(f.index)
if f.isPointer {
if fv.IsNil() {
continue
}
fv = fv.Elem()
}
// TODO store the field name in the field so
// that we can produce a nice error message.
if err := f.marshal(fv, p); err != nil {
return errgo.WithCausef(err, ErrUnmarshal, "cannot marshal field")
}
}
path, err := buildPath(p.Request.URL.Path, p.PathVar)
if err != nil {
return errgo.Mask(err)
}
p.Request.URL.Path = path
if q := p.Request.Form.Encode(); q != "" && p.Request.URL.RawQuery != "" {
p.Request.URL.RawQuery += "&" + q
} else {
p.Request.URL.RawQuery += q
}
return nil
}
func buildPath(path string, p httprouter.Params) (string, error) {
pathBytes := make([]byte, 0, len(path)*2)
for {
s, rest := nextPathSegment(path)
if s == "" {
break
}
if s[0] != ':' && s[0] != '*' {
pathBytes = append(pathBytes, s...)
path = rest
continue
}
if s[0] == '*' && rest != "" {
return "", errgo.New("star path parameter is not at end of path")
}
if len(s) == 1 {
return "", errgo.New("empty path parameter")
}
val := p.ByName(s[1:])
if val == "" {
return "", errgo.Newf("missing value for path parameter %q", s[1:])
}
if s[0] == '*' {
if !strings.HasPrefix(val, "/") {
return "", errgo.Newf("value %q for path parameter %q does not start with required /", val, s)
}
val = val[1:]
}
pathBytes = append(pathBytes, val...)
path = rest
}
return string(pathBytes), nil
}
// nextPathSegment returns the next wildcard or constant
// segment of the given path and everything after that
// segment.
func nextPathSegment(s string) (string, string) {
if s == "" {
return "", ""
}
if s[0] == ':' || s[0] == '*' {
if i := strings.Index(s, "/"); i != -1 {
return s[0:i], s[i:]
}
return s, ""
}
if i := strings.IndexAny(s, ":*"); i != -1 {
return s[0:i], s[i:]
}
return s, ""
}
// getMarshaler returns a marshaler function suitable for marshaling
// a field with the given tag into an HTTP request.
func getMarshaler(tag tag, t reflect.Type) (marshaler, error) {
switch {
case tag.source == sourceNone:
return marshalNop, nil
case tag.source == sourceBody:
return marshalBody, nil
case t == reflect.TypeOf([]string(nil)):
switch tag.source {
default:
return nil, errgo.New("invalid target type []string for path parameter")
case sourceForm:
return marshalAllForm(tag.name), nil
case sourceFormBody:
return marshalAllFormBody(tag.name), nil
case sourceHeader:
return marshalAllHeader(tag.name), nil
}
case t == reflect.TypeOf(""):
return marshalString(tag), nil
case implementsTextMarshaler(t):
return marshalWithMarshalText(t, tag), nil
default:
return marshalWithSprint(t, tag), nil
}
}
// marshalNop does nothing with the value.
func marshalNop(v reflect.Value, p *Params) error {
return nil
}
// marshalBody marshals the specified value into the body of the http request.
func marshalBody(v reflect.Value, p *Params) error {
// TODO allow body types that aren't necessarily JSON.
data, err := json.Marshal(v.Addr().Interface())
if err != nil {
return errgo.Notef(err, "cannot marshal request body")
}
p.Request.Body = BytesReaderCloser{bytes.NewReader(data)}
p.Request.GetBody = func() (io.ReadCloser, error) { return BytesReaderCloser{bytes.NewReader(data)}, nil }
p.Request.ContentLength = int64(len(data))
p.Request.Header.Set("Content-Type", "application/json")
return nil
}
// marshalAllForm marshals a []string slice into form fields.
func marshalAllForm(name string) marshaler {
return func(v reflect.Value, p *Params) error {
if ss := v.Interface().([]string); len(ss) > 0 {
p.Request.Form[name] = ss
}
return nil
}
}
// marshalAllFormBody marshals a []string slice into form body fields.
func marshalAllFormBody(name string) marshaler {
return func(v reflect.Value, p *Params) error {
if ss := v.Interface().([]string); len(ss) > 0 {
p.Request.PostForm[name] = ss
}
return nil
}
}
// marshalAllHeader marshals a []string slice into a header.
func marshalAllHeader(name string) marshaler {
return func(v reflect.Value, p *Params) error {
if ss := v.Interface().([]string); len(ss) > 0 {
p.Request.Header[name] = ss
}
return nil
}
}
// marshalString marshals s string field.
func marshalString(tag tag) marshaler {
formSet := formSetter(tag)
return func(v reflect.Value, p *Params) error {
s := v.String()
if tag.omitempty && s == "" {
return nil
}
formSet(tag.name, v.String(), p)
return nil
}
}
// encodingTextMarshaler is the same as encoding.TextUnmarshaler
// but avoids us importing the encoding package, which some
// broken gccgo installations do not allow.
// TODO remove this and use encoding.TextMarshaler instead.
type encodingTextMarshaler interface {
MarshalText() (text []byte, err error)
}
var textMarshalerType = reflect.TypeOf((*encodingTextMarshaler)(nil)).Elem()
func implementsTextMarshaler(t reflect.Type) bool {
// Use the pointer type, because a pointer
// type will implement a superset of the methods
// of a non-pointer type.
return reflect.PtrTo(t).Implements(textMarshalerType)
}
// marshalWithMarshalText returns a marshaler
// that marshals the given type from the given tag
// using its MarshalText method.
func marshalWithMarshalText(t reflect.Type, tag tag) marshaler {
formSet := formSetter(tag)
omit := omitter(t, tag)
return func(v reflect.Value, p *Params) error {
if omit(v) {
return nil
}
m := v.Addr().Interface().(encodingTextMarshaler)
data, err := m.MarshalText()
if err != nil {
return errgo.Mask(err)
}
formSet(tag.name, string(data), p)
return nil
}
}
// IsZeroer is used when marshaling to determine if a value
// is zero (see Marshal).
type IsZeroer interface {
IsZero() bool
}
var isZeroerType = reflect.TypeOf((*IsZeroer)(nil)).Elem()
// omitter returns a function that determins if a value
// with the given type and tag should be omitted from
// marshal output. The value passed to the function
// will be the underlying value, not its address.
//
// It returns nil if the value should never be omitted.
func omitter(t reflect.Type, tag tag) func(reflect.Value) bool {
never := func(reflect.Value) bool {
return false
}
if !tag.omitempty {
return never
}
if reflect.PtrTo(t).Implements(isZeroerType) {
return func(v reflect.Value) bool {
return v.Addr().Interface().(IsZeroer).IsZero()
}
}
if t.Comparable() {
zeroVal := reflect.Zero(t).Interface()
return func(v reflect.Value) bool {
return v.Interface() == zeroVal
}
}
return never
}
// marshalWithSprint returns an marshaler
// that unmarshals the given tag using fmt.Sprint.
func marshalWithSprint(t reflect.Type, tag tag) marshaler {
formSet := formSetter(tag)
omit := omitter(t, tag)
return func(v reflect.Value, p *Params) error {
if omit(v) {
return nil
}
formSet(tag.name, fmt.Sprint(v.Interface()), p)
return nil
}
}
// formSetter returns a function that can set the value
// for a given tag.
func formSetter(t tag) func(name, value string, p *Params) {
formSet := formSetters[t.source]
if formSet == nil {
panic("unexpected source")
}
if !t.omitempty {
return formSet
}
return func(name, value string, p *Params) {
if value != "" {
formSet(name, value, p)
}
}
}
// formSetters maps from source to a function that
// sets the value for a given key.
var formSetters = []func(string, string, *Params){
sourceForm: func(name, value string, p *Params) {
p.Request.Form.Set(name, value)
},
sourceFormBody: func(name, value string, p *Params) {
p.Request.PostForm.Set(name, value)
},
sourcePath: func(name, value string, p *Params) {
p.PathVar = append(p.PathVar, httprouter.Param{Key: name, Value: value})
},
sourceBody: nil,
sourceHeader: func(name, value string, p *Params) {
p.Request.Header.Set(name, value)
},
}
// BytesReaderCloser is a bytes.Reader which
// implements io.Closer with a no-op Close method.
type BytesReaderCloser struct {
*bytes.Reader
}
// Close implements io.Closer.Close.
func (BytesReaderCloser) Close() error {
return nil
}