Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add i18n support for errorx.Bomb and errorx.Dangerous #22

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions errorx/errorx.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ package errorx

import (
"fmt"

"github.com/gin-gonic/gin"
"github.com/toolkits/pkg/i18n"
)

type PageError struct {
Expand All @@ -21,6 +24,11 @@ func Bomb(code int, format string, a ...interface{}) {
panic(PageError{Code: code, Message: fmt.Sprintf(format, a...)})
}

func BombWithI18n(ctx *gin.Context, code int, format string, a ...interface{}) {
lang := ctx.GetHeader("X-Language")
panic(PageError{Code: code, Message: i18n.Sprintf(lang, format, a...)})
}

func Dangerous(v interface{}, code ...int) {
if v == nil {
return
Expand All @@ -40,3 +48,24 @@ func Dangerous(v interface{}, code ...int) {
panic(PageError{Code: c, Message: t.Error()})
}
}

func DangerousWithI18n(ctx *gin.Context, v interface{}, code ...int) {
if v == nil {
return
}

c := 200
if len(code) > 0 {
c = code[0]
}

lang := ctx.GetHeader("X-Language")
switch t := v.(type) {
case string:
if t != "" {
panic(PageError{Code: c, Message: i18n.Sprintf(lang, t)})
}
case error:
panic(PageError{Code: c, Message: i18n.Sprintf(lang, t.Error())})
}
}