-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson_types.go
181 lines (144 loc) · 2.76 KB
/
json_types.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
package apaleo
import (
"encoding/json"
"strconv"
"time"
)
type Date struct {
time.Time
}
func (d Date) MarshalJSON() ([]byte, error) {
return json.Marshal(d.Format("2006-01-02"))
}
func (d *Date) UnmarshalJSON(data []byte) (err error) {
var value string
err = json.Unmarshal(data, &value)
if err != nil {
return err
}
if value == "" {
return nil
}
// first try standard date
d.Time, err = time.Parse(time.RFC3339, value)
if err == nil {
return nil
}
// then try custom format
d.Time, err = time.Parse("2006-01-02T15:04:05", value)
if err == nil {
return nil
}
// try iso8601 date format
d.Time, err = time.Parse("2006-01-02", value)
return err
}
func (d Date) MarshalSchema() string {
return d.Format("2006-01-02")
}
type DateTime struct {
time.Time
}
func (d *DateTime) MarshalJSON() ([]byte, error) {
if d.Time.IsZero() {
return json.Marshal(nil)
}
return json.Marshal(d.Time)
}
func (d DateTime) IsEmpty() bool {
return d.Time.IsZero()
}
func (d *DateTime) UnmarshalJSON(text []byte) (err error) {
var value string
err = json.Unmarshal(text, &value)
if err != nil {
return err
}
if value == "" {
return nil
}
// first try standard date
d.Time, err = time.Parse(time.RFC3339, value)
if err == nil {
return nil
}
d.Time, err = time.Parse("2006-01-02 15:04:05", value)
return err
}
func (d DateTime) MarshalSchema() string {
return d.Format("2006-01-02T15:04:05Z")
}
type Time struct {
time.Time
}
func (d *Time) MarshalJSON() ([]byte, error) {
if d.Time.IsZero() {
return json.Marshal(nil)
}
return json.Marshal(d.Time)
}
func (d Time) IsEmpty() bool {
return d.Time.IsZero()
}
func (d *Time) UnmarshalJSON(text []byte) (err error) {
var value string
err = json.Unmarshal(text, &value)
if err != nil {
return err
}
if value == "" {
return nil
}
// first try standard date
d.Time, err = time.Parse(time.RFC3339, value)
if err == nil {
return nil
}
d.Time, err = time.Parse("15:04:05", value)
return err
}
func (d Time) MarshalSchema() string {
return d.Format("15:04:05")
}
type Int int
func (i *Int) UnmarshalJSON(data []byte) error {
realInt := 0
err := json.Unmarshal(data, &realInt)
if err == nil {
*i = Int(realInt)
return nil
}
// error, so maybe it isn't an int
str := ""
err = json.Unmarshal(data, &str)
if err != nil {
return err
}
if str == "" {
*i = 0
return nil
}
realInt, err = strconv.Atoi(str)
if err != nil {
return err
}
i2 := Int(realInt)
*i = i2
return nil
}
func (i Int) MarshalJSON() ([]byte, error) {
return json.Marshal(int(i))
}
type Bool bool
func (b Bool) MarshalJSON() ([]byte, error) {
if b == true {
return json.Marshal("1")
}
return json.Marshal("0")
}
func (b Bool) MarshalSchema() string {
if b == true {
return "true"
}
return "false"
}