fix
wangpengfei
2023-08-24 2128d417cbb9136ad5d8448fef7ce62a082922be
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
package system
 
import (
    "errors"
    "strconv"
 
    "github.com/flipped-aurora/gin-vue-admin/server/global"
    "github.com/flipped-aurora/gin-vue-admin/server/model/common/request"
    "github.com/flipped-aurora/gin-vue-admin/server/model/system"
    "github.com/flipped-aurora/gin-vue-admin/server/model/system/response"
    "gorm.io/gorm"
)
 
var ErrRoleExistence = errors.New("存在相同角色id")
 
//@author: [piexlmax](https://github.com/piexlmax)
//@function: CreateAuthority
//@description: 创建一个角色
//@param: auth model.SysAuthority
//@return: authority system.SysAuthority, err error
 
type AuthorityService struct{}
 
var AuthorityServiceApp = new(AuthorityService)
 
func (authorityService *AuthorityService) CreateAuthority(auth system.SysAuthority) (authority system.SysAuthority, err error) {
    var authorityBox system.SysAuthority
    if !errors.Is(global.GVA_DB.Where("authority_id = ?", auth.AuthorityId).First(&authorityBox).Error, gorm.ErrRecordNotFound) {
        return auth, ErrRoleExistence
    }
    err = global.GVA_DB.Create(&auth).Error
    return auth, err
}
 
//@author: [piexlmax](https://github.com/piexlmax)
//@function: CopyAuthority
//@description: 复制一个角色
//@param: copyInfo response.SysAuthorityCopyResponse
//@return: authority system.SysAuthority, err error
 
func (authorityService *AuthorityService) CopyAuthority(copyInfo response.SysAuthorityCopyResponse) (authority system.SysAuthority, err error) {
    var authorityBox system.SysAuthority
    if !errors.Is(global.GVA_DB.Where("authority_id = ?", copyInfo.Authority.AuthorityId).First(&authorityBox).Error, gorm.ErrRecordNotFound) {
        return authority, ErrRoleExistence
    }
    copyInfo.Authority.Children = []system.SysAuthority{}
    menus, err := MenuServiceApp.GetMenuAuthority(&request.GetAuthorityId{AuthorityId: copyInfo.OldAuthorityId})
    if err != nil {
        return
    }
    var baseMenu []system.SysBaseMenu
    for _, v := range menus {
        intNum, _ := strconv.Atoi(v.MenuId)
        v.SysBaseMenu.ID = uint(intNum)
        baseMenu = append(baseMenu, v.SysBaseMenu)
    }
    copyInfo.Authority.SysBaseMenus = baseMenu
    err = global.GVA_DB.Create(&copyInfo.Authority).Error
    if err != nil {
        return
    }
 
    var btns []system.SysAuthorityBtn
 
    err = global.GVA_DB.Find(&btns, "authority_id = ?", copyInfo.OldAuthorityId).Error
    if err != nil {
        return
    }
    if len(btns) > 0 {
        for i := range btns {
            btns[i].AuthorityId = copyInfo.Authority.AuthorityId
        }
        err = global.GVA_DB.Create(&btns).Error
 
        if err != nil {
            return
        }
    }
    paths := CasbinServiceApp.GetPolicyPathByAuthorityId(copyInfo.OldAuthorityId)
    err = CasbinServiceApp.UpdateCasbin(copyInfo.Authority.AuthorityId, paths)
    if err != nil {
        _ = authorityService.DeleteAuthority(&copyInfo.Authority)
    }
    return copyInfo.Authority, err
}
 
//@author: [piexlmax](https://github.com/piexlmax)
//@function: UpdateAuthority
//@description: 更改一个角色
//@param: auth model.SysAuthority
//@return: authority system.SysAuthority, err error
 
func (authorityService *AuthorityService) UpdateAuthority(auth system.SysAuthority) (authority system.SysAuthority, err error) {
    err = global.GVA_DB.Where("authority_id = ?", auth.AuthorityId).First(&system.SysAuthority{}).Updates(&auth).Error
    return auth, err
}
 
//@author: [piexlmax](https://github.com/piexlmax)
//@function: DeleteAuthority
//@description: 删除角色
//@param: auth *model.SysAuthority
//@return: err error
 
func (authorityService *AuthorityService) DeleteAuthority(auth *system.SysAuthority) (err error) {
    if errors.Is(global.GVA_DB.Debug().Preload("Users").First(&auth).Error, gorm.ErrRecordNotFound) {
        return errors.New("该角色不存在")
    }
    if len(auth.Users) != 0 {
        return errors.New("此角色有用户正在使用禁止删除")
    }
    if !errors.Is(global.GVA_DB.Where("authority_id = ?", auth.AuthorityId).First(&system.SysUser{}).Error, gorm.ErrRecordNotFound) {
        return errors.New("此角色有用户正在使用禁止删除")
    }
    if !errors.Is(global.GVA_DB.Where("parent_id = ?", auth.AuthorityId).First(&system.SysAuthority{}).Error, gorm.ErrRecordNotFound) {
        return errors.New("此角色存在子角色不允许删除")
    }
    db := global.GVA_DB.Preload("SysBaseMenus").Preload("DataAuthorityId").Where("authority_id = ?", auth.AuthorityId).First(auth)
    err = db.Unscoped().Delete(auth).Error
    if err != nil {
        return
    }
    if len(auth.SysBaseMenus) > 0 {
        err = global.GVA_DB.Model(auth).Association("SysBaseMenus").Delete(auth.SysBaseMenus)
        if err != nil {
            return
        }
        // err = db.Association("SysBaseMenus").Delete(&auth)
    }
    if len(auth.DataAuthorityId) > 0 {
        err = global.GVA_DB.Model(auth).Association("DataAuthorityId").Delete(auth.DataAuthorityId)
        if err != nil {
            return
        }
    }
    err = global.GVA_DB.Delete(&[]system.SysUserAuthority{}, "sys_authority_authority_id = ?", auth.AuthorityId).Error
    if err != nil {
        return
    }
    err = global.GVA_DB.Delete(&[]system.SysAuthorityBtn{}, "authority_id = ?", auth.AuthorityId).Error
    if err != nil {
        return
    }
    authorityId := strconv.Itoa(int(auth.AuthorityId))
    CasbinServiceApp.ClearCasbin(0, authorityId)
    return err
}
 
//@author: [piexlmax](https://github.com/piexlmax)
//@function: GetAuthorityInfoList
//@description: 分页获取数据
//@param: info request.PageInfo
//@return: list interface{}, total int64, err error
 
func (authorityService *AuthorityService) GetAuthorityInfoList(info request.PageInfo) (list interface{}, total int64, err error) {
    limit := info.PageSize
    offset := info.PageSize * (info.Page - 1)
    db := global.GVA_DB.Model(&system.SysAuthority{})
    if err = db.Where("parent_id = ?", "0").Count(&total).Error; total == 0 || err != nil {
        return
    }
    var authority []system.SysAuthority
    err = db.Limit(limit).Offset(offset).Preload("DataAuthorityId").Where("parent_id = ?", "0").Find(&authority).Error
    for k := range authority {
        err = authorityService.findChildrenAuthority(&authority[k])
    }
    return authority, total, err
}
 
//@author: [piexlmax](https://github.com/piexlmax)
//@function: GetAuthorityInfo
//@description: 获取所有角色信息
//@param: auth model.SysAuthority
//@return: sa system.SysAuthority, err error
 
func (authorityService *AuthorityService) GetAuthorityInfo(auth system.SysAuthority) (sa system.SysAuthority, err error) {
    err = global.GVA_DB.Preload("DataAuthorityId").Where("authority_id = ?", auth.AuthorityId).First(&sa).Error
    return sa, err
}
 
//@author: [piexlmax](https://github.com/piexlmax)
//@function: SetDataAuthority
//@description: 设置角色资源权限
//@param: auth model.SysAuthority
//@return: error
 
func (authorityService *AuthorityService) SetDataAuthority(auth system.SysAuthority) error {
    var s system.SysAuthority
    global.GVA_DB.Preload("DataAuthorityId").First(&s, "authority_id = ?", auth.AuthorityId)
    err := global.GVA_DB.Model(&s).Association("DataAuthorityId").Replace(&auth.DataAuthorityId)
    return err
}
 
//@author: [piexlmax](https://github.com/piexlmax)
//@function: SetMenuAuthority
//@description: 菜单与角色绑定
//@param: auth *model.SysAuthority
//@return: error
 
func (authorityService *AuthorityService) SetMenuAuthority(auth *system.SysAuthority) error {
    var s system.SysAuthority
    global.GVA_DB.Preload("SysBaseMenus").First(&s, "authority_id = ?", auth.AuthorityId)
    err := global.GVA_DB.Model(&s).Association("SysBaseMenus").Replace(&auth.SysBaseMenus)
    return err
}
 
//@author: [piexlmax](https://github.com/piexlmax)
//@function: findChildrenAuthority
//@description: 查询子角色
//@param: authority *model.SysAuthority
//@return: err error
 
func (authorityService *AuthorityService) findChildrenAuthority(authority *system.SysAuthority) (err error) {
    err = global.GVA_DB.Preload("DataAuthorityId").Where("parent_id = ?", authority.AuthorityId).Find(&authority.Children).Error
    if len(authority.Children) > 0 {
        for k := range authority.Children {
            err = authorityService.findChildrenAuthority(&authority.Children[k])
        }
    }
    return err
}