-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresource.go
62 lines (56 loc) · 1.69 KB
/
resource.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
package jsonapi
import (
"fmt"
"reflect"
)
// Resource is a JSON:API resource object.
// See https://jsonapi.org/format/#document-resource-objects.
type Resource struct {
// Exception: The id member is not required when the resource object originates at the client and represents a new resource to be created on the server.
ID string `json:"id,omitempty"`
Type string `json:"type,omitempty"`
Attributes Attributes `json:"attributes,omitempty"`
Relationships Relationships `json:"relationships,omitempty"`
Links Links `json:"links,omitempty"`
Meta Meta `json:"meta,omitempty"`
}
// NewResource generates a new JSON:API resource object.
func NewResource() *Resource {
return &Resource{
Attributes: Attributes{},
Links: Links{},
Meta: Meta{},
}
}
// SetIDAndType sets the id and type of a JSON:API resource object.
// TODO warn or error out when ID isn't plural?
func (r *Resource) SetIDAndType(idValue reflect.Value, resourceType string) error {
kind := idValue.Kind()
id := ""
switch kind {
case reflect.String:
id, _ = idValue.Interface().(string)
case reflect.Int:
id = fmt.Sprintf("%d", idValue.Interface())
default:
return fmt.Errorf("ID must be a string or int, got %s", kind)
}
if id == "" {
return fmt.Errorf("ID must be set")
}
if resourceType == "" {
return fmt.Errorf("type must be set")
}
r.ID = id
r.Type = resourceType
return nil
}
// SetLinks sets the links of a JSON:API resource object.
func (r *Resource) SetLinks(linksValue reflect.Value) error {
links, ok := linksValue.Interface().(Links)
if !ok {
return fmt.Errorf("field tagged as link needs to be of jsonapi.Links type")
}
r.Links = links
return nil
}