This repository has been archived by the owner on Aug 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.go
209 lines (180 loc) · 5.37 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
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
// MIT License
//
// Copyright (c) 2020 Lack
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
package errors
import (
"fmt"
"net/http"
"path/filepath"
"runtime"
"strings"
json "github.com/json-iterator/go"
)
// protoc -I. -I$GOPATH/src --gogofast_out=plugins=grpc:. --vine_out=:. errors.proto
// New generates a custom error.
func New(id, detail string, code int32) *Error {
e := &Error{
Id: id,
Code: code,
Detail: detail,
Status: http.StatusText(int(code)),
}
return e
}
// WithChild fills Error.Child
func (e *Error) WithChild(code int32, format string, a ...interface{}) *Error {
e.Child = &Child{
Code: code,
Detail: fmt.Sprintf(format, a...),
}
return e
}
// WithPos fills Error.Position
func (e *Error) WithPos() *Error {
_, file, line, _ := runtime.Caller(1)
if index := strings.Index(file, "/src/"); index != -1 {
file = file[index+5:]
}
file = strings.Replace(file, string(filepath.Separator), "/", -1)
e.Position = fmt.Sprintf("%s:%d", file, line)
return e
}
// WithStack push stack information to Error
func (e *Error) WithStack(code int32, detail string, pos ...bool) *Error {
if e.Stacks == nil {
e.Stacks = make([]*Stack, 0)
}
stack := &Stack{Code: code, Detail: detail}
if pos != nil && pos[0] {
_, file, line, _ := runtime.Caller(1)
if index := strings.Index(file, "/src/"); index != -1 {
file = file[index+5:]
}
file = strings.Replace(file, string(filepath.Separator), "/", -1)
stack.Position = fmt.Sprintf("%s:%d", file, line)
}
e.Stacks = append(e.Stacks, stack)
return e
}
func (e *Error) Error() string {
b, _ := json.Marshal(e)
return string(b)
}
// Parse tries to parse a JSON string into an error. If that
// fails, it will set the given string as the error detail.
func Parse(err string) *Error {
e := new(Error)
errr := json.Unmarshal([]byte(err), e)
if errr != nil {
e.Detail = err
}
return e
}
// BadRequest generates a 400 error.
func BadRequest(id, format string, a ...interface{}) *Error {
return New(id, fmt.Sprintf(format, a...), 400)
}
// Unauthorized generates a 401 error.
func Unauthorized(id, format string, a ...interface{}) *Error {
return New(id, fmt.Sprintf(format, a...), 401)
}
// Forbidden generates a 403 error.
func Forbidden(id, format string, a ...interface{}) *Error {
return New(id, fmt.Sprintf(format, a...), 403)
}
// NotFound generates a 404 error.
func NotFound(id, format string, a ...interface{}) *Error {
return New(id, fmt.Sprintf(format, a...), 404)
}
// MethodNotAllowed generates a 405 error.
func MethodNotAllowed(id, format string, a ...interface{}) *Error {
return New(id, fmt.Sprintf(format, a...), 405)
}
// Timeout generates a 408 error.
func Timeout(id, format string, a ...interface{}) *Error {
return New(id, fmt.Sprintf(format, a...), 408)
}
// Conflict generates a 409 error.
func Conflict(id, format string, a ...interface{}) *Error {
return New(id, fmt.Sprintf(format, a...), 409)
}
// InternalServerError generates a 500 error.
func InternalServerError(id, format string, a ...interface{}) *Error {
return New(id, fmt.Sprintf(format, a...), 500)
}
// NotImplemented generates a 501 error
func NotImplemented(id, format string, a ...interface{}) *Error {
return &Error{
Id: id,
Code: 501,
Detail: fmt.Sprintf(format, a...),
Status: http.StatusText(501),
}
}
// BadGateway generates a 502 error
func BadGateway(id, format string, a ...interface{}) *Error {
return &Error{
Id: id,
Code: 502,
Detail: fmt.Sprintf(format, a...),
Status: http.StatusText(502),
}
}
// ServiceUnavailable generates a 503 error
func ServiceUnavailable(id, format string, a ...interface{}) *Error {
return &Error{
Id: id,
Code: 503,
Detail: fmt.Sprintf(format, a...),
Status: http.StatusText(503),
}
}
// GatewayTimeout generates a 504 error
func GatewayTimeout(id, format string, a ...interface{}) *Error {
return &Error{
Id: id,
Code: 504,
Detail: fmt.Sprintf(format, a...),
Status: http.StatusText(504),
}
}
// Equal tries to compare errors
func Equal(err1 error, err2 error) bool {
verr1, ok1 := err1.(*Error)
verr2, ok2 := err2.(*Error)
if ok1 != ok2 {
return false
}
if !ok1 {
return err1 == err2
}
if verr1.Code != verr2.Code {
return false
}
return true
}
// FromErr try to convert go error go *Error
func FromErr(err error) *Error {
if verr, ok := err.(*Error); ok && verr != nil {
return verr
}
return Parse(err.Error())
}