commit | author | age
|
9bcb19
|
1 |
/* |
I |
2 |
Copyright [2020] [https://www.xiaonuo.vip] |
|
3 |
|
|
4 |
Licensed under the Apache License, Version 2.0 (the "License"); |
|
5 |
you may not use this file except in compliance with the License. |
|
6 |
You may obtain a copy of the License at |
|
7 |
|
|
8 |
http://www.apache.org/licenses/LICENSE-2.0 |
|
9 |
|
|
10 |
Unless required by applicable law or agreed to in writing, software |
|
11 |
distributed under the License is distributed on an "AS IS" BASIS, |
|
12 |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
13 |
See the License for the specific language governing permissions and |
|
14 |
limitations under the License. |
|
15 |
|
|
16 |
Snowy采用APACHE LICENSE 2.0开源协议,您在使用过程中,需要注意以下几点: |
|
17 |
|
|
18 |
1.请不要删除和修改根目录下的LICENSE文件。 |
|
19 |
2.请不要删除和修改Snowy源码头部的版权声明。 |
|
20 |
3.请保留源码和相关描述文件的项目出处,作者声明等。 |
|
21 |
4.分发源码时候,请注明软件出处 https://gitee.com/xiaonuobase/snowy |
|
22 |
5.在修改包名,模块名称,项目代码等时,请注明软件出处 https://gitee.com/xiaonuobase/snowy |
|
23 |
6.若您的项目无法满足以上几点,可申请商业授权,获取Snowy商业授权许可,请在官网购买授权,地址为 https://www.xiaonuo.vip |
|
24 |
*/ |
|
25 |
package vip.xiaonuo.sys.modular.user.service.impl; |
|
26 |
|
|
27 |
import cn.hutool.core.collection.CollectionUtil; |
|
28 |
import cn.hutool.core.util.ObjectUtil; |
|
29 |
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
|
30 |
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
|
31 |
import org.springframework.stereotype.Service; |
|
32 |
import vip.xiaonuo.sys.modular.role.service.SysRoleService; |
|
33 |
import vip.xiaonuo.sys.modular.user.entity.SysUserRole; |
|
34 |
import vip.xiaonuo.sys.modular.user.mapper.SysUserRoleMapper; |
|
35 |
import vip.xiaonuo.sys.modular.user.param.SysUserParam; |
|
36 |
import vip.xiaonuo.sys.modular.user.service.SysUserRoleService; |
|
37 |
|
|
38 |
import javax.annotation.Resource; |
|
39 |
import java.util.List; |
|
40 |
import java.util.stream.Collectors; |
|
41 |
|
|
42 |
/** |
|
43 |
* 系统用户角色service接口实现类 |
|
44 |
* |
|
45 |
* @author xuyuxiang |
|
46 |
* @date 2020/3/13 15:48 |
|
47 |
*/ |
|
48 |
@Service |
|
49 |
public class SysUserRoleServiceImpl extends ServiceImpl<SysUserRoleMapper, SysUserRole> implements SysUserRoleService { |
|
50 |
|
|
51 |
@Resource |
|
52 |
private SysRoleService sysRoleService; |
|
53 |
|
|
54 |
@Override |
|
55 |
public List<Long> getUserRoleIdList(Long userId) { |
|
56 |
LambdaQueryWrapper<SysUserRole> queryWrapper = new LambdaQueryWrapper<>(); |
|
57 |
queryWrapper.eq(SysUserRole::getUserId, userId); |
|
58 |
return this.list(queryWrapper).stream().map(SysUserRole::getRoleId).collect(Collectors.toList()); |
|
59 |
} |
|
60 |
|
|
61 |
@Override |
|
62 |
public void grantRole(SysUserParam sysUserParam) { |
|
63 |
Long userId = sysUserParam.getId(); |
|
64 |
//删除所拥有角色 |
|
65 |
LambdaQueryWrapper<SysUserRole> queryWrapper = new LambdaQueryWrapper<>(); |
|
66 |
queryWrapper.eq(SysUserRole::getUserId, userId); |
|
67 |
this.remove(queryWrapper); |
|
68 |
//授权角色 |
|
69 |
sysUserParam.getGrantRoleIdList().forEach(roleId -> { |
|
70 |
SysUserRole sysUserRole = new SysUserRole(); |
|
71 |
sysUserRole.setUserId(userId); |
|
72 |
sysUserRole.setRoleId(roleId); |
|
73 |
this.save(sysUserRole); |
|
74 |
}); |
|
75 |
} |
|
76 |
|
|
77 |
@Override |
|
78 |
public List<Long> getUserRoleDataScopeIdList(Long userId, Long orgId) { |
|
79 |
List<Long> roleIdList = CollectionUtil.newArrayList(); |
|
80 |
|
|
81 |
// 获取用户所有角色 |
|
82 |
LambdaQueryWrapper<SysUserRole> queryWrapper = new LambdaQueryWrapper<>(); |
|
83 |
queryWrapper.eq(SysUserRole::getUserId, userId); |
|
84 |
this.list(queryWrapper).forEach(sysUserRole -> roleIdList.add(sysUserRole.getRoleId())); |
|
85 |
|
|
86 |
// 获取这些角色对应的数据范围 |
|
87 |
if (ObjectUtil.isNotEmpty(roleIdList)) { |
|
88 |
return sysRoleService.getUserDataScopeIdList(roleIdList, orgId); |
|
89 |
} |
|
90 |
return CollectionUtil.newArrayList(); |
|
91 |
} |
|
92 |
|
|
93 |
@Override |
|
94 |
public void deleteUserRoleListByRoleId(Long roleId) { |
|
95 |
LambdaQueryWrapper<SysUserRole> queryWrapper = new LambdaQueryWrapper<>(); |
|
96 |
queryWrapper.eq(SysUserRole::getRoleId, roleId); |
|
97 |
this.remove(queryWrapper); |
|
98 |
} |
|
99 |
|
|
100 |
@Override |
|
101 |
public void deleteUserRoleListByUserId(Long userId) { |
|
102 |
LambdaQueryWrapper<SysUserRole> queryWrapper = new LambdaQueryWrapper<>(); |
|
103 |
queryWrapper.eq(SysUserRole::getUserId, userId); |
|
104 |
this.remove(queryWrapper); |
|
105 |
} |
|
106 |
} |