mirror of
https://github.com/xinliangnote/go-gin-api.git
synced 2024-04-21 12:31:46 +00:00
- 将 middleware 命名为 interceptor - 将 deploy 命名为 deployments - 移除 pkg/errno - 使用 proposal 目录 - 优化代码
152 lines
4.2 KiB
Go
Executable File
152 lines
4.2 KiB
Go
Executable File
package admin
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/xinliangnote/go-gin-api/configs"
|
|
"github.com/xinliangnote/go-gin-api/internal/code"
|
|
"github.com/xinliangnote/go-gin-api/internal/pkg/core"
|
|
"github.com/xinliangnote/go-gin-api/internal/pkg/password"
|
|
"github.com/xinliangnote/go-gin-api/internal/services/admin"
|
|
"github.com/xinliangnote/go-gin-api/pkg/timeutil"
|
|
|
|
"github.com/spf13/cast"
|
|
)
|
|
|
|
type listRequest struct {
|
|
Page int `form:"page"` // 第几页
|
|
PageSize int `form:"page_size"` // 每页显示条数
|
|
Username string `form:"username"` // 用户名
|
|
Nickname string `form:"nickname"` // 昵称
|
|
Mobile string `form:"mobile"` // 手机号
|
|
}
|
|
|
|
type listData struct {
|
|
Id int `json:"id"` // ID
|
|
HashID string `json:"hashid"` // hashid
|
|
Username string `json:"username"` // 用户名
|
|
Nickname string `json:"nickname"` // 昵称
|
|
Mobile string `json:"mobile"` // 手机号
|
|
IsUsed int `json:"is_used"` // 是否启用 1:是 -1:否
|
|
IsOnline int `json:"is_online"` // 是否在线 1:是 -1:否
|
|
CreatedAt string `json:"created_at"` // 创建时间
|
|
CreatedUser string `json:"created_user"` // 创建人
|
|
UpdatedAt string `json:"updated_at"` // 更新时间
|
|
UpdatedUser string `json:"updated_user"` // 更新人
|
|
}
|
|
|
|
type listResponse struct {
|
|
List []listData `json:"list"`
|
|
Pagination struct {
|
|
Total int `json:"total"`
|
|
CurrentPage int `json:"current_page"`
|
|
PerPageCount int `json:"per_page_count"`
|
|
} `json:"pagination"`
|
|
}
|
|
|
|
// List 管理员列表
|
|
// @Summary 管理员列表
|
|
// @Description 管理员列表
|
|
// @Tags API.admin
|
|
// @Accept application/x-www-form-urlencoded
|
|
// @Produce json
|
|
// @Param page query int true "第几页" default(1)
|
|
// @Param page_size query int true "每页显示条数" default(10)
|
|
// @Param username query string false "用户名"
|
|
// @Param nickname query string false "昵称"
|
|
// @Param mobile query string false "手机号"
|
|
// @Success 200 {object} listResponse
|
|
// @Failure 400 {object} code.Failure
|
|
// @Router /api/admin [get]
|
|
// @Security LoginToken
|
|
func (h *handler) List() core.HandlerFunc {
|
|
return func(c core.Context) {
|
|
req := new(listRequest)
|
|
res := new(listResponse)
|
|
if err := c.ShouldBindForm(req); err != nil {
|
|
c.AbortWithError(core.Error(
|
|
http.StatusBadRequest,
|
|
code.ParamBindError,
|
|
code.Text(code.ParamBindError)).WithError(err),
|
|
)
|
|
return
|
|
}
|
|
|
|
page := req.Page
|
|
if page == 0 {
|
|
page = 1
|
|
}
|
|
|
|
pageSize := req.PageSize
|
|
if pageSize == 0 {
|
|
pageSize = 10
|
|
}
|
|
|
|
searchData := new(admin.SearchData)
|
|
searchData.Page = page
|
|
searchData.PageSize = pageSize
|
|
searchData.Username = req.Username
|
|
searchData.Nickname = req.Nickname
|
|
searchData.Mobile = req.Mobile
|
|
|
|
resListData, err := h.adminService.PageList(c, searchData)
|
|
if err != nil {
|
|
c.AbortWithError(core.Error(
|
|
http.StatusBadRequest,
|
|
code.AdminListError,
|
|
code.Text(code.AdminListError)).WithError(err),
|
|
)
|
|
return
|
|
}
|
|
|
|
resCountData, err := h.adminService.PageListCount(c, searchData)
|
|
if err != nil {
|
|
c.AbortWithError(core.Error(
|
|
http.StatusBadRequest,
|
|
code.AdminListError,
|
|
code.Text(code.AdminListError)).WithError(err),
|
|
)
|
|
return
|
|
}
|
|
res.Pagination.Total = cast.ToInt(resCountData)
|
|
res.Pagination.PerPageCount = pageSize
|
|
res.Pagination.CurrentPage = page
|
|
res.List = make([]listData, len(resListData))
|
|
|
|
for k, v := range resListData {
|
|
hashId, err := h.hashids.HashidsEncode([]int{cast.ToInt(v.Id)})
|
|
if err != nil {
|
|
c.AbortWithError(core.Error(
|
|
http.StatusBadRequest,
|
|
code.HashIdsEncodeError,
|
|
code.Text(code.HashIdsEncodeError)).WithError(err),
|
|
)
|
|
return
|
|
}
|
|
|
|
isOnline := -1
|
|
if h.cache.Exists(configs.RedisKeyPrefixLoginUser + password.GenerateLoginToken(v.Id)) {
|
|
isOnline = 1
|
|
}
|
|
|
|
data := listData{
|
|
Id: cast.ToInt(v.Id),
|
|
HashID: hashId,
|
|
Username: v.Username,
|
|
Nickname: v.Nickname,
|
|
Mobile: v.Mobile,
|
|
IsUsed: cast.ToInt(v.IsUsed),
|
|
IsOnline: isOnline,
|
|
CreatedAt: v.CreatedAt.Format(timeutil.CSTLayout),
|
|
CreatedUser: v.CreatedUser,
|
|
UpdatedAt: v.UpdatedAt.Format(timeutil.CSTLayout),
|
|
UpdatedUser: v.UpdatedUser,
|
|
}
|
|
|
|
res.List[k] = data
|
|
}
|
|
|
|
c.Payload(res)
|
|
}
|
|
}
|