-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstatus.go
42 lines (34 loc) · 1.02 KB
/
status.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
package http
import (
"encoding/json"
"fmt"
)
type Status struct {
Status int `json:"status" comment:"请参考开发者定义的Status列表"`
Message interface{} `json:"message" comment:"用于联调测试时参考的错误信息"`
}
var (
STATUS_SUCCESS = &Status{0, "成功"}
STATUS_UNKNOW = &Status{1, "未知错误"}
STATUS_ERROR_DB = &Status{2, "数据库错误"}
STATUS_UNAUTHORIZED = &Status{401, "unauthorized"}
STATUS_FORBIDDEN = &Status{403, "forbidden"}
STATUS_NOT_FOUND = &Status{404, "not found"}
)
func StatusInvalidParam(err error) *Status {
return &Status{3, err.Error()}
}
func StatusDiy(obj interface{}) *Status {
msg, _ := json.Marshal(obj)
return &Status{10, string(msg)}
}
func ErrorStatus(code int, err error) *Status {
return &Status{code, err.Error()}
}
func JsonStatus(code int, obj interface{}) *Status {
msg, _ := json.Marshal(obj)
return &Status{code, string(msg)}
}
func (this *Status) Error() string {
return fmt.Sprintf("%d:%v", this.Status, this.Message)
}