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
|
package util
import (
"errors"
"fmt"
"net/url"
"reflect"
"strconv"
"strings"
jsoniter "github.com/json-iterator/go"
)
func IsSimpleType(f reflect.Value) bool {
if _, ok := f.Interface().(fmt.Stringer); ok {
return true
}
switch f.Kind() {
case reflect.Bool, reflect.Int, reflect.Int64, reflect.Uint, reflect.Uint64, reflect.String:
return true
}
return false
}
func SimpleTypeToParam(f reflect.Value) string {
if s, ok := f.Interface().(fmt.Stringer); ok {
return s.String()
}
switch f.Kind() {
case reflect.Bool:
return strconv.FormatBool(f.Bool())
case reflect.Int, reflect.Int64:
// f.Int() is always an int64
return strconv.FormatInt(f.Int(), 10)
case reflect.Uint, reflect.Uint64:
// f.Uint() is always an uint64
return strconv.FormatUint(f.Uint(), 10)
case reflect.String:
return f.String()
}
panic("the input parameter is not a simple type")
}
func Changed(o interface{}, fieldName string) bool {
r := reflect.ValueOf(o)
value := reflect.Indirect(r).FieldByName(fieldName)
return !value.IsNil()
}
func ToParams(o interface{}) (url.Values, error) {
params := url.Values{}
if o == nil || reflect.ValueOf(o).IsNil() {
return params, nil
}
json := jsoniter.ConfigCompatibleWithStandardLibrary
s := reflect.ValueOf(o)
if reflect.Ptr == s.Kind() {
s = s.Elem()
}
sType := s.Type()
for i := 0; i < s.NumField(); i++ {
fieldName := sType.Field(i).Name
if !Changed(o, fieldName) {
continue
}
fieldName = strings.ToLower(fieldName)
f := s.Field(i)
if reflect.Ptr == f.Kind() {
f = f.Elem()
}
paramName := fieldName
if pn, ok := sType.Field(i).Tag.Lookup("schema"); ok {
paramName = pn
}
switch {
case IsSimpleType(f):
params.Set(paramName, SimpleTypeToParam(f))
case f.Kind() == reflect.Slice:
for i := 0; i < f.Len(); i++ {
elem := f.Index(i)
if IsSimpleType(elem) {
params.Add(paramName, SimpleTypeToParam(elem))
} else {
return nil, errors.New("slices must contain only simple types")
}
}
case f.Kind() == reflect.Map:
lowerCaseKeys := make(map[string]interface{})
iter := f.MapRange()
for iter.Next() {
lowerCaseKeys[iter.Key().Interface().(string)] = iter.Value().Interface()
}
s, err := json.MarshalToString(lowerCaseKeys)
if err != nil {
return nil, err
}
params.Set(paramName, s)
}
}
return params, nil
}
|