2023-10-26 17:15:49 +08:00
|
|
|
|
package errorx
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
2024-11-20 22:43:53 +08:00
|
|
|
|
"context"
|
2023-10-26 17:15:49 +08:00
|
|
|
|
"fmt"
|
2024-11-20 22:43:53 +08:00
|
|
|
|
"mayfly-go/pkg/i18n"
|
2023-10-26 17:15:49 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
// 业务错误
|
|
|
|
|
|
type BizError struct {
|
|
|
|
|
|
code int16
|
|
|
|
|
|
err string
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var (
|
2024-10-23 17:30:05 +08:00
|
|
|
|
Success *BizError = NewBizCode(200, "success")
|
|
|
|
|
|
BizErr *BizError = NewBizCode(400, "biz error")
|
|
|
|
|
|
ServerError *BizError = NewBizCode(500, "server error")
|
|
|
|
|
|
PermissionErr *BizError = NewBizCode(501, "token error")
|
|
|
|
|
|
AccessTokenInvalid *BizError = NewBizCode(502, "access token invalid")
|
2023-10-26 17:15:49 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
// 错误消息
|
|
|
|
|
|
func (e BizError) Error() string {
|
|
|
|
|
|
return e.err
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 错误码
|
|
|
|
|
|
func (e BizError) Code() int16 {
|
|
|
|
|
|
return e.code
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (e BizError) String() string {
|
|
|
|
|
|
return fmt.Sprintf("errCode: %d, errMsg: %s", e.Code(), e.Error())
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-11-20 22:43:53 +08:00
|
|
|
|
// NewBiz 创建业务逻辑错误结构体,默认为业务逻辑错误
|
|
|
|
|
|
func NewBiz(msg string, formatValues ...any) *BizError {
|
|
|
|
|
|
return &BizError{code: BizErr.code, err: fmt.Sprintf(msg, formatValues...)}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// NewBizI 使用i18n的msgId创建业务逻辑错误结构体,默认为业务逻辑错误 (使用ctx中的国际化语言)
|
|
|
|
|
|
//
|
|
|
|
|
|
// // NameErr = {{.name}} is invalid => xxx is invalid
|
|
|
|
|
|
// NewBizI(ctx, imsg.NameErr, "name", "xxxx")
|
|
|
|
|
|
func NewBizI(ctx context.Context, msgId i18n.MsgId, attrs ...any) *BizError {
|
|
|
|
|
|
return &BizError{code: BizErr.code, err: i18n.TC(ctx, msgId, attrs...)}
|
2023-10-26 17:15:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 创建业务逻辑错误结构体,可设置指定错误code
|
2024-10-23 17:30:05 +08:00
|
|
|
|
func NewBizCode(code int16, msg string, formats ...any) *BizError {
|
|
|
|
|
|
return &BizError{code: code, err: fmt.Sprintf(msg, formats...)}
|
2023-10-26 17:15:49 +08:00
|
|
|
|
}
|