role.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/system/dao"
  5. "iot_manager_service/app/system/model"
  6. "iot_manager_service/app/system/service"
  7. "iot_manager_service/util/common"
  8. "math"
  9. "net/http"
  10. "strconv"
  11. )
  12. var Role = new(role)
  13. type role struct{}
  14. func (c *role) GetDetail(ctx *gin.Context) {
  15. id := ctx.Query("id")
  16. iId, err := strconv.Atoi(id)
  17. if err != nil {
  18. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  19. return
  20. }
  21. role, err := service.RoleService.Get(iId)
  22. if err != nil {
  23. ctx.JSON(http.StatusOK, err)
  24. return
  25. }
  26. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, role))
  27. }
  28. func (c *role) List(ctx *gin.Context) {
  29. current, _ := strconv.Atoi(ctx.Query("current"))
  30. size, _ := strconv.Atoi(ctx.Query("size"))
  31. roleName := ctx.Query("roleName")
  32. tenantId := ctx.Query("tenantId")
  33. roleAlias := ctx.Query("roleAlias")
  34. if current == 0 {
  35. current = 1
  36. }
  37. if size <= 0 || size > 100 {
  38. size = 10
  39. }
  40. roles, counts, err := service.RoleService.List(roleName, tenantId, roleAlias, current, size)
  41. if err != nil {
  42. ctx.JSON(http.StatusOK, err)
  43. return
  44. }
  45. rsp := model.RsqRoleList{
  46. Current: current,
  47. Size: size,
  48. Total: counts,
  49. Pages: int(math.Ceil(float64(counts) / float64(size))),
  50. Records: roles,
  51. }
  52. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, rsp))
  53. }
  54. func (c *role) Tree(ctx *gin.Context) {
  55. roleTree, err := service.RoleService.GetTree()
  56. if err != nil {
  57. ctx.JSON(http.StatusOK, err)
  58. return
  59. }
  60. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, roleTree))
  61. }
  62. func (c *role) Submit(ctx *gin.Context) {
  63. var req dao.Role
  64. if err := ctx.ShouldBindJSON(&req); err != nil {
  65. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  66. return
  67. }
  68. err := service.RoleService.Submit(req)
  69. ctx.JSON(http.StatusOK, err)
  70. }
  71. func (c *role) Remove(ctx *gin.Context) {
  72. var req *model.ReqRoleRemove
  73. if err := ctx.ShouldBindJSON(&req); err != nil {
  74. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  75. return
  76. }
  77. err := service.RoleService.Remove(req.IDs)
  78. if err == nil {
  79. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, nil))
  80. } else {
  81. ctx.JSON(http.StatusOK, err)
  82. }
  83. }
  84. func (c *role) GetList(ctx *gin.Context) {
  85. roles, err := service.RoleService.GetList()
  86. if err != nil {
  87. ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
  88. }
  89. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, roles))
  90. }
  91. func (c *role) Grant(ctx *gin.Context) {
  92. var req *model.ReqRoleGrant
  93. if err := ctx.ShouldBindJSON(&req); err != nil {
  94. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  95. return
  96. }
  97. err := service.RoleService.Grant(req)
  98. if err != nil {
  99. ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
  100. }
  101. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, nil))
  102. }