forked from romanyx/nullable
-
Notifications
You must be signed in to change notification settings - Fork 1
/
string.go
56 lines (44 loc) · 1.11 KB
/
string.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
package nullable
import (
"bytes"
"encoding/json"
)
var null = []byte("null")
// String represents a string that may be null or not
// present in json at all.
type String struct {
Present bool // Present is true if key is present in json
Valid bool // Valid is true if value is not null and valid string
Value string
}
// UnmarshalJSON implements json.Marshaler interface.
func (s *String) UnmarshalJSON(data []byte) error {
s.Present = true
if bytes.Equal(data, null) {
return nil
}
if err := json.Unmarshal(data, &s.Value); err != nil {
return err
}
s.Valid = true
return nil
}
// StringSlice represents a []string that may be null or not
// present in json at all.
type StringSlice struct {
Present bool // Present is true if key is present in json
Valid bool // Valid is true if value is not null
Value []string
}
// UnmarshalJSON implements json.Marshaler interface.
func (s *StringSlice) UnmarshalJSON(data []byte) error {
s.Present = true
if bytes.Equal(data, null) {
return nil
}
if err := json.Unmarshal(data, &s.Value); err != nil {
return err
}
s.Valid = true
return nil
}