-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.go
218 lines (184 loc) · 3.36 KB
/
error.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
package yeahapi
import (
"bytes"
"fmt"
"github.com/gofrs/uuid"
)
type Op string
type Kind int
type Error struct {
Op Op
Kind Kind
Err error
Message string
UserID UserID
ClientID ClientID
}
const Separator = ":\n\t"
const (
EOther Kind = iota
EInvalid
EPermission
ENotFound
EFound
ENotImplemented
EUnathorized
EMethodNotAllowed
EOtpCodeExpired
EOtpHashNotMatched
EInternal
)
func (k Kind) String() string {
switch k {
case EInternal:
return "internal error"
case EOther:
return "other error"
case ENotFound:
return "item does not exit"
case EFound:
return "item already exists"
case EInvalid:
return "invalid error"
case ENotImplemented:
return "not implemented"
case EUnathorized:
return "unauthorized"
case EMethodNotAllowed:
return "method not allowed"
case EOtpCodeExpired:
return "otp code expired"
case EOtpHashNotMatched:
return "otp hash not matched"
case EPermission:
return "permission denied"
}
return "unknown error"
}
func (e Error) Error() string {
b := new(bytes.Buffer)
if e.Op != "" {
b.WriteString(string(e.Op))
}
if !e.UserID.IsNil() {
pad(b, ": ")
b.WriteString("user ")
b.WriteString(e.UserID.String())
}
if e.Kind != 0 {
pad(b, ": ")
b.WriteString(e.Kind.String())
}
if e.Err != nil {
if prevErr, ok := e.Err.(*Error); ok {
if !prevErr.isZero() {
pad(b, Separator)
b.WriteString(e.Err.Error())
}
} else {
pad(b, ": ")
b.WriteString(e.Err.Error())
}
}
if b.Len() == 0 {
return "no error"
}
return b.String()
}
func ErrorMessage(err error) string {
if err == nil {
return ""
} else if e, ok := err.(*Error); ok && e.Message != "" {
return e.Message
} else if ok && e.Err != nil {
return ErrorMessage(e.Err)
}
return ""
}
func ErrorKind(err error) Kind {
if err == nil {
return EOther
} else if e, ok := err.(*Error); ok && e.Kind != 0 {
return e.Kind
} else if ok && e.Err != nil {
return ErrorKind(e.Err)
}
return EOther
}
func E(args ...interface{}) error {
if len(args) == 0 {
panic("call to errors.E with no arguments")
}
e := &Error{}
for _, arg := range args {
switch arg := arg.(type) {
case UserID:
e.UserID = arg
case ClientID:
e.ClientID = arg
case Op:
e.Op = arg
case error:
e.Err = arg
case Kind:
e.Kind = arg
case string:
e.Message = arg
// e.Err = Str(arg)
case *Error:
copy := *arg
e.Err = ©
default:
panic("bad call to errors.E")
}
}
prev, ok := e.Err.(*Error)
if !ok {
return e
}
if prev.UserID == e.UserID {
prev.UserID.UUID = uuid.Nil
}
if prev.Kind == e.Kind {
prev.Kind = EOther
}
if e.Kind == EOther {
e.Kind = prev.Kind
prev.Kind = EOther
}
return e
}
func Errorf(format string, args ...interface{}) error {
return &errorString{fmt.Sprintf(format, args...)}
}
func EIs(kind Kind, err error) bool {
e, ok := err.(*Error)
if !ok {
return false
}
if e.Kind != EOther {
return e.Kind == kind
}
if e.Err != nil {
return EIs(kind, e.Err)
}
return false
}
func Str(text string) error {
return &errorString{text}
}
type errorString struct {
s string
}
func (e *errorString) Error() string {
return e.s
}
func pad(b *bytes.Buffer, str string) {
if b.Len() == 0 {
return
}
b.WriteString(str)
}
func (e *Error) isZero() bool {
return (e.UserID.IsNil() || e.ClientID.IsNil()) && e.Op == "" && e.Kind == 0 && e.Err == nil
}