You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
186 lines
5.9 KiB
186 lines
5.9 KiB
package v1
|
|
|
|
import (
|
|
"fmt"
|
|
"gin-vue-admin/global/response"
|
|
"gin-vue-admin/model"
|
|
"gin-vue-admin/model/request"
|
|
resp "gin-vue-admin/model/response"
|
|
"gin-vue-admin/service"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// @Tags authorityAndMenu
|
|
// @Summary 获取用户动态路由
|
|
// @Security ApiKeyAuth
|
|
// @Produce application/json
|
|
// @Param data body api.RegisterAndLoginStruct true "可以什么都不填"
|
|
// @Success 200 {string} string "{"success":true,"data":{},"msg":"返回成功"}"
|
|
// @Router /menu/getMenu [post]
|
|
func GetMenu(c *gin.Context) {
|
|
claims, _ := c.Get("claims")
|
|
waitUse := claims.(*request.CustomClaims)
|
|
err, menus := service.GetMenuTree(waitUse.AuthorityId)
|
|
if err != nil {
|
|
response.FailWithMessage(fmt.Sprintf("获取失败,%v", err), c)
|
|
} else {
|
|
response.OkWithData(resp.SysMenusResponse{Menus: menus}, c)
|
|
}
|
|
}
|
|
|
|
// @Tags menu
|
|
// @Summary 分页获取基础menu列表
|
|
// @Security ApiKeyAuth
|
|
// @accept application/json
|
|
// @Produce application/json
|
|
// @Param data body model.PageInfo true "分页获取基础menu列表"
|
|
// @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
|
|
// @Router /menu/getMenuList [post]
|
|
func GetMenuList(c *gin.Context) {
|
|
var pageInfo request.PageInfo
|
|
_ = c.ShouldBindJSON(&pageInfo)
|
|
err, menuList, total := service.GetInfoList(pageInfo)
|
|
if err != nil {
|
|
response.FailWithMessage(fmt.Sprintf("获取数据失败,%v", err), c)
|
|
} else {
|
|
response.OkWithData(resp.PageResult{
|
|
List: menuList,
|
|
Total: total,
|
|
Page: pageInfo.Page,
|
|
PageSize: pageInfo.PageSize,
|
|
}, c)
|
|
}
|
|
}
|
|
|
|
// @Tags menu
|
|
// @Summary 新增菜单
|
|
// @Security ApiKeyAuth
|
|
// @accept application/json
|
|
// @Produce application/json
|
|
// @Param data body model.SysBaseMenu true "新增菜单"
|
|
// @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
|
|
// @Router /menu/addBaseMenu [post]
|
|
func AddBaseMenu(c *gin.Context) {
|
|
var menu model.SysBaseMenu
|
|
_ = c.ShouldBindJSON(&menu)
|
|
err := service.AddBaseMenu(menu)
|
|
if err != nil {
|
|
response.FailWithMessage(fmt.Sprintf("添加失败,%v", err), c)
|
|
} else {
|
|
response.OkWithMessage("添加成功", c)
|
|
}
|
|
}
|
|
|
|
// @Tags authorityAndMenu
|
|
// @Summary 获取用户动态路由
|
|
// @Security ApiKeyAuth
|
|
// @Produce application/json
|
|
// @Param data body api.RegisterAndLoginStruct true "可以什么都不填"
|
|
// @Success 200 {string} string "{"success":true,"data":{},"msg":"返回成功"}"
|
|
// @Router /menu/getBaseMenuTree [post]
|
|
func GetBaseMenuTree(c *gin.Context) {
|
|
err, menus := service.GetBaseMenuTree()
|
|
if err != nil {
|
|
response.FailWithMessage(fmt.Sprintf("获取失败,%v", err), c)
|
|
} else {
|
|
response.OkWithData(resp.SysBaseMenusResponse{Menus: menus}, c)
|
|
|
|
}
|
|
}
|
|
|
|
// @Tags authorityAndMenu
|
|
// @Summary 增加menu和角色关联关系
|
|
// @Security ApiKeyAuth
|
|
// @accept application/json
|
|
// @Produce application/json
|
|
// @Param data body model.AddMenuAuthorityInfo true "增加menu和角色关联关系"
|
|
// @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
|
|
// @Router /menu/addMenuAuthority [post]
|
|
func AddMenuAuthority(c *gin.Context) {
|
|
var addMenuAuthorityInfo request.AddMenuAuthorityInfo
|
|
_ = c.ShouldBindJSON(&addMenuAuthorityInfo)
|
|
|
|
err := service.AddMenuAuthority(addMenuAuthorityInfo.Menus, addMenuAuthorityInfo.AuthorityId)
|
|
if err != nil {
|
|
response.FailWithMessage(fmt.Sprintf("添加失败,%v", err), c)
|
|
} else {
|
|
response.OkWithMessage("添加成功", c)
|
|
}
|
|
}
|
|
|
|
// @Tags authorityAndMenu
|
|
// @Summary 获取指定角色menu
|
|
// @Security ApiKeyAuth
|
|
// @accept application/json
|
|
// @Produce application/json
|
|
// @Param data body model.AuthorityIdInfo true "增加menu和角色关联关系"
|
|
// @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
|
|
// @Router /menu/GetMenuAuthority [post]
|
|
func GetMenuAuthority(c *gin.Context) {
|
|
var authorityIdInfo request.AuthorityIdInfo
|
|
_ = c.ShouldBindJSON(&authorityIdInfo)
|
|
err, menus := service.GetMenuAuthority(authorityIdInfo.AuthorityId)
|
|
if err != nil {
|
|
response.FailWithDetailed(response.ERROR, resp.SysMenusResponse{Menus: menus}, fmt.Sprintf("添加失败,%v", err), c)
|
|
} else {
|
|
response.Result(response.SUCCESS, gin.H{"menus": menus}, "获取成功", c)
|
|
}
|
|
}
|
|
|
|
// @Tags menu
|
|
// @Summary 删除菜单
|
|
// @Security ApiKeyAuth
|
|
// @accept application/json
|
|
// @Produce application/json
|
|
// @Param data body model.GetById true "删除菜单"
|
|
// @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
|
|
// @Router /menu/deleteBaseMenu [post]
|
|
func DeleteBaseMenu(c *gin.Context) {
|
|
var idInfo request.GetById
|
|
_ = c.ShouldBindJSON(&idInfo)
|
|
err := service.DeleteBaseMenu(idInfo.Id)
|
|
if err != nil {
|
|
response.FailWithMessage(fmt.Sprintf("删除失败:%v", err), c)
|
|
} else {
|
|
response.OkWithMessage("删除成功", c)
|
|
|
|
}
|
|
}
|
|
|
|
// @Tags menu
|
|
// @Summary 更新菜单
|
|
// @Security ApiKeyAuth
|
|
// @accept application/json
|
|
// @Produce application/json
|
|
// @Param data body model.SysBaseMenu true "更新菜单"
|
|
// @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
|
|
// @Router /menu/updateBaseMenu [post]
|
|
func UpdateBaseMenu(c *gin.Context) {
|
|
var menu model.SysBaseMenu
|
|
_ = c.ShouldBindJSON(&menu)
|
|
err := service.UpdateBaseMenu(menu)
|
|
if err != nil {
|
|
response.FailWithMessage(fmt.Sprintf("修改失败:%v", err), c)
|
|
} else {
|
|
response.OkWithMessage("修改成功", c)
|
|
}
|
|
}
|
|
|
|
// @Tags menu
|
|
// @Summary 根据id获取菜单
|
|
// @Security ApiKeyAuth
|
|
// @accept application/json
|
|
// @Produce application/json
|
|
// @Param data body model.GetById true "根据id获取菜单"
|
|
// @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
|
|
// @Router /menu/getBaseMenuById [post]
|
|
func GetBaseMenuById(c *gin.Context) {
|
|
var idInfo request.GetById
|
|
_ = c.ShouldBindJSON(&idInfo)
|
|
err, menu := service.GetBaseMenuById(idInfo.Id)
|
|
if err != nil {
|
|
response.FailWithMessage(fmt.Sprintf("查询失败:%v", err), c)
|
|
} else {
|
|
response.OkWithData(resp.SysBaseMenuResponse{Menu: menu}, c)
|
|
}
|
|
}
|