1Panel/core/buserr/errors.go
ssongliu 2ef7b8b3b1
Some checks failed
sync2gitee / repo-sync (push) Failing after -6m49s
feat: core 功能代码拆分
2024-07-19 19:04:11 +08:00

56 lines
1,014 B
Go

package buserr
import (
"github.com/1Panel-dev/1Panel/core/i18n"
"github.com/pkg/errors"
)
type BusinessError struct {
Msg string
Detail interface{}
Map map[string]interface{}
Err error
}
func (e BusinessError) Error() string {
content := ""
if e.Detail != nil {
content = i18n.GetErrMsg(e.Msg, map[string]interface{}{"detail": e.Detail})
} else if e.Map != nil {
content = i18n.GetErrMsg(e.Msg, e.Map)
} else {
content = i18n.GetErrMsg(e.Msg, nil)
}
if content == "" {
if e.Err != nil {
return e.Err.Error()
}
return errors.New(e.Msg).Error()
}
return content
}
func New(Key string) BusinessError {
return BusinessError{
Msg: Key,
Detail: nil,
Err: nil,
}
}
func WithDetail(Key string, detail interface{}, err error) BusinessError {
return BusinessError{
Msg: Key,
Detail: detail,
Err: err,
}
}
func WithMap(Key string, maps map[string]interface{}, err error) BusinessError {
return BusinessError{
Msg: Key,
Map: maps,
Err: err,
}
}