user.go 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. package controller
  2. import (
  3. "crypto/sha1"
  4. "fmt"
  5. "github.com/gin-gonic/gin"
  6. "io"
  7. "iot_manager_service/app/middleware"
  8. "iot_manager_service/app/system/dao"
  9. "iot_manager_service/app/system/model"
  10. "iot_manager_service/app/system/service"
  11. "iot_manager_service/util/common"
  12. "math"
  13. "net/http"
  14. "strconv"
  15. "strings"
  16. )
  17. var User = new(user)
  18. type user struct{}
  19. func (c *user) GetDetail(ctx *gin.Context) {
  20. id := ctx.Query("id")
  21. iId, err := strconv.Atoi(id)
  22. if err != nil {
  23. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  24. return
  25. }
  26. detail, err := service.UserService.Get(iId)
  27. if err != nil {
  28. ctx.JSON(http.StatusOK, err)
  29. return
  30. }
  31. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, detail))
  32. }
  33. func (c *user) List(ctx *gin.Context) {
  34. current, _ := strconv.Atoi(ctx.Query("current"))
  35. size, _ := strconv.Atoi(ctx.Query("size"))
  36. account := ctx.Query("account")
  37. realName := ctx.Query("realName")
  38. if current == 0 {
  39. current = 1
  40. }
  41. if size <= 0 || size > 100 {
  42. size = 10
  43. }
  44. users, counts, err := service.UserService.List(account, realName, current, size)
  45. if err != nil {
  46. ctx.JSON(http.StatusOK, err)
  47. return
  48. }
  49. pages := int(math.Ceil(float64(counts) / float64(size)))
  50. rsp := model.RsqUserList{
  51. Current: current,
  52. Size: size,
  53. Total: counts,
  54. Pages: pages,
  55. Records: users,
  56. }
  57. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, rsp))
  58. }
  59. func (c *user) Info(ctx *gin.Context) {
  60. authorization := ctx.GetHeader("Authorization")
  61. claims := middleware.ParseAccessToken(authorization)
  62. var userInfo = &dao.User{ID: claims.UserId}
  63. err := service.UserService.Info(userInfo)
  64. if err == nil {
  65. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, userInfo))
  66. } else {
  67. ctx.JSON(http.StatusOK, err)
  68. }
  69. }
  70. func (c *user) Submit(ctx *gin.Context) {
  71. var req dao.User
  72. if err := ctx.ShouldBindJSON(&req); err != nil {
  73. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  74. return
  75. }
  76. //判断Account是否存在
  77. if c.IsExist(req) {
  78. ctx.JSON(http.StatusOK, common.FailResponse("账号已存在!", nil))
  79. return
  80. }
  81. // 密码sha1加密
  82. t := sha1.New()
  83. _, _ = io.WriteString(t, req.Password)
  84. password := fmt.Sprintf("%x", t.Sum(nil))
  85. req.Password = password
  86. err := service.UserService.Submit(req)
  87. if err == nil {
  88. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, nil))
  89. } else {
  90. ctx.JSON(http.StatusOK, err)
  91. }
  92. }
  93. func (c *user) Update(ctx *gin.Context) {
  94. var req dao.User
  95. if err := ctx.ShouldBindJSON(&req); err != nil {
  96. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  97. return
  98. }
  99. err := service.UserService.Update(req)
  100. if err == nil {
  101. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, nil))
  102. } else {
  103. ctx.JSON(http.StatusOK, err)
  104. }
  105. }
  106. func (c *user) Remove(ctx *gin.Context) {
  107. value, _ := ctx.Get(middleware.Authorization)
  108. claims := value.(*middleware.Claims)
  109. var req *model.ReqUserRemove
  110. if err := ctx.ShouldBindJSON(&req); err != nil {
  111. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  112. return
  113. }
  114. err := service.UserService.Remove(claims.UserId, req.IDs)
  115. if err == nil {
  116. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, nil))
  117. } else {
  118. ctx.JSON(http.StatusOK, err)
  119. }
  120. }
  121. func (c *user) ResetPwd(ctx *gin.Context) {
  122. var req *model.ReqUserResetPwd
  123. if err := ctx.ShouldBindJSON(&req); err != nil {
  124. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  125. return
  126. }
  127. err := service.UserService.ResetPwd(req.IDs)
  128. ctx.JSON(http.StatusOK, err)
  129. }
  130. func (c *user) GetList(ctx *gin.Context) {
  131. users, err := service.UserService.GetList()
  132. if err != nil {
  133. ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
  134. }
  135. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, users))
  136. }
  137. func (c *user) Grant(ctx *gin.Context) {
  138. var req *model.ReqUserGrant
  139. if err := ctx.ShouldBindJSON(&req); err != nil {
  140. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  141. return
  142. }
  143. uIds := strings.Split(req.UserIds, ",")
  144. rIds := strings.Split(req.RoleIds, ",")
  145. if len(uIds) < 1 || len(rIds) < 1 {
  146. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(model.GrantInvalid, nil))
  147. return
  148. }
  149. err := service.UserService.Grant(uIds, req.RoleIds)
  150. ctx.JSON(http.StatusOK, err)
  151. }
  152. func (c *user) IsExist(user dao.User) bool {
  153. return service.UserService.IsExist(user)
  154. }
  155. func (c *user) PutFile(ctx *gin.Context) {
  156. file, err := ctx.FormFile("file")
  157. if err != nil {
  158. ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
  159. return
  160. }
  161. value, _ := ctx.Get(middleware.Authorization)
  162. claims := value.(*middleware.Claims)
  163. link := service.UserService.UpAvatar(claims.TenantId, claims.UserId, file)
  164. if link == nil {
  165. ctx.JSON(http.StatusOK, common.FailResponse("图片上传失败", nil))
  166. } else {
  167. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, link))
  168. }
  169. }