2015-07-05 11:59:30 -04:00
|
|
|
package jsonapi
|
|
|
|
|
|
|
|
import (
|
2015-07-10 11:57:27 -04:00
|
|
|
"encoding/json"
|
2016-01-05 16:13:24 -05:00
|
|
|
"errors"
|
2015-07-05 11:59:30 -04:00
|
|
|
"fmt"
|
2015-07-10 11:57:27 -04:00
|
|
|
"io"
|
2015-07-05 11:59:30 -04:00
|
|
|
"reflect"
|
2016-01-05 16:13:24 -05:00
|
|
|
"strconv"
|
2015-07-05 11:59:30 -04:00
|
|
|
"strings"
|
2015-07-06 17:35:17 -04:00
|
|
|
"time"
|
2015-07-05 11:59:30 -04:00
|
|
|
)
|
|
|
|
|
2016-01-05 16:13:24 -05:00
|
|
|
var (
|
2016-09-13 01:12:42 -04:00
|
|
|
// ErrBadJSONAPIStructTag is returned when the Struct field's JSON API
|
|
|
|
// annotation is invalid.
|
2016-01-05 16:13:24 -05:00
|
|
|
ErrBadJSONAPIStructTag = errors.New("Bad jsonapi struct tag format")
|
2016-09-13 01:12:42 -04:00
|
|
|
// ErrBadJSONAPIID is returned when the Struct JSON API annotated "id" field
|
|
|
|
// was not a valid numeric type.
|
Added support for string, int(8,16,32,64), uint(8,16,32,64) and each … (#51)
* Added support for string, int(8,16,32,64), uint(8,16,32,64) and each of their ptr types as acceptable to use for the ID field.
* No longer declaring a new idErr var; also eliminate the switch within a switch - if the ID field was a string or *string it will continue. Added a couple extra tests.
2016-09-22 18:02:30 -04:00
|
|
|
ErrBadJSONAPIID = errors.New(
|
|
|
|
"id should be either string, int(8,16,32,64) or uint(8,16,32,64)")
|
2017-09-13 15:52:31 -04:00
|
|
|
// ErrExpectedSlice is returned when a variable or argument was expected to
|
2016-09-13 01:12:42 -04:00
|
|
|
// be a slice of *Structs; MarshalMany will return this error when its
|
|
|
|
// interface{} argument is invalid.
|
|
|
|
ErrExpectedSlice = errors.New("models should be a slice of struct pointers")
|
2017-06-28 20:30:09 -04:00
|
|
|
// ErrUnexpectedType is returned when marshalling an interface; the interface
|
|
|
|
// had to be a pointer or a slice; otherwise this error is returned.
|
|
|
|
ErrUnexpectedType = errors.New("models should be a struct pointer or slice of struct pointers")
|
2016-01-05 16:13:24 -05:00
|
|
|
)
|
2015-09-10 18:55:51 -04:00
|
|
|
|
2017-06-28 20:30:09 -04:00
|
|
|
// MarshalPayload writes a jsonapi response for one or many records. The
|
|
|
|
// related records are sideloaded into the "included" array. If this method is
|
|
|
|
// given a struct pointer as an argument it will serialize in the form
|
|
|
|
// "data": {...}. If this method is given a slice of pointers, this method will
|
|
|
|
// serialize in the form "data": [...]
|
2015-07-13 14:23:03 -04:00
|
|
|
//
|
2017-06-28 20:30:09 -04:00
|
|
|
// One Example: you could pass it, w, your http.ResponseWriter, and, models, a
|
|
|
|
// ptr to a Blog to be written to the response body:
|
2015-07-13 14:23:03 -04:00
|
|
|
//
|
2017-06-28 20:30:09 -04:00
|
|
|
// func ShowBlog(w http.ResponseWriter, r *http.Request) {
|
|
|
|
// blog := &Blog{}
|
|
|
|
//
|
|
|
|
// w.Header().Set("Content-Type", jsonapi.MediaType)
|
|
|
|
// w.WriteHeader(http.StatusOK)
|
|
|
|
//
|
|
|
|
// if err := jsonapi.MarshalPayload(w, blog); err != nil {
|
|
|
|
// http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// Many Example: you could pass it, w, your http.ResponseWriter, and, models, a
|
|
|
|
// slice of Blog struct instance pointers to be written to the response body:
|
|
|
|
//
|
|
|
|
// func ListBlogs(w http.ResponseWriter, r *http.Request) {
|
|
|
|
// blogs := []*Blog{}
|
|
|
|
//
|
|
|
|
// w.Header().Set("Content-Type", jsonapi.MediaType)
|
|
|
|
// w.WriteHeader(http.StatusOK)
|
|
|
|
//
|
|
|
|
// if err := jsonapi.MarshalPayload(w, blogs); err != nil {
|
|
|
|
// http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
func MarshalPayload(w io.Writer, models interface{}) error {
|
|
|
|
payload, err := Marshal(models)
|
2015-07-10 20:16:26 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-10-16 10:33:23 -04:00
|
|
|
return json.NewEncoder(w).Encode(payload)
|
2015-07-10 20:16:26 -04:00
|
|
|
}
|
|
|
|
|
2017-06-28 20:30:09 -04:00
|
|
|
// Marshal does the same as MarshalPayload except it just returns the payload
|
|
|
|
// and doesn't write out results. Useful if you use your own JSON rendering
|
|
|
|
// library.
|
|
|
|
func Marshal(models interface{}) (Payloader, error) {
|
|
|
|
switch vals := reflect.ValueOf(models); vals.Kind() {
|
|
|
|
case reflect.Slice:
|
|
|
|
m, err := convertToSliceInterface(&models)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-07-07 20:58:51 -04:00
|
|
|
|
|
|
|
payload, err := marshalMany(m)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if linkableModels, isLinkable := models.(Linkable); isLinkable {
|
|
|
|
jl := linkableModels.JSONAPILinks()
|
|
|
|
if er := jl.validate(); er != nil {
|
|
|
|
return nil, er
|
|
|
|
}
|
|
|
|
payload.Links = linkableModels.JSONAPILinks()
|
|
|
|
}
|
|
|
|
|
|
|
|
if metableModels, ok := models.(Metable); ok {
|
|
|
|
payload.Meta = metableModels.JSONAPIMeta()
|
|
|
|
}
|
|
|
|
|
|
|
|
return payload, nil
|
2017-06-28 20:30:09 -04:00
|
|
|
case reflect.Ptr:
|
|
|
|
// Check that the pointer was to a struct
|
|
|
|
if reflect.Indirect(vals).Kind() != reflect.Struct {
|
|
|
|
return nil, ErrUnexpectedType
|
|
|
|
}
|
|
|
|
return marshalOne(models)
|
|
|
|
default:
|
|
|
|
return nil, ErrUnexpectedType
|
|
|
|
}
|
|
|
|
}
|
2016-07-13 21:32:04 -04:00
|
|
|
|
2017-06-28 20:30:09 -04:00
|
|
|
// MarshalPayloadWithoutIncluded writes a jsonapi response with one or many
|
|
|
|
// records, without the related records sideloaded into "included" array.
|
|
|
|
// If you want to serialize the relations into the "included" array see
|
|
|
|
// MarshalPayload.
|
|
|
|
//
|
|
|
|
// models interface{} should be either a struct pointer or a slice of struct
|
|
|
|
// pointers.
|
|
|
|
func MarshalPayloadWithoutIncluded(w io.Writer, model interface{}) error {
|
|
|
|
payload, err := Marshal(model)
|
2016-07-13 21:32:04 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-06-28 20:30:09 -04:00
|
|
|
payload.clearIncluded()
|
2016-07-13 21:32:04 -04:00
|
|
|
|
2018-10-16 10:33:23 -04:00
|
|
|
return json.NewEncoder(w).Encode(payload)
|
2016-07-13 21:32:04 -04:00
|
|
|
}
|
|
|
|
|
2017-06-28 20:30:09 -04:00
|
|
|
// marshalOne does the same as MarshalOnePayload except it just returns the
|
2016-09-13 01:12:42 -04:00
|
|
|
// payload and doesn't write out results. Useful is you use your JSON rendering
|
|
|
|
// library.
|
2017-06-28 20:30:09 -04:00
|
|
|
func marshalOne(model interface{}) (*OnePayload, error) {
|
2016-01-05 16:13:24 -05:00
|
|
|
included := make(map[string]*Node)
|
|
|
|
|
|
|
|
rootNode, err := visitModelNode(model, &included, true)
|
2015-08-07 18:18:10 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
payload := &OnePayload{Data: rootNode}
|
|
|
|
|
2016-01-05 16:13:24 -05:00
|
|
|
payload.Included = nodeMapValues(&included)
|
2015-08-07 18:18:10 -04:00
|
|
|
|
|
|
|
return payload, nil
|
|
|
|
}
|
|
|
|
|
2017-06-28 20:30:09 -04:00
|
|
|
// marshalMany does the same as MarshalManyPayload except it just returns the
|
2016-09-13 01:12:42 -04:00
|
|
|
// payload and doesn't write out results. Useful is you use your JSON rendering
|
|
|
|
// library.
|
2017-06-28 20:30:09 -04:00
|
|
|
func marshalMany(models []interface{}) (*ManyPayload, error) {
|
2017-01-17 19:04:07 -05:00
|
|
|
payload := &ManyPayload{
|
|
|
|
Data: []*Node{},
|
|
|
|
}
|
|
|
|
included := map[string]*Node{}
|
2015-07-12 14:37:31 -04:00
|
|
|
|
2017-01-17 19:04:07 -05:00
|
|
|
for _, model := range models {
|
2016-01-05 16:13:24 -05:00
|
|
|
node, err := visitModelNode(model, &included, true)
|
2015-07-07 12:52:38 -04:00
|
|
|
if err != nil {
|
2015-08-07 18:18:10 -04:00
|
|
|
return nil, err
|
2015-07-07 12:52:38 -04:00
|
|
|
}
|
2017-01-17 19:04:07 -05:00
|
|
|
payload.Data = append(payload.Data, node)
|
2015-07-10 11:57:27 -04:00
|
|
|
}
|
2017-01-17 19:04:07 -05:00
|
|
|
payload.Included = nodeMapValues(&included)
|
2015-07-10 11:57:27 -04:00
|
|
|
|
2015-08-07 18:18:10 -04:00
|
|
|
return payload, nil
|
2015-07-07 12:52:38 -04:00
|
|
|
}
|
|
|
|
|
2016-09-13 01:12:42 -04:00
|
|
|
// MarshalOnePayloadEmbedded - This method not meant to for use in
|
2017-06-28 20:30:09 -04:00
|
|
|
// implementation code, although feel free. The purpose of this
|
|
|
|
// method is for use in tests. In most cases, your request
|
|
|
|
// payloads for create will be embedded rather than sideloaded for
|
|
|
|
// related records. This method will serialize a single struct
|
|
|
|
// pointer into an embedded json response. In other words, there
|
|
|
|
// will be no, "included", array in the json all relationships will
|
2016-09-13 01:12:42 -04:00
|
|
|
// be serailized inline in the data.
|
2015-07-13 14:23:03 -04:00
|
|
|
//
|
2017-06-28 20:30:09 -04:00
|
|
|
// However, in tests, you may want to construct payloads to post
|
|
|
|
// to create methods that are embedded to most closely resemble
|
|
|
|
// the payloads that will be produced by the client. This is what
|
|
|
|
// this method is intended for.
|
2015-07-13 14:23:03 -04:00
|
|
|
//
|
|
|
|
// model interface{} should be a pointer to a struct.
|
2015-07-10 20:34:04 -04:00
|
|
|
func MarshalOnePayloadEmbedded(w io.Writer, model interface{}) error {
|
2016-01-05 16:13:24 -05:00
|
|
|
rootNode, err := visitModelNode(model, nil, false)
|
2015-07-08 16:28:38 -04:00
|
|
|
if err != nil {
|
2015-07-10 20:34:04 -04:00
|
|
|
return err
|
2015-07-08 16:28:38 -04:00
|
|
|
}
|
|
|
|
|
2015-07-10 20:34:04 -04:00
|
|
|
payload := &OnePayload{Data: rootNode}
|
2015-07-08 16:28:38 -04:00
|
|
|
|
2018-10-16 10:33:23 -04:00
|
|
|
return json.NewEncoder(w).Encode(payload)
|
2015-07-08 16:28:38 -04:00
|
|
|
}
|
|
|
|
|
2017-01-20 19:13:04 -05:00
|
|
|
func visitModelNode(model interface{}, included *map[string]*Node,
|
|
|
|
sideload bool) (*Node, error) {
|
2015-07-10 12:07:12 -04:00
|
|
|
node := new(Node)
|
2015-07-05 11:59:30 -04:00
|
|
|
|
2015-07-06 17:39:24 -04:00
|
|
|
var er error
|
2018-06-17 22:19:26 -04:00
|
|
|
value := reflect.ValueOf(model)
|
2023-11-21 20:14:36 -05:00
|
|
|
if value.Kind() == reflect.Ptr && value.IsNil() {
|
2018-06-17 22:19:26 -04:00
|
|
|
return nil, nil
|
|
|
|
}
|
2015-07-05 13:59:35 -04:00
|
|
|
|
2023-11-21 20:14:36 -05:00
|
|
|
var modelValue reflect.Value
|
|
|
|
var modelType reflect.Type
|
|
|
|
if value.Kind() == reflect.Ptr {
|
|
|
|
modelValue = value.Elem()
|
|
|
|
modelType = value.Type().Elem()
|
|
|
|
} else {
|
|
|
|
modelValue = value
|
|
|
|
modelType = value.Type()
|
|
|
|
}
|
2015-07-05 11:59:30 -04:00
|
|
|
|
2016-01-05 16:13:24 -05:00
|
|
|
for i := 0; i < modelValue.NumField(); i++ {
|
|
|
|
structField := modelValue.Type().Field(i)
|
2017-01-20 19:13:04 -05:00
|
|
|
tag := structField.Tag.Get(annotationJSONAPI)
|
2015-07-08 16:11:03 -04:00
|
|
|
if tag == "" {
|
2016-01-05 16:13:24 -05:00
|
|
|
continue
|
2015-07-08 16:11:03 -04:00
|
|
|
}
|
|
|
|
|
2015-07-20 19:10:52 -04:00
|
|
|
fieldValue := modelValue.Field(i)
|
Added support for string, int(8,16,32,64), uint(8,16,32,64) and each … (#51)
* Added support for string, int(8,16,32,64), uint(8,16,32,64) and each of their ptr types as acceptable to use for the ID field.
* No longer declaring a new idErr var; also eliminate the switch within a switch - if the ID field was a string or *string it will continue. Added a couple extra tests.
2016-09-22 18:02:30 -04:00
|
|
|
fieldType := modelType.Field(i)
|
2015-07-20 19:10:52 -04:00
|
|
|
|
2017-01-20 19:13:04 -05:00
|
|
|
args := strings.Split(tag, annotationSeperator)
|
2015-07-05 13:59:35 -04:00
|
|
|
|
2015-09-10 18:55:51 -04:00
|
|
|
if len(args) < 1 {
|
2016-01-05 16:13:24 -05:00
|
|
|
er = ErrBadJSONAPIStructTag
|
|
|
|
break
|
2015-07-08 14:49:36 -04:00
|
|
|
}
|
|
|
|
|
2015-09-10 18:55:51 -04:00
|
|
|
annotation := args[0]
|
2015-07-05 13:59:35 -04:00
|
|
|
|
2017-01-20 19:13:04 -05:00
|
|
|
if (annotation == annotationClientID && len(args) != 1) ||
|
|
|
|
(annotation != annotationClientID && len(args) < 2) {
|
2016-01-05 16:13:24 -05:00
|
|
|
er = ErrBadJSONAPIStructTag
|
|
|
|
break
|
2015-09-10 18:55:51 -04:00
|
|
|
}
|
2015-07-10 11:20:49 -04:00
|
|
|
|
2017-01-20 19:13:04 -05:00
|
|
|
if annotation == annotationPrimary {
|
Added support for string, int(8,16,32,64), uint(8,16,32,64) and each … (#51)
* Added support for string, int(8,16,32,64), uint(8,16,32,64) and each of their ptr types as acceptable to use for the ID field.
* No longer declaring a new idErr var; also eliminate the switch within a switch - if the ID field was a string or *string it will continue. Added a couple extra tests.
2016-09-22 18:02:30 -04:00
|
|
|
v := fieldValue
|
|
|
|
|
|
|
|
// Deal with PTRS
|
|
|
|
var kind reflect.Kind
|
|
|
|
if fieldValue.Kind() == reflect.Ptr {
|
|
|
|
kind = fieldType.Type.Elem().Kind()
|
|
|
|
v = reflect.Indirect(fieldValue)
|
|
|
|
} else {
|
|
|
|
kind = fieldType.Type.Kind()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle allowed types
|
|
|
|
switch kind {
|
|
|
|
case reflect.String:
|
|
|
|
node.ID = v.Interface().(string)
|
|
|
|
case reflect.Int:
|
|
|
|
node.ID = strconv.FormatInt(int64(v.Interface().(int)), 10)
|
|
|
|
case reflect.Int8:
|
|
|
|
node.ID = strconv.FormatInt(int64(v.Interface().(int8)), 10)
|
|
|
|
case reflect.Int16:
|
|
|
|
node.ID = strconv.FormatInt(int64(v.Interface().(int16)), 10)
|
|
|
|
case reflect.Int32:
|
|
|
|
node.ID = strconv.FormatInt(int64(v.Interface().(int32)), 10)
|
|
|
|
case reflect.Int64:
|
|
|
|
node.ID = strconv.FormatInt(v.Interface().(int64), 10)
|
|
|
|
case reflect.Uint:
|
|
|
|
node.ID = strconv.FormatUint(uint64(v.Interface().(uint)), 10)
|
|
|
|
case reflect.Uint8:
|
|
|
|
node.ID = strconv.FormatUint(uint64(v.Interface().(uint8)), 10)
|
|
|
|
case reflect.Uint16:
|
|
|
|
node.ID = strconv.FormatUint(uint64(v.Interface().(uint16)), 10)
|
|
|
|
case reflect.Uint32:
|
|
|
|
node.ID = strconv.FormatUint(uint64(v.Interface().(uint32)), 10)
|
|
|
|
case reflect.Uint64:
|
|
|
|
node.ID = strconv.FormatUint(v.Interface().(uint64), 10)
|
2016-01-07 15:14:57 -05:00
|
|
|
default:
|
Added support for string, int(8,16,32,64), uint(8,16,32,64) and each … (#51)
* Added support for string, int(8,16,32,64), uint(8,16,32,64) and each of their ptr types as acceptable to use for the ID field.
* No longer declaring a new idErr var; also eliminate the switch within a switch - if the ID field was a string or *string it will continue. Added a couple extra tests.
2016-09-22 18:02:30 -04:00
|
|
|
// We had a JSON float (numeric), but our field was not one of the
|
|
|
|
// allowed numeric types
|
2016-01-07 15:14:57 -05:00
|
|
|
er = ErrBadJSONAPIID
|
2018-10-16 10:33:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if er != nil {
|
2016-01-07 15:14:57 -05:00
|
|
|
break
|
2016-01-05 16:13:24 -05:00
|
|
|
}
|
|
|
|
|
2015-09-10 18:55:51 -04:00
|
|
|
node.Type = args[1]
|
2017-01-20 19:13:04 -05:00
|
|
|
} else if annotation == annotationClientID {
|
2016-01-05 16:13:24 -05:00
|
|
|
clientID := fieldValue.String()
|
|
|
|
if clientID != "" {
|
2016-07-05 21:32:15 -04:00
|
|
|
node.ClientID = clientID
|
2016-01-05 16:13:24 -05:00
|
|
|
}
|
2017-01-20 19:13:04 -05:00
|
|
|
} else if annotation == annotationAttribute {
|
2021-04-05 14:13:02 -04:00
|
|
|
var omitEmpty, iso8601, rfc3339 bool
|
2016-01-05 16:13:24 -05:00
|
|
|
|
|
|
|
if len(args) > 2 {
|
2016-09-22 16:58:07 -04:00
|
|
|
for _, arg := range args[2:] {
|
|
|
|
switch arg {
|
2017-01-20 19:13:04 -05:00
|
|
|
case annotationOmitEmpty:
|
2016-09-22 16:58:07 -04:00
|
|
|
omitEmpty = true
|
2017-01-20 19:13:04 -05:00
|
|
|
case annotationISO8601:
|
2016-09-22 16:58:07 -04:00
|
|
|
iso8601 = true
|
2021-04-05 14:13:02 -04:00
|
|
|
case annotationRFC3339:
|
|
|
|
rfc3339 = true
|
2016-09-22 16:58:07 -04:00
|
|
|
}
|
|
|
|
}
|
2016-01-05 16:13:24 -05:00
|
|
|
}
|
|
|
|
|
2015-09-10 18:55:51 -04:00
|
|
|
if node.Attributes == nil {
|
|
|
|
node.Attributes = make(map[string]interface{})
|
|
|
|
}
|
2015-07-06 13:38:42 -04:00
|
|
|
|
2015-09-10 18:55:51 -04:00
|
|
|
if fieldValue.Type() == reflect.TypeOf(time.Time{}) {
|
2016-01-05 16:13:24 -05:00
|
|
|
t := fieldValue.Interface().(time.Time)
|
|
|
|
|
|
|
|
if t.IsZero() {
|
|
|
|
continue
|
2015-07-06 13:38:42 -04:00
|
|
|
}
|
|
|
|
|
2016-09-22 16:58:07 -04:00
|
|
|
if iso8601 {
|
|
|
|
node.Attributes[args[1]] = t.UTC().Format(iso8601TimeFormat)
|
2021-04-05 14:13:02 -04:00
|
|
|
} else if rfc3339 {
|
|
|
|
node.Attributes[args[1]] = t.UTC().Format(time.RFC3339)
|
2016-09-22 16:58:07 -04:00
|
|
|
} else {
|
|
|
|
node.Attributes[args[1]] = t.Unix()
|
|
|
|
}
|
2015-10-13 12:10:10 -04:00
|
|
|
} else if fieldValue.Type() == reflect.TypeOf(new(time.Time)) {
|
|
|
|
// A time pointer may be nil
|
2016-01-05 16:13:24 -05:00
|
|
|
if fieldValue.IsNil() {
|
|
|
|
if omitEmpty {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2015-10-13 12:10:10 -04:00
|
|
|
node.Attributes[args[1]] = nil
|
|
|
|
} else {
|
2016-01-05 16:13:24 -05:00
|
|
|
tm := fieldValue.Interface().(*time.Time)
|
|
|
|
|
|
|
|
if tm.IsZero() && omitEmpty {
|
|
|
|
continue
|
2015-10-13 12:10:10 -04:00
|
|
|
}
|
|
|
|
|
2016-09-22 16:58:07 -04:00
|
|
|
if iso8601 {
|
|
|
|
node.Attributes[args[1]] = tm.UTC().Format(iso8601TimeFormat)
|
2021-04-05 14:13:02 -04:00
|
|
|
} else if rfc3339 {
|
|
|
|
node.Attributes[args[1]] = tm.UTC().Format(time.RFC3339)
|
2016-09-22 16:58:07 -04:00
|
|
|
} else {
|
|
|
|
node.Attributes[args[1]] = tm.Unix()
|
|
|
|
}
|
2015-10-13 12:10:10 -04:00
|
|
|
}
|
2015-09-10 18:55:51 -04:00
|
|
|
} else {
|
2016-07-16 11:24:21 -04:00
|
|
|
// Dealing with a fieldValue that is not a time
|
|
|
|
emptyValue := reflect.Zero(fieldValue.Type())
|
2016-01-05 16:13:24 -05:00
|
|
|
|
2016-07-16 11:24:21 -04:00
|
|
|
// See if we need to omit this field
|
2018-03-12 21:15:16 -04:00
|
|
|
if omitEmpty && reflect.DeepEqual(fieldValue.Interface(), emptyValue.Interface()) {
|
2016-01-05 16:13:24 -05:00
|
|
|
continue
|
2016-07-16 11:24:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
strAttr, ok := fieldValue.Interface().(string)
|
|
|
|
if ok {
|
2016-01-05 16:13:24 -05:00
|
|
|
node.Attributes[args[1]] = strAttr
|
|
|
|
} else {
|
|
|
|
node.Attributes[args[1]] = fieldValue.Interface()
|
|
|
|
}
|
2015-09-10 18:55:51 -04:00
|
|
|
}
|
2017-01-20 19:13:04 -05:00
|
|
|
} else if annotation == annotationRelation {
|
|
|
|
var omitEmpty bool
|
|
|
|
|
|
|
|
//add support for 'omitempty' struct tag for marshaling as absent
|
|
|
|
if len(args) > 2 {
|
|
|
|
omitEmpty = args[2] == annotationOmitEmpty
|
|
|
|
}
|
2015-07-06 13:38:42 -04:00
|
|
|
|
2017-01-20 19:13:04 -05:00
|
|
|
isSlice := fieldValue.Type().Kind() == reflect.Slice
|
|
|
|
if omitEmpty &&
|
|
|
|
(isSlice && fieldValue.Len() < 1 ||
|
|
|
|
(!isSlice && fieldValue.IsNil())) {
|
2016-01-05 16:13:24 -05:00
|
|
|
continue
|
2015-09-10 18:55:51 -04:00
|
|
|
}
|
2015-07-06 13:38:42 -04:00
|
|
|
|
2015-09-10 18:55:51 -04:00
|
|
|
if node.Relationships == nil {
|
|
|
|
node.Relationships = make(map[string]interface{})
|
|
|
|
}
|
|
|
|
|
2017-01-20 20:55:59 -05:00
|
|
|
var relLinks *Links
|
|
|
|
if linkableModel, ok := model.(RelationshipLinkable); ok {
|
|
|
|
relLinks = linkableModel.JSONAPIRelationshipLinks(args[1])
|
|
|
|
}
|
|
|
|
|
2017-02-16 20:40:50 -05:00
|
|
|
var relMeta *Meta
|
|
|
|
if metableModel, ok := model.(RelationshipMetable); ok {
|
|
|
|
relMeta = metableModel.JSONAPIRelationshipMeta(args[1])
|
|
|
|
}
|
|
|
|
|
2015-09-10 18:55:51 -04:00
|
|
|
if isSlice {
|
2017-01-20 19:13:04 -05:00
|
|
|
// to-many relationship
|
2016-09-13 01:12:42 -04:00
|
|
|
relationship, err := visitModelNodeRelationships(
|
|
|
|
fieldValue,
|
|
|
|
included,
|
|
|
|
sideload,
|
|
|
|
)
|
2017-01-20 19:13:04 -05:00
|
|
|
if err != nil {
|
|
|
|
er = err
|
|
|
|
break
|
|
|
|
}
|
2017-01-20 20:55:59 -05:00
|
|
|
relationship.Links = relLinks
|
2017-02-16 20:40:50 -05:00
|
|
|
relationship.Meta = relMeta
|
2015-09-10 18:55:51 -04:00
|
|
|
|
2017-01-20 19:13:04 -05:00
|
|
|
if sideload {
|
|
|
|
shallowNodes := []*Node{}
|
|
|
|
for _, n := range relationship.Data {
|
|
|
|
appendIncluded(included, n)
|
|
|
|
shallowNodes = append(shallowNodes, toShallowNode(n))
|
|
|
|
}
|
2015-09-10 18:55:51 -04:00
|
|
|
|
2017-01-20 19:13:04 -05:00
|
|
|
node.Relationships[args[1]] = &RelationshipManyNode{
|
2017-01-20 20:55:59 -05:00
|
|
|
Data: shallowNodes,
|
|
|
|
Links: relationship.Links,
|
2017-02-16 20:40:50 -05:00
|
|
|
Meta: relationship.Meta,
|
2015-07-06 13:38:42 -04:00
|
|
|
}
|
|
|
|
} else {
|
2017-01-20 19:13:04 -05:00
|
|
|
node.Relationships[args[1]] = relationship
|
2015-09-10 18:55:51 -04:00
|
|
|
}
|
|
|
|
} else {
|
2017-01-20 19:13:04 -05:00
|
|
|
// to-one relationships
|
|
|
|
|
|
|
|
// Handle null relationship case
|
|
|
|
if fieldValue.IsNil() {
|
|
|
|
node.Relationships[args[1]] = &RelationshipOneNode{Data: nil}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-09-13 01:12:42 -04:00
|
|
|
relationship, err := visitModelNode(
|
|
|
|
fieldValue.Interface(),
|
|
|
|
included,
|
2017-01-20 19:13:04 -05:00
|
|
|
sideload,
|
|
|
|
)
|
|
|
|
if err != nil {
|
2015-09-10 18:55:51 -04:00
|
|
|
er = err
|
2016-01-05 16:13:24 -05:00
|
|
|
break
|
2015-07-05 11:59:30 -04:00
|
|
|
}
|
2017-01-20 19:13:04 -05:00
|
|
|
|
|
|
|
if sideload {
|
|
|
|
appendIncluded(included, relationship)
|
|
|
|
node.Relationships[args[1]] = &RelationshipOneNode{
|
2017-01-20 20:55:59 -05:00
|
|
|
Data: toShallowNode(relationship),
|
|
|
|
Links: relLinks,
|
2017-02-16 20:40:50 -05:00
|
|
|
Meta: relMeta,
|
2017-01-20 19:13:04 -05:00
|
|
|
}
|
|
|
|
} else {
|
2017-01-20 20:55:59 -05:00
|
|
|
node.Relationships[args[1]] = &RelationshipOneNode{
|
|
|
|
Data: relationship,
|
|
|
|
Links: relLinks,
|
2017-02-16 20:40:50 -05:00
|
|
|
Meta: relMeta,
|
2017-01-20 20:55:59 -05:00
|
|
|
}
|
2017-01-20 19:13:04 -05:00
|
|
|
}
|
2015-07-05 11:59:30 -04:00
|
|
|
}
|
2015-09-10 18:55:51 -04:00
|
|
|
|
|
|
|
} else {
|
2016-01-05 16:13:24 -05:00
|
|
|
er = ErrBadJSONAPIStructTag
|
|
|
|
break
|
2015-07-05 11:59:30 -04:00
|
|
|
}
|
2016-01-05 16:13:24 -05:00
|
|
|
}
|
2015-07-05 11:59:30 -04:00
|
|
|
|
2015-07-06 17:39:24 -04:00
|
|
|
if er != nil {
|
2016-01-05 16:13:24 -05:00
|
|
|
return nil, er
|
2015-07-05 13:59:35 -04:00
|
|
|
}
|
2017-01-20 20:55:59 -05:00
|
|
|
|
|
|
|
if linkableModel, isLinkable := model.(Linkable); isLinkable {
|
|
|
|
jl := linkableModel.JSONAPILinks()
|
|
|
|
if er := jl.validate(); er != nil {
|
|
|
|
return nil, er
|
|
|
|
}
|
|
|
|
node.Links = linkableModel.JSONAPILinks()
|
|
|
|
}
|
|
|
|
|
2017-02-16 20:40:50 -05:00
|
|
|
if metableModel, ok := model.(Metable); ok {
|
|
|
|
node.Meta = metableModel.JSONAPIMeta()
|
|
|
|
}
|
|
|
|
|
2016-01-05 16:13:24 -05:00
|
|
|
return node, nil
|
2015-07-05 13:59:35 -04:00
|
|
|
}
|
|
|
|
|
2015-07-10 14:41:54 -04:00
|
|
|
func toShallowNode(node *Node) *Node {
|
|
|
|
return &Node{
|
2016-07-05 21:32:15 -04:00
|
|
|
ID: node.ID,
|
2015-07-10 14:41:54 -04:00
|
|
|
Type: node.Type,
|
|
|
|
}
|
2015-07-10 11:25:24 -04:00
|
|
|
}
|
|
|
|
|
2017-01-28 22:43:47 -05:00
|
|
|
func visitModelNodeRelationships(models reflect.Value, included *map[string]*Node,
|
|
|
|
sideload bool) (*RelationshipManyNode, error) {
|
2017-01-20 19:13:04 -05:00
|
|
|
nodes := []*Node{}
|
2015-10-12 14:05:06 -04:00
|
|
|
|
2015-07-05 13:59:35 -04:00
|
|
|
for i := 0; i < models.Len(); i++ {
|
2016-01-05 16:13:24 -05:00
|
|
|
n := models.Index(i).Interface()
|
2017-01-20 19:13:04 -05:00
|
|
|
|
2016-01-05 16:13:24 -05:00
|
|
|
node, err := visitModelNode(n, included, sideload)
|
2015-07-05 13:59:35 -04:00
|
|
|
if err != nil {
|
2016-01-05 16:13:24 -05:00
|
|
|
return nil, err
|
2015-07-05 13:59:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
nodes = append(nodes, node)
|
2015-07-05 11:59:30 -04:00
|
|
|
}
|
|
|
|
|
2016-01-05 16:13:24 -05:00
|
|
|
return &RelationshipManyNode{Data: nodes}, nil
|
2015-07-05 11:59:30 -04:00
|
|
|
}
|
2015-07-07 12:52:38 -04:00
|
|
|
|
2016-01-05 16:13:24 -05:00
|
|
|
func appendIncluded(m *map[string]*Node, nodes ...*Node) {
|
|
|
|
included := *m
|
2015-07-12 10:59:37 -04:00
|
|
|
|
2016-01-05 16:13:24 -05:00
|
|
|
for _, n := range nodes {
|
2016-07-05 21:32:15 -04:00
|
|
|
k := fmt.Sprintf("%s,%s", n.Type, n.ID)
|
2016-01-05 16:13:24 -05:00
|
|
|
|
|
|
|
if _, hasNode := included[k]; hasNode {
|
|
|
|
continue
|
2015-07-12 10:59:37 -04:00
|
|
|
}
|
2016-01-05 16:13:24 -05:00
|
|
|
|
|
|
|
included[k] = n
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func nodeMapValues(m *map[string]*Node) []*Node {
|
|
|
|
mp := *m
|
|
|
|
nodes := make([]*Node, len(mp))
|
|
|
|
|
|
|
|
i := 0
|
|
|
|
for _, n := range mp {
|
|
|
|
nodes[i] = n
|
|
|
|
i++
|
2015-07-12 10:59:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return nodes
|
|
|
|
}
|
2016-09-13 01:12:42 -04:00
|
|
|
|
|
|
|
func convertToSliceInterface(i *interface{}) ([]interface{}, error) {
|
|
|
|
vals := reflect.ValueOf(*i)
|
|
|
|
if vals.Kind() != reflect.Slice {
|
|
|
|
return nil, ErrExpectedSlice
|
|
|
|
}
|
|
|
|
var response []interface{}
|
|
|
|
for x := 0; x < vals.Len(); x++ {
|
|
|
|
response = append(response, vals.Index(x).Interface())
|
|
|
|
}
|
|
|
|
return response, nil
|
|
|
|
}
|