Browse Source

🎉 增加接口权限业务模块

test
smallchill 6 years ago
parent
commit
4504581789
  1. 2
      blade-service-api/blade-datascope-api/pom.xml
  2. 72
      blade-service-api/blade-system-api/src/main/java/org/springblade/system/entity/ApiScope.java
  3. 2
      blade-service-api/blade-system-api/src/main/java/org/springblade/system/entity/DataScope.java
  4. 10
      blade-service-api/blade-system-api/src/main/java/org/springblade/system/entity/RoleScope.java
  5. 39
      blade-service-api/blade-system-api/src/main/java/org/springblade/system/vo/ApiScopeVO.java
  6. 4
      blade-service-api/blade-system-api/src/main/java/org/springblade/system/vo/CheckedTreeVO.java
  7. 4
      blade-service-api/blade-system-api/src/main/java/org/springblade/system/vo/GrantTreeVO.java
  8. 121
      blade-service/blade-system/src/main/java/org/springblade/system/controller/ApiScopeController.java
  9. 1
      blade-service/blade-system/src/main/java/org/springblade/system/controller/DataScopeController.java
  10. 23
      blade-service/blade-system/src/main/java/org/springblade/system/controller/MenuController.java
  11. 5
      blade-service/blade-system/src/main/java/org/springblade/system/controller/RoleController.java
  12. 30
      blade-service/blade-system/src/main/java/org/springblade/system/mapper/ApiScopeMapper.java
  13. 5
      blade-service/blade-system/src/main/java/org/springblade/system/mapper/ApiScopeMapper.xml
  14. 19
      blade-service/blade-system/src/main/java/org/springblade/system/mapper/MenuMapper.java
  15. 106
      blade-service/blade-system/src/main/java/org/springblade/system/mapper/MenuMapper.xml
  16. 30
      blade-service/blade-system/src/main/java/org/springblade/system/service/IApiScopeService.java
  17. 20
      blade-service/blade-system/src/main/java/org/springblade/system/service/IMenuService.java
  18. 4
      blade-service/blade-system/src/main/java/org/springblade/system/service/IRoleService.java
  19. 34
      blade-service/blade-system/src/main/java/org/springblade/system/service/impl/ApiScopeServiceImpl.java
  20. 17
      blade-service/blade-system/src/main/java/org/springblade/system/service/impl/MenuServiceImpl.java
  21. 27
      blade-service/blade-system/src/main/java/org/springblade/system/service/impl/RoleServiceImpl.java
  22. 46
      blade-service/blade-system/src/main/java/org/springblade/system/wrapper/ApiScopeWrapper.java
  23. 2
      blade-service/blade-system/src/main/java/org/springblade/system/wrapper/DataScopeWrapper.java
  24. 118
      doc/sql/bladex-2.0.4~2.0.5-update.sql

2
blade-service-api/blade-datascope-api/pom.xml

@ -27,6 +27,4 @@
</dependency>
</dependencies>
</project>

72
blade-service-api/blade-system-api/src/main/java/org/springblade/system/entity/ApiScope.java

@ -0,0 +1,72 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package org.springblade.system.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springblade.core.mp.base.BaseEntity;
/**
* 实体类
*
* @author BladeX
* @since 2019-06-23
*/
@Data
@TableName("blade_scope_api")
@EqualsAndHashCode(callSuper = true)
@ApiModel(value = "ApiScope对象", description = "ApiScope对象")
public class ApiScope extends BaseEntity {
private static final long serialVersionUID = 1L;
/**
* 菜单主键
*/
@ApiModelProperty(value = "菜单主键")
private Long menuId;
/**
* 资源编号
*/
@ApiModelProperty(value = "资源编号")
private String resourceCode;
/**
* 接口权限名称
*/
@ApiModelProperty(value = "接口权限名称")
private String scopeName;
/**
* 接口权限字段
*/
@ApiModelProperty(value = "接口权限字段")
private String scopePath;
/**
* 接口权限类型
*/
@ApiModelProperty(value = "接口权限类型")
private Integer scopeType;
/**
* 接口权限备注
*/
@ApiModelProperty(value = "接口权限备注")
private String remark;
}

2
blade-service-api/blade-system-api/src/main/java/org/springblade/system/entity/DataScope.java

@ -30,7 +30,7 @@ import org.springblade.core.mp.base.BaseEntity;
* @since 2019-06-23
*/
@Data
@TableName("blade_data_scope")
@TableName("blade_scope_data")
@EqualsAndHashCode(callSuper = true)
@ApiModel(value = "DataScope对象", description = "DataScope对象")
public class DataScope extends BaseEntity {

10
blade-service-api/blade-system-api/src/main/java/org/springblade/system/entity/RoleScope.java

@ -48,10 +48,16 @@ public class RoleScope implements Serializable {
private Long id;
/**
* 数据权限id
* 权限类型
*/
@ApiModelProperty(value = "权限类型")
private Integer scopeCategory;
/**
* 权限id
*/
@JsonSerialize(using = ToStringSerializer.class)
@ApiModelProperty(value = "数据权限id")
@ApiModelProperty(value = "权限id")
private Long scopeId;
/**

39
blade-service-api/blade-system-api/src/main/java/org/springblade/system/vo/ApiScopeVO.java

@ -0,0 +1,39 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package org.springblade.system.vo;
import io.swagger.annotations.ApiModel;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springblade.system.entity.ApiScope;
/**
* 视图实体类
*
* @author Chill
*/
@Data
@EqualsAndHashCode(callSuper = true)
@ApiModel(value = "ApiScopeVO对象", description = "ApiScopeVO对象")
public class ApiScopeVO extends ApiScope {
private static final long serialVersionUID = 1L;
/**
* 规则类型名
*/
private String scopeTypeName;
}

4
blade-service-api/blade-system-api/src/main/java/org/springblade/system/vo/CheckedTreeVO.java

@ -30,6 +30,8 @@ public class CheckedTreeVO {
private List<String> menu;
private List<String> scope;
private List<String> dataScope;
private List<String> apiScope;
}

4
blade-service-api/blade-system-api/src/main/java/org/springblade/system/vo/GrantTreeVO.java

@ -30,6 +30,8 @@ public class GrantTreeVO {
private List<MenuVO> menu;
private List<MenuVO> scope;
private List<MenuVO> dataScope;
private List<MenuVO> apiScope;
}

121
blade-service/blade-system/src/main/java/org/springblade/system/controller/ApiScopeController.java

@ -0,0 +1,121 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package org.springblade.system.controller;
import com.baomidou.mybatisplus.core.metadata.IPage;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiOperationSupport;
import io.swagger.annotations.ApiParam;
import lombok.AllArgsConstructor;
import org.springblade.core.boot.ctrl.BladeController;
import org.springblade.core.mp.support.Condition;
import org.springblade.core.mp.support.Query;
import org.springblade.core.tool.api.R;
import org.springblade.core.tool.utils.Func;
import org.springblade.system.entity.ApiScope;
import org.springblade.system.service.IApiScopeService;
import org.springblade.system.vo.ApiScopeVO;
import org.springblade.system.wrapper.ApiScopeWrapper;
import org.springframework.cache.annotation.CacheEvict;
import org.springframework.web.bind.annotation.*;
import javax.validation.Valid;
import static org.springblade.core.cache.constant.CacheConstant.SYS_CACHE;
/**
* 接口权限控制器
*
* @author BladeX
*/
@RestController
@AllArgsConstructor
@RequestMapping("api-scope")
@Api(value = "接口权限", tags = "接口权限")
public class ApiScopeController extends BladeController {
private IApiScopeService apiScopeService;
/**
* 详情
*/
@GetMapping("/detail")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "详情", notes = "传入dataScope")
public R<ApiScope> detail(ApiScope dataScope) {
ApiScope detail = apiScopeService.getOne(Condition.getQueryWrapper(dataScope));
return R.data(detail);
}
/**
* 分页
*/
@GetMapping("/list")
@ApiOperationSupport(order = 2)
@ApiOperation(value = "分页", notes = "传入dataScope")
public R<IPage<ApiScopeVO>> list(ApiScope dataScope, Query query) {
IPage<ApiScope> pages = apiScopeService.page(Condition.getPage(query), Condition.getQueryWrapper(dataScope));
return R.data(ApiScopeWrapper.build().pageVO(pages));
}
/**
* 新增
*/
@PostMapping("/save")
@ApiOperationSupport(order = 3)
@CacheEvict(cacheNames = {SYS_CACHE}, allEntries = true)
@ApiOperation(value = "新增", notes = "传入dataScope")
public R save(@Valid @RequestBody ApiScope dataScope) {
return R.status(apiScopeService.save(dataScope));
}
/**
* 修改
*/
@PostMapping("/update")
@ApiOperationSupport(order = 4)
@CacheEvict(cacheNames = {SYS_CACHE}, allEntries = true)
@ApiOperation(value = "修改", notes = "传入dataScope")
public R update(@Valid @RequestBody ApiScope dataScope) {
return R.status(apiScopeService.updateById(dataScope));
}
/**
* 新增或修改
*/
@PostMapping("/submit")
@ApiOperationSupport(order = 5)
@CacheEvict(cacheNames = {SYS_CACHE}, allEntries = true)
@ApiOperation(value = "新增或修改", notes = "传入dataScope")
public R submit(@Valid @RequestBody ApiScope dataScope) {
return R.status(apiScopeService.saveOrUpdate(dataScope));
}
/**
* 删除
*/
@PostMapping("/remove")
@ApiOperationSupport(order = 6)
@CacheEvict(cacheNames = {SYS_CACHE}, allEntries = true)
@ApiOperation(value = "逻辑删除", notes = "传入ids")
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
return R.status(apiScopeService.deleteLogic(Func.toLongList(ids)));
}
}

1
blade-service/blade-system/src/main/java/org/springblade/system/controller/DataScopeController.java

@ -42,7 +42,6 @@ import static org.springblade.core.cache.constant.CacheConstant.SYS_CACHE;
* 数据权限控制器
*
* @author BladeX
* @since 2019-06-23
*/
@RestController
@AllArgsConstructor

23
blade-service/blade-system/src/main/java/org/springblade/system/controller/MenuController.java

@ -80,11 +80,26 @@ public class MenuController extends BladeController {
@ApiOperationSupport(order = 2)
@ApiOperation(value = "列表", notes = "传入menu")
public R<List<MenuVO>> list(@ApiIgnore @RequestParam Map<String, Object> menu) {
@SuppressWarnings("unchecked")
List<Menu> list = menuService.list(Condition.getQueryWrapper(menu, Menu.class).lambda().orderByAsc(Menu::getSort));
return R.data(MenuWrapper.build().listNodeVO(list));
}
/**
* 列表
*/
@GetMapping("/menu-list")
@ApiImplicitParams({
@ApiImplicitParam(name = "code", value = "菜单编号", paramType = "query", dataType = "string"),
@ApiImplicitParam(name = "name", value = "菜单名称", paramType = "query", dataType = "string")
})
@PreAuth(RoleConstant.HAS_ROLE_ADMINISTRATOR)
@ApiOperationSupport(order = 2)
@ApiOperation(value = "列表", notes = "传入menu")
public R<List<MenuVO>> menuList(@ApiIgnore @RequestParam Map<String, Object> menu) {
List<Menu> list = menuService.list(Condition.getQueryWrapper(menu, Menu.class).lambda().eq(Menu::getAlias, "menu").orderByAsc(Menu::getSort));
return R.data(MenuWrapper.build().listNodeVO(list));
}
/**
* 新增或修改
*/
@ -152,7 +167,8 @@ public class MenuController extends BladeController {
public R<GrantTreeVO> grantTree(BladeUser user) {
GrantTreeVO vo = new GrantTreeVO();
vo.setMenu(menuService.grantTree(user));
vo.setScope(menuService.grantScopeTree(user));
vo.setDataScope(menuService.grantDataScopeTree(user));
vo.setApiScope(menuService.grantApiScopeTree(user));
return R.data(vo);
}
@ -165,7 +181,8 @@ public class MenuController extends BladeController {
public R<CheckedTreeVO> roleTreeKeys(String roleIds) {
CheckedTreeVO vo = new CheckedTreeVO();
vo.setMenu(menuService.roleTreeKeys(roleIds));
vo.setScope(menuService.scopeTreeKeys(roleIds));
vo.setDataScope(menuService.dataScopeTreeKeys(roleIds));
vo.setApiScope(menuService.apiScopeTreeKeys(roleIds));
return R.data(vo);
}

5
blade-service/blade-system/src/main/java/org/springblade/system/controller/RoleController.java

@ -129,8 +129,9 @@ public class RoleController extends BladeController {
@CacheEvict(cacheNames = {SYS_CACHE}, allEntries = true)
public R grant(@ApiParam(value = "roleId集合", required = true) @RequestParam String roleIds,
@ApiParam(value = "menuId集合", required = true) @RequestParam String menuIds,
@ApiParam(value = "scopeId集合") String scopeIds) {
boolean temp = roleService.grant(Func.toLongList(roleIds), Func.toLongList(menuIds), Func.toLongList(scopeIds));
@ApiParam(value = "dataScopeId集合") String dataScopeIds,
@ApiParam(value = "apiScopeId集合") String apiScopeIds) {
boolean temp = roleService.grant(Func.toLongList(roleIds), Func.toLongList(menuIds), Func.toLongList(dataScopeIds), Func.toLongList(apiScopeIds));
return R.status(temp);
}

30
blade-service/blade-system/src/main/java/org/springblade/system/mapper/ApiScopeMapper.java

@ -0,0 +1,30 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package org.springblade.system.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springblade.system.entity.ApiScope;
/**
* Mapper 接口
*
* @author BladeX
* @since 2019-06-23
*/
public interface ApiScopeMapper extends BaseMapper<ApiScope> {
}

5
blade-service/blade-system/src/main/java/org/springblade/system/mapper/ApiScopeMapper.xml

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="org.springblade.system.mapper.ApiScopeMapper">
</mapper>

19
blade-service/blade-system/src/main/java/org/springblade/system/mapper/MenuMapper.java

@ -68,7 +68,14 @@ public interface MenuMapper extends BaseMapper<Menu> {
*
* @return
*/
List<MenuVO> grantScopeTree();
List<MenuVO> grantDataScopeTree();
/**
* 接口权限授权树形结构
*
* @return
*/
List<MenuVO> grantApiScopeTree();
/**
* 数据权限授权树形结构
@ -76,7 +83,15 @@ public interface MenuMapper extends BaseMapper<Menu> {
* @param roleId
* @return
*/
List<MenuVO> grantScopeTreeByRole(List<Long> roleId);
List<MenuVO> grantDataScopeTreeByRole(List<Long> roleId);
/**
* 接口权限授权树形结构
*
* @param roleId
* @return
*/
List<MenuVO> grantApiScopeTreeByRole(List<Long> roleId);
/**
* 所有菜单

106
blade-service/blade-system/src/main/java/org/springblade/system/mapper/MenuMapper.xml

@ -128,7 +128,7 @@
order by sort
</select>
<select id="grantScopeTree" resultMap="treeNodeResultMap">
<select id="grantDataScopeTree" resultMap="treeNodeResultMap">
SELECT
*
FROM
@ -144,7 +144,7 @@
WHERE
category = 1
AND is_deleted = 0
AND id IN ( SELECT menu_id FROM blade_data_scope WHERE is_deleted = 0 AND menu_id IS NOT NULL )
AND id IN ( SELECT menu_id FROM blade_scope_data WHERE is_deleted = 0 AND menu_id IS NOT NULL )
ORDER BY
sort
) menu
@ -158,13 +158,13 @@
id AS 'value',
id AS 'key'
FROM
blade_data_scope
blade_scope_data
WHERE
is_deleted = 0
AND menu_id IS NOT NULL
</select>
<select id="grantScopeTreeByRole" resultMap="treeNodeResultMap">
<select id="grantApiScopeTree" resultMap="treeNodeResultMap">
SELECT
*
FROM
@ -180,7 +180,43 @@
WHERE
category = 1
AND is_deleted = 0
AND id IN ( SELECT menu_id FROM blade_data_scope WHERE is_deleted = 0 AND menu_id IS NOT NULL )
AND id IN ( SELECT menu_id FROM blade_scope_api WHERE is_deleted = 0 AND menu_id IS NOT NULL )
ORDER BY
sort
) menu
UNION ALL
SELECT
id,
menu_id AS parent_id,
scope_name AS title,
id AS 'value',
id AS 'key'
FROM
blade_scope_api
WHERE
is_deleted = 0
AND menu_id IS NOT NULL
</select>
<select id="grantDataScopeTreeByRole" resultMap="treeNodeResultMap">
SELECT
*
FROM
(
SELECT
id,
parent_id,
NAME AS title,
id AS 'value',
id AS 'key'
FROM
blade_menu
WHERE
category = 1
AND is_deleted = 0
AND id IN ( SELECT menu_id FROM blade_scope_data WHERE is_deleted = 0 AND menu_id IS NOT NULL )
AND id IN ( select menu_id from blade_role_menu where role_id in
<foreach collection="list" index="index" item="item" open="(" separator="," close=")">
#{item}
@ -205,7 +241,7 @@
id AS 'value',
id AS 'key'
FROM
blade_data_scope
blade_scope_data
WHERE
is_deleted = 0
AND menu_id IN ( select menu_id from blade_role_menu where role_id in
@ -222,6 +258,64 @@
AND menu_id IS NOT NULL
</select>
<select id="grantApiScopeTreeByRole" resultMap="treeNodeResultMap">
SELECT
*
FROM
(
SELECT
id,
parent_id,
NAME AS title,
id AS 'value',
id AS 'key'
FROM
blade_menu
WHERE
category = 1
AND is_deleted = 0
AND id IN ( SELECT menu_id FROM blade_scope_api WHERE is_deleted = 0 AND menu_id IS NOT NULL )
AND id IN ( select menu_id from blade_role_menu where role_id in
<foreach collection="list" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach> )
OR id IN (
select parent_id from blade_menu where is_deleted = 0
and id in ( select menu_id from blade_role_menu where role_id in
<foreach collection="list" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach> )
)
ORDER BY
sort
) menu
UNION ALL
SELECT
id,
menu_id AS parent_id,
scope_name AS title,
id AS 'value',
id AS 'key'
FROM
blade_scope_api
WHERE
is_deleted = 0
AND menu_id IN ( select menu_id from blade_role_menu where role_id in
<foreach collection="list" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach> )
OR menu_id IN (
select parent_id from blade_menu where is_deleted = 0
and id in ( select menu_id from blade_role_menu where role_id in
<foreach collection="list" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach> )
)
AND menu_id IS NOT NULL
</select>
<select id="authRoutes" resultType="org.springblade.system.dto.MenuDTO">
SELECT
GROUP_CONCAT(r.role_alias) as alias,

30
blade-service/blade-system/src/main/java/org/springblade/system/service/IApiScopeService.java

@ -0,0 +1,30 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package org.springblade.system.service;
import org.springblade.core.mp.base.BaseService;
import org.springblade.system.entity.ApiScope;
/**
* 服务类
*
* @author BladeX
* @since 2019-06-23
*/
public interface IApiScopeService extends BaseService<ApiScope> {
}

20
blade-service/blade-system/src/main/java/org/springblade/system/service/IMenuService.java

@ -78,7 +78,15 @@ public interface IMenuService extends IService<Menu> {
* @param user
* @return
*/
List<MenuVO> grantScopeTree(BladeUser user);
List<MenuVO> grantDataScopeTree(BladeUser user);
/**
* 接口权限授权树形结构
*
* @param user
* @return
*/
List<MenuVO> grantApiScopeTree(BladeUser user);
/**
* 默认选中节点
@ -94,7 +102,15 @@ public interface IMenuService extends IService<Menu> {
* @param roleIds
* @return
*/
List<String> scopeTreeKeys(String roleIds);
List<String> dataScopeTreeKeys(String roleIds);
/**
* 默认选中节点
*
* @param roleIds
* @return
*/
List<String> apiScopeTreeKeys(String roleIds);
/**
* 获取配置的角色权限

4
blade-service/blade-system/src/main/java/org/springblade/system/service/IRoleService.java

@ -53,9 +53,11 @@ public interface IRoleService extends IService<Role> {
*
* @param roleIds 角色id集合
* @param menuIds 菜单id集合
* @param dataScopeIds 数据权限id集合
* @param apiScopeIds 接口权限id集合
* @return 是否成功
*/
boolean grant(@NotEmpty List<Long> roleIds, @NotEmpty List<Long> menuIds, List<Long> scopeIds);
boolean grant(@NotEmpty List<Long> roleIds, @NotEmpty List<Long> menuIds, List<Long> dataScopeIds, List<Long> apiScopeIds);
/**
* 获取角色名

34
blade-service/blade-system/src/main/java/org/springblade/system/service/impl/ApiScopeServiceImpl.java

@ -0,0 +1,34 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package org.springblade.system.service.impl;
import org.springblade.core.mp.base.BaseServiceImpl;
import org.springblade.system.entity.ApiScope;
import org.springblade.system.mapper.ApiScopeMapper;
import org.springblade.system.service.IApiScopeService;
import org.springframework.stereotype.Service;
/**
* 服务实现类
*
* @author BladeX
* @since 2019-06-23
*/
@Service
public class ApiScopeServiceImpl extends BaseServiceImpl<ApiScopeMapper, ApiScope> implements IApiScopeService {
}

17
blade-service/blade-system/src/main/java/org/springblade/system/service/impl/MenuServiceImpl.java

@ -107,8 +107,13 @@ public class MenuServiceImpl extends ServiceImpl<MenuMapper, Menu> implements IM
}
@Override
public List<MenuVO> grantScopeTree(BladeUser user) {
return ForestNodeMerger.merge(user.getTenantId().equals(BladeConstant.ADMIN_TENANT_ID) ? baseMapper.grantScopeTree() : baseMapper.grantScopeTreeByRole(Func.toLongList(user.getRoleId())));
public List<MenuVO> grantDataScopeTree(BladeUser user) {
return ForestNodeMerger.merge(user.getTenantId().equals(BladeConstant.ADMIN_TENANT_ID) ? baseMapper.grantDataScopeTree() : baseMapper.grantDataScopeTreeByRole(Func.toLongList(user.getRoleId())));
}
@Override
public List<MenuVO> grantApiScopeTree(BladeUser user) {
return ForestNodeMerger.merge(user.getTenantId().equals(BladeConstant.ADMIN_TENANT_ID) ? baseMapper.grantApiScopeTree() : baseMapper.grantApiScopeTreeByRole(Func.toLongList(user.getRoleId())));
}
@Override
@ -118,7 +123,13 @@ public class MenuServiceImpl extends ServiceImpl<MenuMapper, Menu> implements IM
}
@Override
public List<String> scopeTreeKeys(String roleIds) {
public List<String> dataScopeTreeKeys(String roleIds) {
List<RoleScope> roleScopes = roleScopeService.list(Wrappers.<RoleScope>query().lambda().in(RoleScope::getRoleId, Func.toLongList(roleIds)));
return roleScopes.stream().map(roleScope -> Func.toStr(roleScope.getScopeId())).collect(Collectors.toList());
}
@Override
public List<String> apiScopeTreeKeys(String roleIds) {
List<RoleScope> roleScopes = roleScopeService.list(Wrappers.<RoleScope>query().lambda().in(RoleScope::getRoleId, Func.toLongList(roleIds)));
return roleScopes.stream().map(roleScope -> Func.toStr(roleScope.getScopeId())).collect(Collectors.toList());
}

27
blade-service/blade-system/src/main/java/org/springblade/system/service/impl/RoleServiceImpl.java

@ -54,6 +54,9 @@ public class RoleServiceImpl extends ServiceImpl<RoleMapper, Role> implements IR
private IRoleMenuService roleMenuService;
private IRoleScopeService roleScopeService;
private static Integer DATA_SCOPE_CATEGORY = 1;
private static Integer API_SCOPE_CATEGORY = 2;
@Override
public IPage<RoleVO> selectRolePage(IPage<RoleVO> page, RoleVO role) {
return page.setRecords(baseMapper.selectRolePage(page, role));
@ -71,7 +74,7 @@ public class RoleServiceImpl extends ServiceImpl<RoleMapper, Role> implements IR
@Override
@Transactional(rollbackFor = Exception.class)
public boolean grant(@NotEmpty List<Long> roleIds, @NotEmpty List<Long> menuIds, List<Long> scopeIds) {
public boolean grant(@NotEmpty List<Long> roleIds, @NotEmpty List<Long> menuIds, List<Long> dataScopeIds, List<Long> apiScopeIds) {
// 菜单权限模块
// 删除角色配置的菜单集合
roleMenuService.remove(Wrappers.<RoleMenu>update().lambda().in(RoleMenu::getRoleId, roleIds));
@ -87,13 +90,14 @@ public class RoleServiceImpl extends ServiceImpl<RoleMapper, Role> implements IR
roleMenuService.saveBatch(roleMenus);
// 数据权限模块
if (CollectionUtil.isNotEmpty(scopeIds)) {
if (CollectionUtil.isNotEmpty(dataScopeIds)) {
// 删除角色配置的数据权限集合
roleScopeService.remove(Wrappers.<RoleScope>update().lambda().in(RoleScope::getRoleId, roleIds));
// 组装配置
List<RoleScope> roleScopes = new ArrayList<>();
roleIds.forEach(roleId -> scopeIds.forEach(scopeId -> {
roleIds.forEach(roleId -> dataScopeIds.forEach(scopeId -> {
RoleScope roleScope = new RoleScope();
roleScope.setScopeCategory(DATA_SCOPE_CATEGORY);
roleScope.setRoleId(roleId);
roleScope.setScopeId(scopeId);
roleScopes.add(roleScope);
@ -102,6 +106,23 @@ public class RoleServiceImpl extends ServiceImpl<RoleMapper, Role> implements IR
roleScopeService.saveBatch(roleScopes);
}
// 接口权限模块
if (CollectionUtil.isNotEmpty(apiScopeIds)) {
// 删除角色配置的数据权限集合
roleScopeService.remove(Wrappers.<RoleScope>update().lambda().eq(RoleScope::getScopeCategory, API_SCOPE_CATEGORY).in(RoleScope::getRoleId, roleIds));
// 组装配置
List<RoleScope> roleScopes = new ArrayList<>();
roleIds.forEach(roleId -> apiScopeIds.forEach(scopeId -> {
RoleScope roleScope = new RoleScope();
roleScope.setScopeCategory(API_SCOPE_CATEGORY);
roleScope.setScopeId(scopeId);
roleScope.setRoleId(roleId);
roleScopes.add(roleScope);
}));
// 新增配置
roleScopeService.saveBatch(roleScopes);
}
return true;
}

46
blade-service/blade-system/src/main/java/org/springblade/system/wrapper/ApiScopeWrapper.java

@ -0,0 +1,46 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package org.springblade.system.wrapper;
import org.springblade.core.mp.support.BaseEntityWrapper;
import org.springblade.core.tool.utils.BeanUtil;
import org.springblade.system.cache.DictCache;
import org.springblade.system.entity.ApiScope;
import org.springblade.system.vo.ApiScopeVO;
/**
* 包装类,返回视图层所需的字段
*
* @author Chill
*/
public class ApiScopeWrapper extends BaseEntityWrapper<ApiScope, ApiScopeVO> {
public static ApiScopeWrapper build() {
return new ApiScopeWrapper();
}
@Override
public ApiScopeVO entityVO(ApiScope dataScope) {
ApiScopeVO apiScopeVO = BeanUtil.copy(dataScope, ApiScopeVO.class);
assert apiScopeVO != null;
String scopeTypeName = DictCache.getValue("api_scope_type", dataScope.getScopeType());
apiScopeVO.setScopeTypeName(scopeTypeName);
return apiScopeVO;
}
}

2
blade-service/blade-system/src/main/java/org/springblade/system/wrapper/DataScopeWrapper.java

@ -38,7 +38,7 @@ public class DataScopeWrapper extends BaseEntityWrapper<DataScope, DataScopeVO>
public DataScopeVO entityVO(DataScope dataScope) {
DataScopeVO dataScopeVO = BeanUtil.copy(dataScope, DataScopeVO.class);
assert dataScopeVO != null;
String scopeTypeName = DictCache.getValue("scope_type", dataScope.getScopeType());
String scopeTypeName = DictCache.getValue("data_scope_type", dataScope.getScopeType());
dataScopeVO.setScopeTypeName(scopeTypeName);
return dataScopeVO;
}

118
doc/sql/bladex-2.0.4~2.0.5-update.sql

@ -1,2 +1,116 @@
ALTER TABLE `blade_data_scope`
ADD COLUMN `scope_field` varchar(255) NULL COMMENT '数据权限字段' AFTER `scope_name`;
-- ----------------------------
-- 删除旧版本数据权限表并新增
-- ----------------------------
DROP TABLE IF EXISTS `blade_data_scope`;
-- ----------------------------
-- 重构数据权限表
-- ----------------------------
DROP TABLE IF EXISTS `blade_scope_data`;
CREATE TABLE `blade_scope_data` (
`id` bigint(64) NOT NULL COMMENT '主键',
`menu_id` bigint(64) NULL DEFAULT NULL COMMENT '菜单主键',
`resource_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资源编号',
`scope_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '数据权限名称',
`scope_field` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '数据权限字段',
`scope_class` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '数据权限类名',
`scope_column` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '数据权限字段',
`scope_type` int(2) NULL DEFAULT NULL COMMENT '数据权限类型',
`scope_value` varchar(2000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '数据权限值域',
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '数据权限备注',
`create_user` bigint(64) NULL DEFAULT NULL COMMENT '创建人',
`create_dept` bigint(64) NULL DEFAULT NULL COMMENT '创建部门',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_user` bigint(64) NULL DEFAULT NULL COMMENT '修改人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`status` int(2) NULL DEFAULT NULL COMMENT '状态',
`is_deleted` int(2) NULL DEFAULT NULL COMMENT '是否已删除',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '数据权限表';
-- ----------------------------
-- 重构接口权限表
-- ----------------------------
DROP TABLE IF EXISTS `blade_scope_api`;
CREATE TABLE `blade_scope_api` (
`id` bigint(64) NOT NULL COMMENT '主键',
`menu_id` bigint(64) NULL DEFAULT NULL COMMENT '菜单主键',
`resource_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资源编号',
`scope_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '接口权限名',
`scope_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '接口权限地址',
`scope_type` int(2) NULL DEFAULT NULL COMMENT '接口权限类型',
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '接口权限备注',
`create_user` bigint(64) NULL DEFAULT NULL COMMENT '创建人',
`create_dept` bigint(64) NULL DEFAULT NULL COMMENT '创建部门',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_user` bigint(64) NULL DEFAULT NULL COMMENT '修改人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`status` int(2) NULL DEFAULT NULL COMMENT '状态',
`is_deleted` int(2) NULL DEFAULT NULL COMMENT '是否已删除',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '接口权限表';
-- ----------------------------
-- 角色数据权限增加字段
-- ----------------------------
ALTER TABLE `blade_role_scope`
MODIFY COLUMN `scope_id` bigint(64) NULL DEFAULT NULL COMMENT '权限id' AFTER `id`,
ADD COLUMN `scope_category` int(2) NULL COMMENT '权限类型(1:数据权限、2:接口权限)' AFTER `id`;
-- ----------------------------
-- 权限类型字典
-- ----------------------------
UPDATE `blade_dict` SET `parent_id` = 0, `code` = 'data_scope_type', `dict_key` = -1, `dict_value` = '数据权限', `sort` = 8, `remark` = NULL, `is_deleted` = 0 WHERE `id` = 1123598814738675231;
UPDATE `blade_dict` SET `parent_id` = 1123598814738675231, `code` = 'data_scope_type', `dict_key` = 1, `dict_value` = '全部可见', `sort` = 1, `remark` = NULL, `is_deleted` = 0 WHERE `id` = 1123598814738675232;
UPDATE `blade_dict` SET `parent_id` = 1123598814738675231, `code` = 'data_scope_type', `dict_key` = 2, `dict_value` = '本人可见', `sort` = 2, `remark` = NULL, `is_deleted` = 0 WHERE `id` = 1123598814738675233;
UPDATE `blade_dict` SET `parent_id` = 1123598814738675231, `code` = 'data_scope_type', `dict_key` = 3, `dict_value` = '所在机构可见', `sort` = 3, `remark` = NULL, `is_deleted` = 0 WHERE `id` = 1123598814738675234;
UPDATE `blade_dict` SET `parent_id` = 1123598814738675231, `code` = 'data_scope_type', `dict_key` = 4, `dict_value` = '所在机构及子级可见', `sort` = 4, `remark` = NULL, `is_deleted` = 0 WHERE `id` = 1123598814738675235;
UPDATE `blade_dict` SET `parent_id` = 1123598814738675231, `code` = 'data_scope_type', `dict_key` = 5, `dict_value` = '自定义', `sort` = 5, `remark` = NULL, `is_deleted` = 0 WHERE `id` = 1123598814738675236;
INSERT INTO `blade_dict`(`id`, `parent_id`, `code`, `dict_key`, `dict_value`, `sort`, `remark`, `is_deleted`) VALUES (1123598814738675237, 0, 'api_scope_type', -1, '接口权限', 10, NULL, 0);
INSERT INTO `blade_dict`(`id`, `parent_id`, `code`, `dict_key`, `dict_value`, `sort`, `remark`, `is_deleted`) VALUES (1123598814738675238, 1123598814738675237, 'api_scope_type', 1, '系统接口', 1, NULL, 0);
INSERT INTO `blade_dict`(`id`, `parent_id`, `code`, `dict_key`, `dict_value`, `sort`, `remark`, `is_deleted`) VALUES (1123598814738675239, 1123598814738675237, 'api_scope_type', 2, '业务接口', 2, NULL, 0);
INSERT INTO `blade_dict`(`id`, `parent_id`, `code`, `dict_key`, `dict_value`, `sort`, `remark`, `is_deleted`) VALUES (1123598814738675240, 0, 'scope_category', -1, '权限类型', 10, NULL, 0);
INSERT INTO `blade_dict`(`id`, `parent_id`, `code`, `dict_key`, `dict_value`, `sort`, `remark`, `is_deleted`) VALUES (1123598814738675241, 1123598814738675240, 'scope_category', 1, '数据权限', 1, NULL, 0);
INSERT INTO `blade_dict`(`id`, `parent_id`, `code`, `dict_key`, `dict_value`, `sort`, `remark`, `is_deleted`) VALUES (1123598814738675242, 1123598814738675240, 'scope_category', 2, '接口权限', 2, NULL, 0);
-- ----------------------------
-- 系统管理增加顶部菜单
-- ----------------------------
UPDATE `blade_menu` SET `parent_id` = 1123598815738675203, `code` = 'topmenu', `name` = '顶部菜单', `alias` = 'menu', `path` = '/system/topmenu', `source` = 'iconfont iconicon_boss', `sort` = 5, `category` = 1, `action` = 0, `is_open` = 1, `remark` = NULL, `is_deleted` = 0 WHERE `id` = 1123598815738675208;
INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`) VALUES (1123598815738675313, 1123598815738675208, 'topmenu_add', '新增', 'add', '/system/topmenu/add', 'plus', 1, 2, 1, 1, NULL, 0);
INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`) VALUES (1123598815738675314, 1123598815738675208, 'topmenu_edit', '修改', 'edit', '/system/topmenu/edit', 'form', 2, 2, 2, 1, NULL, 0);
INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`) VALUES (1123598815738675315, 1123598815738675208, 'topmenu_delete', '删除', 'delete', '/api/blade-system/topmenu/remove', 'delete', 3, 2, 3, 1, NULL, 0);
INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`) VALUES (1123598815738675316, 1123598815738675208, 'topmenu_view', '查看', 'view', '/system/topmenu/view', 'file-text', 4, 2, 2, 1, NULL, 0);
-- ----------------------------
-- 增加权限管理模块
-- ----------------------------
INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`) VALUES (1123598815738675307, 0, 'authority', '权限管理', 'menu', '/authority', 'iconfont icon-bofangqi-suoping', 98, 1, 0, 1, '', 0);
-- ----------------------------
-- 角色管理迁移至权限管理
-- ----------------------------
INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`) VALUES (1123598815738675308, 1123598815738675307, 'role', '角色管理', 'menu', '/system/role', 'iconfont iconicon_boss', 1, 1, 0, 1, NULL, 0);
UPDATE `blade_menu` SET `parent_id` = 1123598815738675308, `code` = 'role_add', `name` = '新增', `alias` = 'add', `path` = '/system/role/add', `source` = 'plus', `sort` = 1, `category` = 2, `action` = 1, `is_open` = 1, `remark` = NULL, `is_deleted` = 0 WHERE `id` = 1123598815738675241;
UPDATE `blade_menu` SET `parent_id` = 1123598815738675308, `code` = 'role_edit', `name` = '修改', `alias` = 'edit', `path` = '/system/role/edit', `source` = 'form', `sort` = 2, `category` = 2, `action` = 2, `is_open` = 1, `remark` = NULL, `is_deleted` = 0 WHERE `id` = 1123598815738675242;
UPDATE `blade_menu` SET `parent_id` = 1123598815738675308, `code` = 'role_delete', `name` = '删除', `alias` = 'delete', `path` = '/api/blade-system/role/remove', `source` = 'delete', `sort` = 3, `category` = 2, `action` = 3, `is_open` = 1, `remark` = NULL, `is_deleted` = 0 WHERE `id` = 1123598815738675243;
UPDATE `blade_menu` SET `parent_id` = 1123598815738675308, `code` = 'role_view', `name` = '查看', `alias` = 'view', `path` = '/system/role/view', `source` = 'file-text', `sort` = 4, `category` = 2, `action` = 2, `is_open` = 1, `remark` = NULL, `is_deleted` = 0 WHERE `id` = 1123598815738675244;
-- ----------------------------
-- 增加数据权限及接口权限独立菜单
-- ----------------------------
INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`) VALUES (1123598815738675309, 1123598815738675307, 'data_scope', '数据权限', 'menu', '/system/datascope', 'iconfont icon-shujuzhanshi2', 2, 1, 0, 1, '', 0);
INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`) VALUES (1123598815738675310, 1123598815738675309, 'data_scope_setting', '权限配置', 'setting', NULL, 'setting', 1, 2, 2, 1, NULL, 0);
INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`) VALUES (1123598815738675311, 1123598815738675307, 'api_scope', '接口权限', 'menu', '/system/apiscope', 'iconfont icon-iconset0216', 3, 1, 0, 1, '', 0);
INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`) VALUES (1123598815738675312, 1123598815738675311, 'api_scope_setting', '权限配置', 'setting', NULL, 'setting', 1, 2, 2, 1, NULL, 0);
-- ----------------------------
-- 更新我的事务菜单别名
-- ----------------------------
UPDATE `blade_menu` SET `parent_id` = 0, `code` = 'work', `name` = '我的事务', `alias` = 'menu', `path` = '/work', `source` = 'iconfont iconicon_notice', `sort` = 2, `category` = 1, `action` = 0, `is_open` = 1, `remark` = '', `is_deleted` = 0 WHERE `id` = 1123598815738675280;

Loading…
Cancel
Save