Basic check for User controller

This commit is contained in:
HFO4
2019-11-05 19:49:56 +08:00
parent 74b5bf24a8
commit 6539ae20fa
8 changed files with 133 additions and 2 deletions

View File

@@ -0,0 +1,25 @@
package controllers
import (
"Cloudreve/serializer"
"encoding/json"
"fmt"
"gopkg.in/go-playground/validator.v8"
)
// ErrorResponse 返回错误消息
func ErrorResponse(err error) serializer.Response {
if ve, ok := err.(validator.ValidationErrors); ok {
for _, e := range ve {
return serializer.ParamErr(
fmt.Sprintf("%s %s", e.Field, e.Tag),
err,
)
}
}
if _, ok := err.(*json.UnmarshalTypeError); ok {
return serializer.ParamErr("JSON类型不匹配", err)
}
return serializer.ParamErr("参数错误", err)
}