-
Notifications
You must be signed in to change notification settings - Fork 9
/
errors.go
166 lines (135 loc) · 5.35 KB
/
errors.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
package jsonapi
import (
"encoding/json"
"errors"
"fmt"
"sort"
"strconv"
"strings"
)
var (
// ErrMarshalInvalidPrimaryField indicates that the id (primary) fields was invalid.
ErrMarshalInvalidPrimaryField = errors.New("primary/id field must be a string or implement fmt.Stringer or in a struct which implements MarshalIdentifier")
// ErrUnmarshalInvalidPrimaryField indicates that the id (primary) fields was invalid.
ErrUnmarshalInvalidPrimaryField = errors.New("primary/id field must be a string or in a struct which implements UnmarshalIdentifer")
// ErrUnmarshalDuplicatePrimaryField indicates that the id (primary) field is duplicated in a struct.
ErrUnmarshalDuplicatePrimaryField = errors.New("there must be only one `jsonapi:\"primary\"` field to Unmarshal")
// ErrMissingPrimaryField indicates that the id (primary) field is not identified.
ErrMissingPrimaryField = errors.New("primary/id field must labeled with `jsonapi:\"primary,{type}\"`")
// ErrEmptyPrimaryField indicates that the id (primary) field is identified but empty.
ErrEmptyPrimaryField = errors.New("the `jsonapi:\"primary\"` field value must not be empty")
// ErrMissingLinkFields indicates that a LinkObject is not valid.
ErrMissingLinkFields = errors.New("at least one of Links.Self or Links.Related must be set to a nonempty string or *LinkObject")
// ErrEmptyDataObject indicates that a primary or relationship data member is incorrectly represented by an empty JSON object {}
ErrEmptyDataObject = errors.New("resource \"data\" members may not be represented by an empty object {}")
// ErrDocumentMissingRequiredMembers indicates that a document does not have at least one required top-level member
ErrDocumentMissingRequiredMembers = errors.New("document is missing required top-level members; must have one of: \"data\", \"meta\", \"errors\"")
// ErrRelationshipMissingRequiredMembers indicates that a relationship does not have at least one required member
ErrRelationshipMissingRequiredMembers = errors.New("relationship is missing required top-level members; must have one of: \"data\", \"meta\", \"links\"")
)
// TypeError indicates that an unexpected type was encountered.
type TypeError struct {
Actual string
Expected []string
}
// Error implements the error interface.
func (e *TypeError) Error() string {
if len(e.Expected) > 0 {
return fmt.Sprintf("got type %q expected one of %q", e.Actual, strings.Join(e.Expected, ","))
}
return fmt.Sprintf("got type %q expected %q", e.Actual, e.Expected[0])
}
// TagError indicates that an invalid struct tag was encountered.
type TagError struct {
TagName string
Field string
Reason string
}
// Error implements the error interface.
func (e *TagError) Error() string {
return fmt.Sprintf("invalid %q tag on field %q: %s", e.TagName, e.Field, e.Reason)
}
// PartialLinkageError indicates that an incomplete relationship chain was encountered.
type PartialLinkageError struct {
invalidResources []string
}
// Error implements the error interface.
func (e *PartialLinkageError) Error() string {
sort.Strings(e.invalidResources)
return fmt.Sprintf(
"the following resources have no chain of relationships from primary data: %q",
strings.Join(e.invalidResources, ","),
)
}
// MemberNameValidationError indicates that a document member name failed a validation step.
type MemberNameValidationError struct {
MemberName string
}
// Error implements the error interface.
func (e *MemberNameValidationError) Error() string {
return fmt.Sprintf("invalid member name: %s", e.MemberName)
}
// ErrorLink represents a JSON:API error links object as defined by https://jsonapi.org/format/1.0/#error-objects.
type ErrorLink struct {
About any `json:"about,omitempty"`
}
// ErrorSource represents a JSON:API Error.Source as defined by https://jsonapi.org/format/1.0/#error-objects.
type ErrorSource struct {
Pointer string `json:"pointer,omitempty"`
Parameter string `json:"parameter,omitempty"`
}
// Status provides a helper for setting an Error.Status value.
func Status(s int) *int {
return &s
}
// Error represents a JSON:API error object as defined by https://jsonapi.org/format/1.0/#error-objects.
type Error struct {
ID string `json:"id,omitempty"`
Links *ErrorLink `json:"links,omitempty"`
Status *int `json:"status,omitempty"`
Code string `json:"code,omitempty"`
Title string `json:"title,omitempty"`
Detail string `json:"detail,omitempty"`
Source *ErrorSource `json:"source,omitempty"`
Meta any `json:"meta,omitempty"`
}
// MarshalJSON implements the json.Marshaler interface.
func (e *Error) MarshalJSON() ([]byte, error) {
var status string
if e.Status != nil {
status = fmt.Sprintf("%d", *e.Status)
}
type alias Error
return json.Marshal(&struct {
Status string `json:"status,omitempty"`
*alias
}{
Status: status,
alias: (*alias)(e),
})
}
// UnmarshalJSON implements the json.Unmarshaler interface.
func (e *Error) UnmarshalJSON(data []byte) error {
type alias Error
aux := &struct {
*alias
Status string `json:"status"`
}{
alias: (*alias)(e),
}
if err := json.Unmarshal(data, &aux); err != nil {
return err
}
if aux.Status != "" {
status, err := strconv.Atoi(aux.Status)
if err != nil {
return err
}
e.Status = &status
}
return nil
}
// Error implements the error interface.
func (e *Error) Error() string {
return fmt.Sprintf("%s: %s", e.Title, e.Detail)
}