-
Notifications
You must be signed in to change notification settings - Fork 514
/
params.go
338 lines (265 loc) · 6.76 KB
/
params.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
// A facebook graph api client in go.
// https://github.com/huandu/facebook/
//
// Copyright 2012, Huan Du
// Licensed under the MIT license
// https://github.com/huandu/facebook/blob/master/LICENSE
package facebook
import (
"encoding/json"
"fmt"
"io"
"mime"
"mime/multipart"
"net/textproto"
"net/url"
"os"
"path"
"reflect"
"runtime"
"strings"
)
const (
mimeFormURLEncoded = "application/x-www-form-urlencoded"
mimeFormData = "multipart/form-data"
)
var (
typeOfPointerToBinaryData = reflect.TypeOf(&BinaryData{})
typeOfPointerToBinaryFile = reflect.TypeOf(&BinaryFile{})
)
// Params is the params used to send Facebook API request.
//
// For general uses, just use Params as an ordinary map.
//
// For advanced uses, use MakeParams to create Params from any struct.
type Params map[string]interface{}
// MakeParams makes a new Params instance by given data.
// Data must be a struct or a map with string keys.
// MakeParams will change all struct field name to lower case name with underscore.
// e.g. "FooBar" will be changed to "foo_bar".
//
// Returns nil if data cannot be used to make a Params instance.
func MakeParams(data interface{}) (params Params) {
if p, ok := data.(Params); ok {
return p
}
defer func() {
if r := recover(); r != nil {
if _, ok := r.(runtime.Error); ok {
panic(r)
}
params = nil
}
}()
params = makeParams(reflect.ValueOf(data))
return
}
func makeParams(value reflect.Value) (params Params) {
for value.Kind() == reflect.Ptr || value.Kind() == reflect.Interface {
value = value.Elem()
}
// only map with string keys can be converted to Params
if value.Kind() == reflect.Map && value.Type().Key().Kind() == reflect.String {
params = Params{}
for _, key := range value.MapKeys() {
params[key.String()] = value.MapIndex(key).Interface()
}
return
}
if value.Kind() != reflect.Struct {
return
}
params = Params{}
t := value.Type()
num := value.NumField()
for i := 0; i < num; i++ {
sf := t.Field(i)
tag := sf.Tag
name := ""
omitEmpty := false
// If field tag "facebook" or "json" exists, use it as field name and options.
fbTag := tag.Get("facebook")
jsonTag := tag.Get("json")
if fbTag != "" || jsonTag != "" {
optTag := jsonTag
// If field tag "facebook" exists, it's preferred.
if fbTag != "" {
optTag = fbTag
}
opts := strings.Split(optTag, ",")
if opts[0] != "" {
name = opts[0]
}
for _, opt := range opts[1:] {
if opt == "omitempty" {
omitEmpty = true
}
}
}
field := value.Field(i)
if omitEmpty && isEmptyValue(field) {
continue
}
for field.Kind() == reflect.Ptr {
field = field.Elem()
}
// If name is not set in field tag, use field name directly.
if name == "" {
name = camelCaseToUnderScore(sf.Name)
}
switch field.Kind() {
case reflect.Chan, reflect.Func, reflect.UnsafePointer, reflect.Invalid:
// these types won't be marshalled in json.
params = nil
return
case reflect.Struct:
params[name] = makeParams(field)
default:
params[name] = field.Interface()
}
}
return
}
func isEmptyValue(v reflect.Value) bool {
switch v.Kind() {
case reflect.Array, reflect.Map, reflect.Slice, reflect.String:
return v.Len() == 0
case reflect.Bool:
return !v.Bool()
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
return v.Int() == 0
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
return v.Uint() == 0
case reflect.Float32, reflect.Float64:
return v.Float() == 0
case reflect.Interface, reflect.Ptr:
return v.IsNil()
}
return false
}
// Encode encodes params to query string.
// If map value is not a string, Encode uses json.Marshal() to convert value to string.
//
// Encode may panic if Params contains values that cannot be marshalled to json string.
func (params Params) Encode(writer io.Writer) (mime string, err error) {
if len(params) == 0 {
mime = mimeFormURLEncoded
return
}
// check whether params contains any binary data.
hasBinary := false
for _, v := range params {
typ := reflect.TypeOf(v)
if typ == typeOfPointerToBinaryData || typ == typeOfPointerToBinaryFile {
hasBinary = true
break
}
}
if hasBinary {
return params.encodeMultipartForm(writer)
}
return params.encodeFormURLEncoded(writer)
}
func (params Params) encodeFormURLEncoded(writer io.Writer) (mime string, err error) {
var jsonStr []byte
written := false
for k, v := range params {
if v == nil {
continue
}
if written {
io.WriteString(writer, "&")
}
io.WriteString(writer, url.QueryEscape(k))
io.WriteString(writer, "=")
if reflect.TypeOf(v).Kind() == reflect.String {
io.WriteString(writer, url.QueryEscape(reflect.ValueOf(v).String()))
} else {
jsonStr, err = json.Marshal(v)
if err != nil {
return
}
io.WriteString(writer, url.QueryEscape(string(jsonStr)))
}
written = true
}
mime = mimeFormURLEncoded
return
}
func (params Params) encodeMultipartForm(writer io.Writer) (mime string, err error) {
w := multipart.NewWriter(writer)
defer func() {
w.Close()
mime = w.FormDataContentType()
}()
for k, v := range params {
switch value := v.(type) {
case *BinaryData:
var dst io.Writer
filePart := createFormFile(k, value.Filename, value.ContentType)
dst, err = w.CreatePart(filePart)
if err != nil {
return
}
_, err = io.Copy(dst, value.Source)
if err != nil {
return
}
case *BinaryFile:
var dst io.Writer
var file *os.File
var path string
filePart := createFormFile(k, value.Filename, value.ContentType)
dst, err = w.CreatePart(filePart)
if err != nil {
return
}
if value.Path == "" {
path = value.Filename
} else {
path = value.Path
}
file, err = os.Open(path)
if err != nil {
return
}
defer file.Close()
_, err = io.Copy(dst, file)
if err != nil {
return
}
default:
var dst io.Writer
var jsonStr []byte
dst, err = w.CreateFormField(k)
if reflect.TypeOf(v).Kind() == reflect.String {
io.WriteString(dst, reflect.ValueOf(v).String())
} else {
jsonStr, err = json.Marshal(v)
if err != nil {
return
}
_, err = dst.Write(jsonStr)
if err != nil {
return
}
}
}
}
return
}
var quoteEscaper = strings.NewReplacer("\\", "\\\\", `"`, "\\\"")
func createFormFile(fieldName, fileName, contentType string) textproto.MIMEHeader {
h := make(textproto.MIMEHeader)
h.Set("Content-Disposition",
fmt.Sprintf(`form-data; name="%s"; filename="%s"`,
quoteEscaper.Replace(fieldName), quoteEscaper.Replace(fileName)))
if contentType == "" {
contentType = mime.TypeByExtension(path.Ext(fileName))
if contentType == "" {
contentType = "application/octet-stream"
}
}
h.Set("Content-Type", contentType)
return h
}