123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- package controller
- import (
- "github.com/gin-gonic/gin"
- "iot_manager_service/app/system/dao"
- "iot_manager_service/app/system/model"
- "iot_manager_service/app/system/service"
- "iot_manager_service/util"
- "math"
- "net/http"
- "strconv"
- "strings"
- )
- var User = new(user)
- type user struct{}
- func (c *user) GetDetail(ctx *gin.Context) {
- id := ctx.Query("id")
- iId, err := strconv.ParseInt(id, 10, 64)
- if err != nil {
- ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
- return
- }
- detail, err := service.UserService.Get(iId)
- if err != nil {
- ctx.JSON(http.StatusOK, err)
- return
- }
- ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, detail))
- }
- func (c *user) List(ctx *gin.Context) {
- current, _ := strconv.Atoi(ctx.Query("current"))
- size, _ := strconv.Atoi(ctx.Query("size"))
- account := ctx.Query("account")
- realName := ctx.Query("realName")
- if current == 0 {
- current = 1
- }
- if size <= 0 || size > 100 {
- size = 10
- }
- users, err := service.UserService.List(account, realName, current, size)
- if err != nil {
- ctx.JSON(http.StatusOK, err)
- return
- }
- pages := math.Ceil(float64(len(users)) / float64(size))
- rsp := model.RsqUserList{
- Current: current,
- Size: size,
- Total: len(users),
- Pages: int(pages),
- Records: users,
- }
- ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, rsp))
- }
- func (c *user) Submit(ctx *gin.Context) {
- var req dao.User
- if err := ctx.ShouldBindJSON(&req); err != nil {
- ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
- return
- }
- err := service.UserService.Submit(req)
- ctx.JSON(http.StatusOK, err)
- }
- func (c *user) Update(ctx *gin.Context) {
- var req dao.User
- if err := ctx.ShouldBindJSON(&req); err != nil {
- ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
- return
- }
- err := service.UserService.Update(req)
- ctx.JSON(http.StatusOK, err)
- }
- func (c *user) Remove(ctx *gin.Context) {
- var req *model.ReqUserRemove
- if err := ctx.ShouldBindJSON(&req); err != nil {
- ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
- return
- }
- err := service.UserService.Remove(req.IDs)
- ctx.JSON(http.StatusOK, err)
- }
- func (c *user) ResetPwd(ctx *gin.Context) {
- var req *model.ReqUserResetPwd
- if err := ctx.ShouldBindJSON(&req); err != nil {
- ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
- return
- }
- err := service.UserService.ResetPwd(req.IDs)
- ctx.JSON(http.StatusOK, err)
- }
- func (c *user) GetList(ctx *gin.Context) {
- users, err := service.UserService.GetList()
- if err != nil {
- ctx.JSON(http.StatusOK, util.FailResponse(err.Error(), nil))
- }
- ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, users))
- }
- func (c *user) Grant(ctx *gin.Context) {
- var req *model.ReqUserGrant
- if err := ctx.ShouldBindJSON(&req); err != nil {
- ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
- return
- }
- uIds := strings.Split(req.UserIds, ",")
- rIds := strings.Split(req.RoleIds, ",")
- if len(uIds) < 1 || len(rIds) < 1 {
- ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(model.GrantInvalid, nil))
- return
- }
- err := service.UserService.Grant(uIds, req.RoleIds)
- ctx.JSON(http.StatusOK, err)
- }
|