mirror of
https://github.com/halejohn/Cloudreve.git
synced 2026-01-27 10:01:56 +08:00
Basic check for User controller
This commit is contained in:
25
routers/controllers/main.go
Normal file
25
routers/controllers/main.go
Normal 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)
|
||||
}
|
||||
22
routers/controllers/user.go
Normal file
22
routers/controllers/user.go
Normal file
@@ -0,0 +1,22 @@
|
||||
package controllers
|
||||
|
||||
import (
|
||||
"Cloudreve/serializer"
|
||||
"Cloudreve/service/user"
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
// UserLogin 用户登录
|
||||
func UserLogin(c *gin.Context) {
|
||||
var service service.UserLoginService
|
||||
if err := c.ShouldBindJSON(&service); err == nil {
|
||||
//res := service.Login(c)
|
||||
c.JSON(200, serializer.Response{
|
||||
Code: 0,
|
||||
Msg: "OK",
|
||||
})
|
||||
} else {
|
||||
c.JSON(200, ErrorResponse(err))
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user