jsonapi/response.go

327 lines
8.3 KiB
Go
Raw Normal View History

2015-07-05 11:59:30 -04:00
package jsonapi
import (
"encoding/json"
2015-07-05 11:59:30 -04:00
"fmt"
"io"
2015-07-05 11:59:30 -04:00
"reflect"
"strings"
"time"
2015-07-05 11:59:30 -04:00
)
2015-09-10 18:55:51 -04:00
type BadJSONAPIStructTag struct {
fieldTypeName string
}
func (e BadJSONAPIStructTag) Error() string {
return fmt.Sprintf("jsonapi tag, on %s, had too few arguments", e.fieldTypeName)
}
// MarshalOnePayload writes a jsonapi response with one, with related records sideloaded, into "included" array.
2015-07-13 14:23:03 -04:00
// This method encodes a response for a single record only. Hence, data will be a single record rather
// than an array of records. If you want to serialize many records, see, MarshalManyPayload.
//
// See UnmarshalPayload for usage example.
//
// model interface{} should be a pointer to a struct.
2015-07-10 20:16:26 -04:00
func MarshalOnePayload(w io.Writer, model interface{}) error {
payload, err := MarshalOne(model)
2015-07-10 20:16:26 -04:00
if err != nil {
return err
}
if err := json.NewEncoder(w).Encode(payload); err != nil {
return err
}
return nil
}
// MarshalOne does the same as MarshalOnePayload except it just returns the payload
// and doesn't write out results.
// Useful is you use your JSON rendering library.
func MarshalOne(model interface{}) (*OnePayload, error) {
rootNode, included, err := visitModelNode(model, true)
if err != nil {
return nil, err
}
payload := &OnePayload{Data: rootNode}
payload.Included = uniqueByTypeAndID(included)
return payload, nil
}
// MarshalManyPayload writes a jsonapi response with many records, with related records sideloaded, into "included" array.
2015-07-13 14:23:03 -04:00
// This method encodes a response for a slice of records, hence data will be an array of
// records rather than a single record. To serialize a single record, see MarshalOnePayload
//
// For example you could pass it, w, your http.ResponseWriter, and, models, a slice of Blog
// struct instance pointers as interface{}'s to write to the response,
//
2015-07-13 18:04:21 -04:00
// func ListBlogs(w http.ResponseWriter, r *http.Request) {
// // ... fetch your blogs and filter, offset, limit, etc ...
2015-07-13 14:23:03 -04:00
//
2015-07-13 18:04:21 -04:00
// blogs := testBlogsForList()
2015-07-13 14:23:03 -04:00
//
2015-07-13 18:04:21 -04:00
// w.WriteHeader(200)
// w.Header().Set("Content-Type", "application/vnd.api+json")
// if err := jsonapi.MarshalManyPayload(w, blogs); err != nil {
// http.Error(w, err.Error(), 500)
// }
// }
2015-07-13 14:23:03 -04:00
//
//
// Visit https://github.com/shwoodard/jsonapi#list for more info.
//
// models []interface{} should be a slice of struct pointers.
func MarshalManyPayload(w io.Writer, models []interface{}) error {
payload, err := MarshalMany(models)
if err != nil {
return err
}
if err := json.NewEncoder(w).Encode(payload); err != nil {
return err
}
return nil
}
// MarshalMany does the same as MarshalManyPayload except it just returns the payload
// and doesn't write out results.
// Useful is you use your JSON rendering library.
func MarshalMany(models []interface{}) (*ManyPayload, error) {
modelsValues := reflect.ValueOf(models)
data := make([]*Node, 0, modelsValues.Len())
2015-07-07 12:52:38 -04:00
var incl []*Node
2015-07-07 12:52:38 -04:00
for i := 0; i < modelsValues.Len(); i++ {
model := modelsValues.Index(i).Interface()
node, included, err := visitModelNode(model, true)
2015-07-07 12:52:38 -04:00
if err != nil {
return nil, err
2015-07-07 12:52:38 -04:00
}
data = append(data, node)
incl = append(incl, included...)
}
payload := &ManyPayload{
2015-07-07 12:52:38 -04:00
Data: data,
Included: uniqueByTypeAndID(incl),
}
return payload, nil
2015-07-07 12:52:38 -04:00
}
// MarshalOnePayloadEmbedded - This method not meant to for use in implementation code, although feel
2015-07-13 14:23:03 -04:00
// 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 be serailized inline in the data.
//
// However, in tests, you may want to construct payloads to post to create methods
2015-07-13 17:51:52 -04:00
// that are embedded to most closely resemble the payloads that will be produced by
2015-07-13 14:23:03 -04:00
// the client. This is what this method is intended for.
//
// model interface{} should be a pointer to a struct.
func MarshalOnePayloadEmbedded(w io.Writer, model interface{}) error {
rootNode, _, err := visitModelNode(model, false)
if err != nil {
return err
}
payload := &OnePayload{Data: rootNode}
if err := json.NewEncoder(w).Encode(payload); err != nil {
return err
}
return nil
}
func visitModelNode(model interface{}, sideload bool) (*Node, []*Node, error) {
node := new(Node)
2015-07-05 11:59:30 -04:00
2015-07-06 17:39:24 -04:00
var er error
var included []*Node
2015-07-05 13:59:35 -04:00
2015-07-06 13:38:42 -04:00
modelType := reflect.TypeOf(model).Elem()
modelValue := reflect.ValueOf(model).Elem()
2015-07-05 11:59:30 -04:00
2015-07-06 13:38:42 -04:00
var i = 0
2015-07-05 13:59:35 -04:00
modelType.FieldByNameFunc(func(name string) bool {
if er != nil {
return false
}
2015-07-06 13:38:42 -04:00
structField := modelType.Field(i)
tag := structField.Tag.Get("jsonapi")
2015-07-08 16:11:03 -04:00
if tag == "" {
i++
2015-07-08 16:11:03 -04:00
return false
}
fieldValue := modelValue.Field(i)
i++
2015-07-06 13:38:42 -04:00
args := strings.Split(tag, ",")
2015-07-05 13:59:35 -04:00
2015-09-10 18:55:51 -04:00
if len(args) < 1 {
er = BadJSONAPIStructTag{structField.Name}
return false
}
2015-09-10 18:55:51 -04:00
annotation := args[0]
2015-07-05 13:59:35 -04:00
2015-09-10 18:55:51 -04:00
if (annotation == "client-id" && len(args) != 1) || (annotation != "client-id" && len(args) != 2) {
er = BadJSONAPIStructTag{structField.Name}
return false
}
2015-09-10 18:55:51 -04:00
if annotation == "primary" {
node.Id = fmt.Sprintf("%v", fieldValue.Interface())
node.Type = args[1]
} else if annotation == "client-id" {
node.ClientId = fieldValue.String()
} else if annotation == "attr" {
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{}) {
isZeroMethod := fieldValue.MethodByName("IsZero")
isZero := isZeroMethod.Call(make([]reflect.Value, 0))[0].Interface().(bool)
if isZero {
2015-07-06 13:38:42 -04:00
return false
}
2015-09-10 18:55:51 -04:00
unix := fieldValue.MethodByName("Unix")
val := unix.Call(make([]reflect.Value, 0))[0]
node.Attributes[args[1]] = val.Int()
} else {
node.Attributes[args[1]] = fieldValue.Interface()
}
} else if annotation == "relation" {
isSlice := fieldValue.Type().Kind() == reflect.Slice
2015-07-06 13:38:42 -04:00
2015-09-10 18:55:51 -04:00
if (isSlice && fieldValue.Len() < 1) || (!isSlice && fieldValue.IsNil()) {
return false
}
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{})
}
if sideload && included == nil {
included = make([]*Node, 0)
}
if isSlice {
relationship, incl, err := visitModelNodeRelationships(args[1], fieldValue, sideload)
if err == nil {
2015-10-12 14:05:06 -04:00
d := relationship.Data
2015-09-10 18:55:51 -04:00
if sideload {
included = append(included, incl...)
var shallowNodes []*Node
for _, node := range d {
shallowNodes = append(shallowNodes, toShallowNode(node))
}
2015-09-10 18:55:51 -04:00
node.Relationships[args[1]] = &RelationshipManyNode{Data: shallowNodes}
2015-07-05 13:59:35 -04:00
} else {
2015-09-10 18:55:51 -04:00
node.Relationships[args[1]] = relationship
2015-07-06 13:38:42 -04:00
}
} else {
2015-09-10 18:55:51 -04:00
er = err
return false
}
} else {
relationship, incl, err := visitModelNode(fieldValue.Interface(), sideload)
if err == nil {
if sideload {
included = append(included, incl...)
included = append(included, relationship)
node.Relationships[args[1]] = &RelationshipOneNode{Data: toShallowNode(relationship)}
2015-07-06 13:38:42 -04:00
} else {
2015-09-10 18:55:51 -04:00
node.Relationships[args[1]] = &RelationshipOneNode{Data: relationship}
2015-07-05 13:59:35 -04:00
}
2015-09-10 18:55:51 -04:00
} else {
er = err
return false
2015-07-05 11:59:30 -04:00
}
}
2015-09-10 18:55:51 -04:00
} else {
er = fmt.Errorf("Unsupported jsonapi tag annotation, %s", annotation)
return false
2015-07-05 11:59:30 -04:00
}
return false
})
2015-07-06 17:39:24 -04:00
if er != nil {
return nil, nil, er
2015-07-05 13:59:35 -04:00
}
return node, included, nil
}
func toShallowNode(node *Node) *Node {
return &Node{
Id: node.Id,
Type: node.Type,
}
2015-07-10 11:25:24 -04:00
}
func visitModelNodeRelationships(relationName string, models reflect.Value, sideload bool) (*RelationshipManyNode, []*Node, error) {
var nodes []*Node
var included []*Node
if sideload {
included = make([]*Node, 0)
}
2015-10-12 14:05:06 -04:00
if models.Len() == 0 {
nodes = make([]*Node, 0)
}
2015-07-05 13:59:35 -04:00
for i := 0; i < models.Len(); i++ {
node, incl, err := visitModelNode(models.Index(i).Interface(), sideload)
2015-07-05 13:59:35 -04:00
if err != nil {
return nil, nil, err
2015-07-05 13:59:35 -04:00
}
nodes = append(nodes, node)
included = append(included, incl...)
2015-07-05 11:59:30 -04:00
}
included = append(included, nodes...)
n := &RelationshipManyNode{Data: nodes}
2015-07-05 13:59:35 -04:00
return n, included, nil
2015-07-05 11:59:30 -04:00
}
2015-07-07 12:52:38 -04:00
func uniqueByTypeAndID(nodes []*Node) []*Node {
2015-07-12 10:59:37 -04:00
uniqueIncluded := make(map[string]*Node)
for i := 0; i < len(nodes); i++ {
2015-07-12 11:46:30 -04:00
n := nodes[i]
2015-07-12 10:59:37 -04:00
k := fmt.Sprintf("%s,%s", n.Type, n.Id)
if uniqueIncluded[k] == nil {
uniqueIncluded[k] = n
} else {
2015-07-12 11:46:30 -04:00
nodes = append(nodes[:i], nodes[i+1:]...)
i--
2015-07-12 10:59:37 -04:00
}
}
return nodes
}