user.go 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/middleware"
  5. "iot_manager_service/app/system/dao"
  6. "iot_manager_service/app/system/model"
  7. "iot_manager_service/app/system/service"
  8. "iot_manager_service/util/common"
  9. "math"
  10. "net/http"
  11. "strconv"
  12. "strings"
  13. )
  14. var User = new(user)
  15. type user struct{}
  16. func (c *user) GetDetail(ctx *gin.Context) {
  17. id := ctx.Query("id")
  18. iId, err := strconv.ParseInt(id, 10, 64)
  19. if err != nil {
  20. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  21. return
  22. }
  23. detail, err := service.UserService.Get(iId)
  24. if err != nil {
  25. ctx.JSON(http.StatusOK, err)
  26. return
  27. }
  28. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, detail))
  29. }
  30. func (c *user) List(ctx *gin.Context) {
  31. current, _ := strconv.Atoi(ctx.Query("current"))
  32. size, _ := strconv.Atoi(ctx.Query("size"))
  33. account := ctx.Query("account")
  34. realName := ctx.Query("realName")
  35. if current == 0 {
  36. current = 1
  37. }
  38. if size <= 0 || size > 100 {
  39. size = 10
  40. }
  41. users, err := service.UserService.List(account, realName, current, size)
  42. if err != nil {
  43. ctx.JSON(http.StatusOK, err)
  44. return
  45. }
  46. pages := math.Ceil(float64(len(users)) / float64(size))
  47. rsp := model.RsqUserList{
  48. Current: current,
  49. Size: size,
  50. Total: len(users),
  51. Pages: int(pages),
  52. Records: users,
  53. }
  54. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, rsp))
  55. }
  56. func (c *user) Submit(ctx *gin.Context) {
  57. var req dao.User
  58. if err := ctx.ShouldBindJSON(&req); err != nil {
  59. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  60. return
  61. }
  62. err := service.UserService.Submit(req)
  63. ctx.JSON(http.StatusOK, err)
  64. }
  65. func (c *user) Update(ctx *gin.Context) {
  66. var req dao.User
  67. if err := ctx.ShouldBindJSON(&req); err != nil {
  68. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  69. return
  70. }
  71. err := service.UserService.Update(req)
  72. ctx.JSON(http.StatusOK, err)
  73. }
  74. func (c *user) Remove(ctx *gin.Context) {
  75. value, _ := ctx.Get(middleware.Authorization)
  76. claims := value.(*middleware.Claims)
  77. var req *model.ReqUserRemove
  78. if err := ctx.ShouldBindJSON(&req); err != nil {
  79. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  80. return
  81. }
  82. err := service.UserService.Remove(claims.UserId, req.IDs)
  83. ctx.JSON(http.StatusOK, err)
  84. }
  85. func (c *user) ResetPwd(ctx *gin.Context) {
  86. var req *model.ReqUserResetPwd
  87. if err := ctx.ShouldBindJSON(&req); err != nil {
  88. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  89. return
  90. }
  91. err := service.UserService.ResetPwd(req.IDs)
  92. ctx.JSON(http.StatusOK, err)
  93. }
  94. func (c *user) GetList(ctx *gin.Context) {
  95. users, err := service.UserService.GetList()
  96. if err != nil {
  97. ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
  98. }
  99. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, users))
  100. }
  101. func (c *user) Grant(ctx *gin.Context) {
  102. var req *model.ReqUserGrant
  103. if err := ctx.ShouldBindJSON(&req); err != nil {
  104. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  105. return
  106. }
  107. uIds := strings.Split(req.UserIds, ",")
  108. rIds := strings.Split(req.RoleIds, ",")
  109. if len(uIds) < 1 || len(rIds) < 1 {
  110. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(model.GrantInvalid, nil))
  111. return
  112. }
  113. err := service.UserService.Grant(uIds, req.RoleIds)
  114. ctx.JSON(http.StatusOK, err)
  115. }