|
@@ -1 +1,106 @@
|
|
|
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"
|
|
|
+)
|
|
|
+
|
|
|
+var Role = new(role)
|
|
|
+
|
|
|
+type role struct{}
|
|
|
+
|
|
|
+func (c *role) 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
|
|
|
+ }
|
|
|
+ role, err := service.RoleService.Get(iId)
|
|
|
+ if err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, role))
|
|
|
+}
|
|
|
+
|
|
|
+func (c *role) List(ctx *gin.Context) {
|
|
|
+ current, _ := strconv.Atoi(ctx.Query("current"))
|
|
|
+ size, _ := strconv.Atoi(ctx.Query("size"))
|
|
|
+ roleName := ctx.Query("roleName")
|
|
|
+ tenantId := ctx.Query("tenantId")
|
|
|
+ roleAlias := ctx.Query("roleAlias")
|
|
|
+ if current == 0 {
|
|
|
+ current = 1
|
|
|
+ }
|
|
|
+ if size <= 0 || size > 100 {
|
|
|
+ size = 10
|
|
|
+ }
|
|
|
+
|
|
|
+ roles, err := service.RoleService.List(roleName, tenantId, roleAlias, current, size)
|
|
|
+ if err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ pages := math.Ceil(float64(len(roles)) / float64(size))
|
|
|
+ rsp := model.RsqRoleList{
|
|
|
+ Current: current,
|
|
|
+ Size: size,
|
|
|
+ Total: len(roles),
|
|
|
+ Pages: int(pages),
|
|
|
+ Records: roles,
|
|
|
+ }
|
|
|
+ ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, rsp))
|
|
|
+}
|
|
|
+
|
|
|
+func (c *role) Tree(ctx *gin.Context) {
|
|
|
+ err := service.RoleService.Tree()
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+}
|
|
|
+
|
|
|
+func (c *role) Submit(ctx *gin.Context) {
|
|
|
+ var req dao.Role
|
|
|
+ if err := ctx.ShouldBindJSON(&req); err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
|
|
|
+ return
|
|
|
+ }
|
|
|
+ err := service.RoleService.Submit(req)
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+}
|
|
|
+
|
|
|
+func (c *role) Remove(ctx *gin.Context) {
|
|
|
+ var req *model.ReqRoleRemove
|
|
|
+ if err := ctx.ShouldBindJSON(&req); err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
|
|
|
+ return
|
|
|
+ }
|
|
|
+ err := service.RoleService.Remove(req.IDs)
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+}
|
|
|
+
|
|
|
+func (c *role) GetList(ctx *gin.Context) {
|
|
|
+ roles, err := service.RoleService.GetList()
|
|
|
+ if err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, util.FailResponse(err.Error(), nil))
|
|
|
+ }
|
|
|
+ ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, roles))
|
|
|
+}
|
|
|
+
|
|
|
+func (c *role) Grant(ctx *gin.Context) {
|
|
|
+ var req *model.ReqRoleGrant
|
|
|
+ if err := ctx.ShouldBindJSON(&req); err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
|
|
|
+ return
|
|
|
+ }
|
|
|
+ err := service.RoleService.Grant(req)
|
|
|
+ if err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, util.FailResponse(err.Error(), nil))
|
|
|
+ }
|
|
|
+ ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, nil))
|
|
|
+}
|