123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- 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"
- "gin-vue-admin/utils"
- "github.com/gin-gonic/gin"
- )
- // @Tags authority
- // @Summary 创建角色
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body model.SysAuthority true "创建角色"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
- // @Router /authority/createAuthority [post]
- func CreateAuthority(c *gin.Context) {
- var auth model.SysAuthority
- _ = c.ShouldBindJSON(&auth)
- AuthorityVerify := utils.Rules{
- "AuthorityId": {utils.NotEmpty()},
- "AuthorityName": {utils.NotEmpty()},
- "ParentId": {utils.NotEmpty()},
- }
- AuthorityVerifyErr := utils.Verify(auth, AuthorityVerify)
- if AuthorityVerifyErr != nil {
- response.FailWithMessage(AuthorityVerifyErr.Error(), c)
- return
- }
- err, authBack := service.CreateAuthority(auth)
- if err != nil {
- response.FailWithMessage(fmt.Sprintf("创建失败,%v", err), c)
- } else {
- response.OkWithData(resp.SysAuthorityResponse{Authority: authBack}, c)
- }
- }
- // @Tags authority
- // @Summary 拷贝角色
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body response.SysAuthorityCopyResponse true "拷贝角色"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"拷贝成功"}"
- // @Router /authority/copyAuthority [post]
- func CopyAuthority(c *gin.Context) {
- var copyInfo resp.SysAuthorityCopyResponse
- _ = c.ShouldBindJSON(©Info)
- OldAuthorityVerify := utils.Rules{
- "OldAuthorityId": {utils.NotEmpty()},
- }
- OldAuthorityVerifyErr := utils.Verify(copyInfo, OldAuthorityVerify)
- if OldAuthorityVerifyErr != nil {
- response.FailWithMessage(OldAuthorityVerifyErr.Error(), c)
- return
- }
- AuthorityVerify := utils.Rules{
- "AuthorityId": {utils.NotEmpty()},
- "AuthorityName": {utils.NotEmpty()},
- "ParentId": {utils.NotEmpty()},
- }
- AuthorityVerifyErr := utils.Verify(copyInfo.Authority, AuthorityVerify)
- if AuthorityVerifyErr != nil {
- response.FailWithMessage(AuthorityVerifyErr.Error(), c)
- return
- }
- err, authBack := service.CopyAuthority(copyInfo)
- if err != nil {
- response.FailWithMessage(fmt.Sprintf("拷贝失败,%v", err), c)
- } else {
- response.OkWithData(resp.SysAuthorityResponse{Authority: authBack}, c)
- }
- }
- // @Tags authority
- // @Summary 删除角色
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body model.SysAuthority true "删除角色"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
- // @Router /authority/deleteAuthority [post]
- func DeleteAuthority(c *gin.Context) {
- var a model.SysAuthority
- _ = c.ShouldBindJSON(&a)
- AuthorityIdVerifyErr := utils.Verify(a, utils.CustomizeMap["AuthorityIdVerify"])
- if AuthorityIdVerifyErr != nil {
- response.FailWithMessage(AuthorityIdVerifyErr.Error(), c)
- return
- }
- // 删除角色之前需要判断是否有用户正在使用此角色
- err := service.DeleteAuthority(&a)
- if err != nil {
- response.FailWithMessage(fmt.Sprintf("删除失败,%v", err), c)
- } else {
- response.OkWithMessage("删除成功", c)
- }
- }
- // @Tags authority
- // @Summary 设置角色资源权限
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body model.SysAuthority true "设置角色资源权限"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"设置成功"}"
- // @Router /authority/updateAuthority [post]
- func UpdateAuthority(c *gin.Context) {
- var auth model.SysAuthority
- _ = c.ShouldBindJSON(&auth)
- AuthorityVerify := utils.Rules{
- "AuthorityId": {utils.NotEmpty()},
- "AuthorityName": {utils.NotEmpty()},
- "ParentId": {utils.NotEmpty()},
- }
- AuthorityVerifyErr := utils.Verify(auth, AuthorityVerify)
- if AuthorityVerifyErr != nil {
- response.FailWithMessage(AuthorityVerifyErr.Error(), c)
- return
- }
- err, authority := service.UpdateAuthority(auth)
- if err != nil {
- response.FailWithMessage(fmt.Sprintf("更新失败,%v", err), c)
- } else {
- response.OkWithData(resp.SysAuthorityResponse{Authority: authority}, c)
- }
- }
- // @Tags authority
- // @Summary 分页获取角色列表
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body request.PageInfo true "分页获取用户列表"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
- // @Router /authority/getAuthorityList [post]
- func GetAuthorityList(c *gin.Context) {
- var pageInfo request.PageInfo
- _ = c.ShouldBindJSON(&pageInfo)
- PageVerifyErr := utils.Verify(pageInfo, utils.CustomizeMap["PageVerify"])
- if PageVerifyErr != nil {
- response.FailWithMessage(PageVerifyErr.Error(), c)
- return
- }
- err, list, total := service.GetAuthorityInfoList(pageInfo)
- if err != nil {
- response.FailWithMessage(fmt.Sprintf("获取数据失败,%v", err), c)
- } else {
- response.OkWithData(resp.PageResult{
- List: list,
- Total: total,
- Page: pageInfo.Page,
- PageSize: pageInfo.PageSize,
- }, c)
- }
- }
- // @Tags authority
- // @Summary 设置角色资源权限
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body model.SysAuthority true "设置角色资源权限"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"设置成功"}"
- // @Router /authority/setDataAuthority [post]
- func SetDataAuthority(c *gin.Context) {
- var auth model.SysAuthority
- _ = c.ShouldBindJSON(&auth)
- AuthorityIdVerifyErr := utils.Verify(auth, utils.CustomizeMap["AuthorityIdVerify"])
- if AuthorityIdVerifyErr != nil {
- response.FailWithMessage(AuthorityIdVerifyErr.Error(), c)
- return
- }
- err := service.SetDataAuthority(auth)
- if err != nil {
- response.FailWithMessage(fmt.Sprintf("设置关联失败,%v", err), c)
- } else {
- response.Ok(c)
- }
- }
|