用户列表
This commit is contained in:
parent
e2efa4bfcd
commit
c7813a4863
|
@ -1,5 +1,6 @@
|
||||||
package common
|
package common
|
||||||
|
|
||||||
const (
|
const (
|
||||||
TOKEN_PRE = "player_token_"
|
TOKEN_PRE = "player_token_"
|
||||||
|
TOKEN_Admin = "Admin_token_"
|
||||||
)
|
)
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
package backend
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/gin-gonic/gin"
|
||||||
|
"qteam/app/constants/errorcode"
|
||||||
|
"qteam/app/http/controllers"
|
||||||
|
"qteam/app/http/entities/backend"
|
||||||
|
"qteam/app/services"
|
||||||
|
)
|
||||||
|
|
||||||
|
func Login(c *gin.Context) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func UserList(c *gin.Context) {
|
||||||
|
request := new(backend.UserListRequest)
|
||||||
|
err := controllers.GenRequest(c, request)
|
||||||
|
if err != nil {
|
||||||
|
controllers.Error(c, errorcode.ParamError, err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
where := map[string]interface{}{
|
||||||
|
"Mobile": request.Mobile,
|
||||||
|
}
|
||||||
|
count, list, err := services.GetListByWhere(where, request.Page, request.Limit)
|
||||||
|
|
||||||
|
controllers.Success(c, gin.H{"data": list, "count": count}, "成功")
|
||||||
|
return
|
||||||
|
}
|
|
@ -1,7 +0,0 @@
|
||||||
package controllers
|
|
||||||
|
|
||||||
import "github.com/gin-gonic/gin"
|
|
||||||
|
|
||||||
func Login(c *gin.Context) {
|
|
||||||
|
|
||||||
}
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
package backend
|
||||||
|
|
||||||
|
type UserListRequest struct {
|
||||||
|
Page int `json:"page" validate:"required"`
|
||||||
|
Limit int `json:"limit" validate:"required"`
|
||||||
|
Mobile string `json:"mobile"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type UserListResponse struct {
|
||||||
|
Id int `xorm:"'Id' int(11)"`
|
||||||
|
Clientuniqueidentification string `xorm:"'ClientUniqueIdentification' varchar(255)"`
|
||||||
|
Mobile string `xorm:"'Mobile' varchar(13)"`
|
||||||
|
Status int `xorm:"'Status' TINYINT"`
|
||||||
|
Aer string
|
||||||
|
Createtime string
|
||||||
|
}
|
|
@ -37,7 +37,21 @@ func Auth() gin.HandlerFunc {
|
||||||
|
|
||||||
func AdminAuth() gin.HandlerFunc {
|
func AdminAuth() gin.HandlerFunc {
|
||||||
return func(c *gin.Context) {
|
return func(c *gin.Context) {
|
||||||
|
var token = c.GetHeader("token")
|
||||||
|
//将token放入redis
|
||||||
|
var playerId, err = redis.GetRedis().Get(context.Background(), utils.GetRealKey(common.TOKEN_Admin+token)).Result()
|
||||||
|
if rs, errRedis := redis.GetRedis().SIsMember(context.Background(), "disabled_uids", playerId).Result(); errRedis == nil && rs {
|
||||||
|
err = errors.New(errorcode.GetMsg(errorcode.NotFound, ""))
|
||||||
|
redis.GetRedis().SRem(context.Background(), "disabled_uids", playerId)
|
||||||
|
}
|
||||||
|
if err == nil {
|
||||||
|
c.Set("playerId", playerId)
|
||||||
|
c.Next()
|
||||||
|
return
|
||||||
|
} else {
|
||||||
|
controllers.HandCodeRes(c, nil, errorcode.Forbidden)
|
||||||
|
c.Abort()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -54,14 +68,12 @@ func ValidateRequest() gin.HandlerFunc {
|
||||||
utils.Log(c, "path", path)
|
utils.Log(c, "path", path)
|
||||||
controllers.HandCodeRes(c, nil, errorcode.NotFound)
|
controllers.HandCodeRes(c, nil, errorcode.NotFound)
|
||||||
} else {
|
} else {
|
||||||
value := handler()
|
err := controllers.GenRequest(c, handler())
|
||||||
err := controllers.GenRequest(c, value)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
utils.Log(c, "path", path)
|
utils.Log(c, "path", path)
|
||||||
controllers.Error(c, errorcode.ParamError, err.Error())
|
controllers.HandCodeRes(c, nil, errorcode.ParamError)
|
||||||
//controllers.HandCodeRes(c, nil, errorcode.ParamError)
|
|
||||||
} else {
|
} else {
|
||||||
c.Set("request", value)
|
c.Set("request", handler())
|
||||||
c.Next()
|
c.Next()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,5 +9,4 @@ var BackendRequestMap = map[string]func() interface{}{
|
||||||
"/admin/api/v1/product/create": func() interface{} {
|
"/admin/api/v1/product/create": func() interface{} {
|
||||||
return new(backend.ProductCreateRequest)
|
return new(backend.ProductCreateRequest)
|
||||||
},
|
},
|
||||||
//"/admin/api/v1/product/query": func() interface{} { return new(domains.ProductFilter) },
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,9 +22,12 @@ func RegisterAdminRoute(router *gin.Engine) {
|
||||||
router.Use(middlewares.Trace())
|
router.Use(middlewares.Trace())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//api := router.Group("/api")
|
admin := router.Group("/admin")
|
||||||
{
|
{
|
||||||
//api.GET("/banner_list", controllers.GetBannerList)
|
api := admin.Group("/api")
|
||||||
|
{
|
||||||
|
api.POST("/userList", backend.UserList)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
v1 := router.Group("/admin/api/v1")
|
v1 := router.Group("/admin/api/v1")
|
||||||
|
|
|
@ -5,6 +5,7 @@ package routes
|
||||||
*/
|
*/
|
||||||
import (
|
import (
|
||||||
"qteam/app/http/controllers"
|
"qteam/app/http/controllers"
|
||||||
|
"qteam/app/http/controllers/backend"
|
||||||
"qteam/app/http/middlewares"
|
"qteam/app/http/middlewares"
|
||||||
"qteam/app/http/trace"
|
"qteam/app/http/trace"
|
||||||
"qteam/app/utils/metric"
|
"qteam/app/utils/metric"
|
||||||
|
@ -45,7 +46,7 @@ func RegisterRoute(router *gin.Engine) {
|
||||||
//api版本
|
//api版本
|
||||||
v1 := router.Group("/v1", middlewares.ValidateRequest())
|
v1 := router.Group("/v1", middlewares.ValidateRequest())
|
||||||
{
|
{
|
||||||
v1.GET("/login", controllers.Login)
|
v1.GET("/login", backend.Login)
|
||||||
}
|
}
|
||||||
|
|
||||||
router.GET("/swagger/*any", ginSwagger.WrapHandler(swaggerFiles.Handler))
|
router.GET("/swagger/*any", ginSwagger.WrapHandler(swaggerFiles.Handler))
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
package userinfomodel
|
||||||
|
|
||||||
|
import (
|
||||||
|
"qteam/app/http/entities/backend"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (m *UserInfo) ToDomain() (do backend.UserListResponse) {
|
||||||
|
do.Id = m.Id
|
||||||
|
do.Clientuniqueidentification = m.Clientuniqueidentification
|
||||||
|
do.Mobile = m.Mobile
|
||||||
|
do.Status = m.Status
|
||||||
|
do.Createtime = m.Createtime.Format(time.DateTime)
|
||||||
|
return
|
||||||
|
}
|
Loading…
Reference in New Issue