forked from mfcochauxlaberge/jsonapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsonapi.go
244 lines (205 loc) · 5.34 KB
/
jsonapi.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
package jsonapi
import (
"encoding/json"
"errors"
"fmt"
"reflect"
"strings"
)
// Marshal ...
func Marshal(doc *Document, url *URL) ([]byte, error) {
// Data
var data json.RawMessage
var errors json.RawMessage
var err error
if res, ok := doc.Data.(Resource); ok {
// Resource
data, err = marshalResource(res, doc.PrePath, url.Params.Fields[res.GetType()], doc.RelData)
} else if col, ok := doc.Data.(Collection); ok {
// Collection
data, err = marshalCollection(col, doc.PrePath, url.Params.Fields[col.Type()], doc.RelData)
} else if id, ok := doc.Data.(Identifier); ok {
// Identifer
data, err = json.Marshal(id)
} else if ids, ok := doc.Data.(Identifiers); ok {
// Identifiers
data, err = json.Marshal(ids)
} else if e, ok := doc.Data.(Error); ok {
// Error
errors, err = json.Marshal([]Error{e})
} else if es, ok := doc.Data.([]Error); ok {
// Errors
errors, err = json.Marshal(es)
} else {
data = []byte("null")
}
if err != nil {
return []byte{}, err
}
// Included
inclusions := []*json.RawMessage{}
if len(data) > 0 {
for key := range doc.Included {
typ := doc.Included[key].GetType()
raw, err := marshalResource(doc.Included[key], doc.PrePath, url.Params.Fields[typ], doc.RelData)
if err != nil {
return []byte{}, err
}
rawm := json.RawMessage(raw)
inclusions = append(inclusions, &rawm)
}
}
// Marshaling
plMap := map[string]interface{}{}
if len(errors) > 0 {
plMap["errors"] = errors
} else if len(data) > 0 {
plMap["data"] = data
if len(inclusions) > 0 {
plMap["included"] = inclusions
}
}
if len(doc.Meta) > 0 {
plMap["meta"] = doc.Meta
}
if url != nil {
plMap["links"] = map[string]string{
"self": doc.PrePath + url.FullURL(),
}
}
plMap["jsonapi"] = map[string]string{"version": "1.0"}
return json.Marshal(plMap)
}
// Unmarshal ...
func Unmarshal(payload []byte, url *URL, reg *Registry) (*Payload, error) {
pl := &Payload{}
ske := &payloadSkeleton{}
// Unmarshal
err := json.Unmarshal(payload, ske)
if err != nil {
return nil, err
}
// Data
if !url.IsCol && url.RelKind == "" {
res := reg.Resource(url.ResType)
err = json.Unmarshal(ske.Data, res)
if err != nil {
return nil, err
}
pl.Data = res
} else if url.RelKind == "self" {
if !url.IsCol {
inc := Identifier{}
err = json.Unmarshal(ske.Data, &inc)
if err != nil {
return nil, err
}
pl.Data = inc
} else {
incs := Identifiers{}
err = json.Unmarshal(ske.Data, &incs)
if err != nil {
return nil, err
}
pl.Data = incs
}
}
// Included
if len(ske.Included) > 0 {
inc := Identifier{}
incs := []Identifier{}
for _, rawInc := range ske.Included {
err = json.Unmarshal(rawInc, &inc)
if err != nil {
return nil, err
}
incs = append(incs, inc)
}
for i, inc2 := range incs {
res2 := reg.Resource(inc2.Type)
err = json.Unmarshal(ske.Included[i], res2)
if err != nil {
return nil, err
}
pl.Included[inc2.Type+" "+inc2.ID] = res2
}
}
// Meta
pl.Meta = ske.Meta
return pl, nil
}
// CheckType ...
func CheckType(v interface{}) error {
value := reflect.ValueOf(v)
kind := value.Kind()
// Check wether it's a struct
if kind != reflect.Struct {
return errors.New("jsonapi: not a struct")
}
// Check ID field
var (
idField reflect.StructField
ok bool
)
if idField, ok = value.Type().FieldByName("ID"); !ok {
return errors.New("jsonapi: struct doesn't have an ID field")
}
resType := idField.Tag.Get("api")
if resType == "" {
return errors.New("jsonapi: ID field's api tag is empty")
}
// Check attributes
for i := 0; i < value.NumField(); i++ {
sf := value.Type().Field(i)
if sf.Tag.Get("api") == "attr" {
isValid := false
switch sf.Type.String() {
case "string", "int", "int8", "int16", "int32", "int64", "uint", "uint8", "uint16", "uint32", "uint64", "bool", "time.Time", "*string", "*int", "*int8", "*int16", "*int32", "*int64", "*uint", "*uint8", "*uint16", "*uint32", "*uint64", "*bool", "*time.Time":
isValid = true
}
if !isValid {
return fmt.Errorf("jsonapi: attribute %s of type %s is of unsupported type", sf.Name, resType)
}
}
}
// Check relationships
for i := 0; i < value.NumField(); i++ {
sf := value.Type().Field(i)
if strings.HasPrefix(sf.Tag.Get("api"), "rel,") {
s := strings.Split(sf.Tag.Get("api"), ",")
if len(s) < 2 || len(s) > 3 {
return fmt.Errorf("jsonapi: api tag of relationship %s of struct %s is invalid", sf.Name, value.Type().Name())
}
if sf.Type.String() != "string" && sf.Type.String() != "[]string" {
return fmt.Errorf("jsonapi: relationship %s of type %s is not string or []string", sf.Name, resType)
}
}
}
return nil
}
// IDAndType returns the ID and the type of the resource represented by v.
//
// Two empty strings are returned if v is not recognized as a resource.
// CheckType can be used to check the validity of a struct.
func IDAndType(v interface{}) (string, string) {
switch nv := v.(type) {
case Resource:
return nv.GetID(), nv.GetType()
}
val := reflect.ValueOf(v)
// Allows pointers to structs
if val.Kind() == reflect.Ptr {
val = val.Elem()
}
if val.Kind() == reflect.Struct {
idF := val.FieldByName("ID")
if !idF.IsValid() {
return "", ""
}
idSF, _ := val.Type().FieldByName("ID")
if idF.Kind() == reflect.String {
return idF.String(), idSF.Tag.Get("api")
}
}
return "", ""
}