Cloudreve/routers/controllers/main.go

70 lines
1.6 KiB
Go
Raw Normal View History

2019-11-05 19:49:56 +08:00
package controllers
import (
"encoding/json"
model "github.com/cloudreve/Cloudreve/v3/models"
"github.com/cloudreve/Cloudreve/v3/pkg/serializer"
2019-11-12 15:34:54 +08:00
"github.com/gin-gonic/gin"
"github.com/go-playground/validator/v10"
2019-11-05 19:49:56 +08:00
)
2019-11-06 16:42:13 +08:00
// ParamErrorMsg 根据Validator返回的错误信息给出错误提示
func ParamErrorMsg(filed string, tag string) string {
// 未通过验证的表单域与中文对应
fieldMap := map[string]string{
"UserName": "Email",
"Password": "Password",
"Path": "Path",
"SourceID": "Source resource",
"URL": "URL",
"Nick": "Nickname",
2019-11-06 16:42:13 +08:00
}
// 未通过的规则与中文对应
tagMap := map[string]string{
"required": "cannot be empty",
"min": "too short",
"max": "too long",
"email": "format error",
2019-11-06 16:42:13 +08:00
}
fieldVal, findField := fieldMap[filed]
if !findField {
fieldVal = filed
}
2019-11-06 16:42:13 +08:00
tagVal, findTag := tagMap[tag]
if findTag {
2019-11-06 16:42:13 +08:00
// 返回拼接出来的错误信息
2022-04-30 16:51:24 +08:00
return fieldVal + " " + tagVal
2019-11-06 16:42:13 +08:00
}
return ""
}
2019-11-05 19:49:56 +08:00
// ErrorResponse 返回错误消息
func ErrorResponse(err error) serializer.Response {
2019-11-06 16:42:13 +08:00
// 处理 Validator 产生的错误
2019-11-05 19:49:56 +08:00
if ve, ok := err.(validator.ValidationErrors); ok {
for _, e := range ve {
return serializer.ParamErr(
2020-03-09 14:07:36 +08:00
ParamErrorMsg(e.Field(), e.Tag()),
2019-11-05 19:49:56 +08:00
err,
)
}
}
2019-11-06 16:42:13 +08:00
2019-11-05 19:49:56 +08:00
if _, ok := err.(*json.UnmarshalTypeError); ok {
return serializer.ParamErr("JSON marshall error", err)
2019-11-05 19:49:56 +08:00
}
return serializer.ParamErr("Parameter error", err)
2019-11-05 19:49:56 +08:00
}
2019-11-12 15:34:54 +08:00
// CurrentUser 获取当前用户
func CurrentUser(c *gin.Context) *model.User {
if user, _ := c.Get("user"); user != nil {
if u, ok := user.(*model.User); ok {
return u
}
}
return nil
}