mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-10-10 07:26:35 +08:00
74 lines
1.7 KiB
Go
74 lines
1.7 KiB
Go
package helper
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/1Panel-dev/1Panel/core/app/dto"
|
|
"github.com/1Panel-dev/1Panel/core/global"
|
|
"github.com/1Panel-dev/1Panel/core/i18n"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func ErrorWithDetail(ctx *gin.Context, code int, msgKey string, err error) {
|
|
res := dto.Response{
|
|
Code: code,
|
|
Message: "",
|
|
}
|
|
if msgKey == "ErrCaptchaCode" || msgKey == "ErrAuth" {
|
|
res.Code = 401
|
|
res.Message = msgKey
|
|
}
|
|
res.Message = i18n.GetMsgWithMap(msgKey, map[string]interface{}{"detail": err})
|
|
ctx.JSON(http.StatusOK, res)
|
|
ctx.Abort()
|
|
}
|
|
|
|
func InternalServer(ctx *gin.Context, err error) {
|
|
ErrorWithDetail(ctx, http.StatusInternalServerError, "ErrInternalServer", err)
|
|
}
|
|
|
|
func BadRequest(ctx *gin.Context, err error) {
|
|
ErrorWithDetail(ctx, http.StatusBadRequest, "ErrInvalidParams", err)
|
|
}
|
|
|
|
func BadAuth(ctx *gin.Context, msgKey string, err error) {
|
|
ErrorWithDetail(ctx, http.StatusUnauthorized, msgKey, err)
|
|
}
|
|
|
|
func SuccessWithData(ctx *gin.Context, data interface{}) {
|
|
if data == nil {
|
|
data = gin.H{}
|
|
}
|
|
res := dto.Response{
|
|
Code: http.StatusOK,
|
|
Data: data,
|
|
}
|
|
ctx.JSON(http.StatusOK, res)
|
|
ctx.Abort()
|
|
}
|
|
|
|
func Success(ctx *gin.Context) {
|
|
res := dto.Response{
|
|
Code: http.StatusOK,
|
|
Message: "success",
|
|
}
|
|
ctx.JSON(http.StatusOK, res)
|
|
ctx.Abort()
|
|
}
|
|
|
|
func CheckBindAndValidate(req interface{}, c *gin.Context) error {
|
|
if err := c.ShouldBindJSON(req); err != nil {
|
|
ErrorWithDetail(c, http.StatusBadRequest, "ErrInvalidParams", err)
|
|
return err
|
|
}
|
|
if err := global.VALID.Struct(req); err != nil {
|
|
ErrorWithDetail(c, http.StatusBadRequest, "ErrInvalidParams", err)
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func ErrResponse(ctx *gin.Context, code int) {
|
|
ctx.JSON(code, nil)
|
|
ctx.Abort()
|
|
}
|