package xerror import ( "fmt" "net/http" "strings" ) var ( codes = map[int]string{} ) type Error struct { code int msg string details []string } type ValidError struct { Message string } type ValidErrors []*ValidError func (v *ValidError) Error() string { return v.Message } func (v ValidErrors) Error() string { return strings.Join(v.Errors(), ",") } func (v ValidErrors) Errors() []string { var errs []string for _, err := range v { errs = append(errs, err.Error()) } return errs } func NewError(code int, msg string) *Error { if _, ok := codes[code]; ok { panic(fmt.Sprintf("错误码 %d 已经存在,请更换一个", code)) } codes[code] = msg return &Error{code: code, msg: msg} } func (e *Error) Error() string { return fmt.Sprintf("错误码: %d, 错误信息: %s", e.Code(), e.Msg()) } func (e *Error) Code() int { return e.code } func (e *Error) Msg() string { return e.msg } func (e *Error) Msgf(args []any) string { return fmt.Sprintf(e.msg, args...) } func (e *Error) Details() []string { return e.details } func (e *Error) WithDetails(details ...string) *Error { newError := *e newError.details = []string{} newError.details = append(newError.details, details...) return &newError } func (e *Error) StatusCode() int { switch e.Code() { case Success.Code(): return http.StatusOK case ServerError.Code(): return http.StatusInternalServerError case InvalidParams.Code(): return http.StatusBadRequest case UnauthorizedAuthNotExist.Code(): fallthrough case UnauthorizedAuthFailed.Code(): fallthrough case UnauthorizedTokenError.Code(): fallthrough case UnauthorizedTokenGenerate.Code(): fallthrough case UnauthorizedTokenTimeout.Code(): return http.StatusUnauthorized case TooManyRequests.Code(): return http.StatusTooManyRequests } return http.StatusInternalServerError }