185 lines
4.8 KiB
Go
185 lines
4.8 KiB
Go
/*
|
|
* Copyright 2020 The Dragonfly Authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package handlers
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
// nolint
|
|
_ "d7y.io/dragonfly/v2/manager/models"
|
|
"d7y.io/dragonfly/v2/manager/types"
|
|
)
|
|
|
|
// @Summary Create Role
|
|
// @Description Create Role by json config
|
|
// @Tags Role
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param Role body types.CreateRoleRequest true "Role"
|
|
// @Success 200
|
|
// @Failure 400
|
|
// @Failure 500
|
|
// @Router /api/v1/roles [post]
|
|
func (h *Handlers) CreateRole(ctx *gin.Context) {
|
|
var json types.CreateRoleRequest
|
|
if err := ctx.ShouldBindJSON(&json); err != nil {
|
|
ctx.JSON(http.StatusUnprocessableEntity, gin.H{"errors": err.Error()})
|
|
return
|
|
}
|
|
|
|
if err := h.service.CreateRole(ctx.Request.Context(), json); err != nil {
|
|
ctx.Error(err) // nolint: errcheck
|
|
return
|
|
}
|
|
|
|
ctx.Status(http.StatusOK)
|
|
}
|
|
|
|
// @Summary Destroy Role
|
|
// @Description Destroy role by json config
|
|
// @Tags Role
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param role path string true "role"
|
|
// @Success 200
|
|
// @Failure 400
|
|
// @Failure 500
|
|
// @Router /api/v1/roles/{role} [delete]
|
|
func (h *Handlers) DestroyRole(ctx *gin.Context) {
|
|
var params types.RoleParams
|
|
if err := ctx.ShouldBindUri(¶ms); err != nil {
|
|
ctx.JSON(http.StatusUnprocessableEntity, gin.H{"errors": err.Error()})
|
|
return
|
|
}
|
|
|
|
if ok, err := h.service.DestroyRole(ctx.Request.Context(), params.Role); err != nil {
|
|
ctx.Error(err) // nolint: errcheck
|
|
return
|
|
} else if !ok {
|
|
ctx.Status(http.StatusNotFound)
|
|
return
|
|
}
|
|
|
|
ctx.Status(http.StatusOK)
|
|
}
|
|
|
|
// @Summary Get Role
|
|
// @Description Get Role
|
|
// @Tags Role
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param role path string true "role"
|
|
// @Success 200
|
|
// @Failure 400
|
|
// @Failure 500
|
|
// @Router /api/v1/roles/{role} [get]
|
|
func (h *Handlers) GetRole(ctx *gin.Context) {
|
|
var params types.RoleParams
|
|
if err := ctx.ShouldBindUri(¶ms); err != nil {
|
|
ctx.JSON(http.StatusUnprocessableEntity, gin.H{"errors": err.Error()})
|
|
return
|
|
}
|
|
|
|
ctx.JSON(http.StatusOK, h.service.GetRole(ctx.Request.Context(), params.Role))
|
|
}
|
|
|
|
// @Summary Get Roles
|
|
// @Description Get roles
|
|
// @Tags Role
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Success 200
|
|
// @Failure 400
|
|
// @Failure 500
|
|
// @Router /api/v1/roles [get]
|
|
func (h *Handlers) GetRoles(ctx *gin.Context) {
|
|
roles := h.service.GetRoles(ctx.Request.Context())
|
|
ctx.JSON(http.StatusOK, roles)
|
|
}
|
|
|
|
// @Summary Add Permission For Role
|
|
// @Description Add Permission by json config
|
|
// @Tags Role
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param Permission body types.AddPermissionForRoleRequest true "Permission"
|
|
// @Param role path string true "role"
|
|
// @Success 200
|
|
// @Failure 400
|
|
// @Failure 500
|
|
// @Router /api/v1/roles/{role}/permissions [post]
|
|
func (h *Handlers) AddPermissionForRole(ctx *gin.Context) {
|
|
var params types.RoleParams
|
|
if err := ctx.ShouldBindUri(¶ms); err != nil {
|
|
ctx.JSON(http.StatusUnprocessableEntity, gin.H{"errors": err.Error()})
|
|
return
|
|
}
|
|
|
|
var json types.AddPermissionForRoleRequest
|
|
if err := ctx.ShouldBindJSON(&json); err != nil {
|
|
ctx.JSON(http.StatusUnprocessableEntity, gin.H{"errors": err.Error()})
|
|
return
|
|
}
|
|
|
|
if ok, err := h.service.AddPermissionForRole(ctx.Request.Context(), params.Role, json); err != nil {
|
|
ctx.Error(err) // nolint: errcheck
|
|
return
|
|
} else if !ok {
|
|
ctx.Status(http.StatusConflict)
|
|
return
|
|
}
|
|
|
|
ctx.Status(http.StatusOK)
|
|
}
|
|
|
|
// @Summary Update Role
|
|
// @Description Remove Role Permission by json config
|
|
// @Tags Role
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param Permission body types.DeletePermissionForRoleRequest true "Permission"
|
|
// @Param role path string true "role"
|
|
// @Success 200
|
|
// @Failure 400
|
|
// @Failure 500
|
|
// @Router /api/v1/roles/{role}/permissions [delete]
|
|
func (h *Handlers) DeletePermissionForRole(ctx *gin.Context) {
|
|
var params types.RoleParams
|
|
if err := ctx.ShouldBindUri(¶ms); err != nil {
|
|
ctx.JSON(http.StatusUnprocessableEntity, gin.H{"errors": err.Error()})
|
|
return
|
|
}
|
|
|
|
var json types.DeletePermissionForRoleRequest
|
|
if err := ctx.ShouldBindJSON(&json); err != nil {
|
|
ctx.JSON(http.StatusUnprocessableEntity, gin.H{"errors": err.Error()})
|
|
return
|
|
}
|
|
|
|
if ok, err := h.service.DeletePermissionForRole(ctx.Request.Context(), params.Role, json); err != nil {
|
|
ctx.Error(err) // nolint: errcheck
|
|
return
|
|
} else if !ok {
|
|
ctx.Status(http.StatusNotFound)
|
|
return
|
|
}
|
|
|
|
ctx.Status(http.StatusOK)
|
|
}
|