- 权限表增加 available_for_role_types 字段,支持标记权限可用角色类型 - 权限列表和权限树接口支持按 available_for_role_type 过滤 - 新增角色状态切换接口 PUT /api/admin/roles/:id/status - 角色分配权限时验证权限的可用角色类型 - 完善数据库迁移脚本和单元测试 - 补充数据库迁移相关开发规范文档
81 lines
2.3 KiB
Go
81 lines
2.3 KiB
Go
package routes
|
|
|
|
import (
|
|
"github.com/gofiber/fiber/v2"
|
|
|
|
"github.com/break/junhong_cmp_fiber/internal/handler/admin"
|
|
"github.com/break/junhong_cmp_fiber/internal/model"
|
|
"github.com/break/junhong_cmp_fiber/pkg/openapi"
|
|
)
|
|
|
|
// registerRoleRoutes 注册角色相关路由
|
|
func registerRoleRoutes(api fiber.Router, h *admin.RoleHandler, doc *openapi.Generator, basePath string) {
|
|
roles := api.Group("/roles")
|
|
groupPath := basePath + "/roles"
|
|
|
|
// 角色 CRUD
|
|
Register(roles, doc, groupPath, "POST", "", h.Create, RouteSpec{
|
|
Summary: "创建角色",
|
|
Tags: []string{"Role"},
|
|
Input: new(model.CreateRoleRequest),
|
|
Output: new(model.RoleResponse),
|
|
})
|
|
|
|
Register(roles, doc, groupPath, "GET", "", h.List, RouteSpec{
|
|
Summary: "角色列表",
|
|
Tags: []string{"Role"},
|
|
Input: new(model.RoleListRequest),
|
|
Output: new(model.RolePageResult),
|
|
})
|
|
|
|
Register(roles, doc, groupPath, "GET", "/:id", h.Get, RouteSpec{
|
|
Summary: "获取角色详情",
|
|
Tags: []string{"Role"},
|
|
Input: new(model.IDReq),
|
|
Output: new(model.RoleResponse),
|
|
})
|
|
|
|
Register(roles, doc, groupPath, "PUT", "/:id", h.Update, RouteSpec{
|
|
Summary: "更新角色",
|
|
Tags: []string{"Role"},
|
|
Input: new(model.UpdateRoleParams),
|
|
Output: new(model.RoleResponse),
|
|
})
|
|
|
|
Register(roles, doc, groupPath, "PUT", "/:id/status", h.UpdateStatus, RouteSpec{
|
|
Summary: "更新角色状态",
|
|
Tags: []string{"Role"},
|
|
Input: new(model.UpdateRoleStatusParams),
|
|
Output: nil,
|
|
})
|
|
|
|
Register(roles, doc, groupPath, "DELETE", "/:id", h.Delete, RouteSpec{
|
|
Summary: "删除角色",
|
|
Tags: []string{"Role"},
|
|
Input: new(model.IDReq),
|
|
Output: nil,
|
|
})
|
|
|
|
// 角色-权限关联
|
|
Register(roles, doc, groupPath, "POST", "/:id/permissions", h.AssignPermissions, RouteSpec{
|
|
Summary: "分配权限",
|
|
Tags: []string{"Role"},
|
|
Input: new(model.AssignPermissionsParams),
|
|
Output: nil,
|
|
})
|
|
|
|
Register(roles, doc, groupPath, "GET", "/:id/permissions", h.GetPermissions, RouteSpec{
|
|
Summary: "获取角色权限",
|
|
Tags: []string{"Role"},
|
|
Input: new(model.IDReq),
|
|
Output: new([]model.Permission),
|
|
})
|
|
|
|
Register(roles, doc, groupPath, "DELETE", "/:role_id/permissions/:perm_id", h.RemovePermission, RouteSpec{
|
|
Summary: "移除权限",
|
|
Tags: []string{"Role"},
|
|
Input: new(model.RemovePermissionParams),
|
|
Output: nil,
|
|
})
|
|
}
|