Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
long-tern-care-service
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hubin
long-tern-care-service
Commits
addacedb
Commit
addacedb
authored
Feb 15, 2023
by
maqing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
垂直越权
parent
956022c8
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
188 additions
and
20 deletions
+188
-20
AuthConstants.java
...rc/main/java/com/hungraim/ltc/constant/AuthConstants.java
+4
-0
SystemInterface.java
.../com/hungraim/ltc/pojo/entity/system/SystemInterface.java
+17
-0
AuthorizationManager.java
...m/hungraim/ltc/gateway/security/AuthorizationManager.java
+11
-0
InitResourceInterfaceCacheRunner.java
...graim/ltc/component/InitResourceInterfaceCacheRunner.java
+29
-0
SystemInterfaceMapper.java
...va/com/hungraim/ltc/system/dao/SystemInterfaceMapper.java
+29
-0
SystemResourceMapper.java
...ava/com/hungraim/ltc/system/dao/SystemResourceMapper.java
+2
-2
ISystemInterfaceService.java
.../hungraim/ltc/system/service/ISystemInterfaceService.java
+20
-0
SystemInterfaceServiceImpl.java
...m/ltc/system/service/impl/SystemInterfaceServiceImpl.java
+52
-0
SystemResourceServiceImpl.java
...im/ltc/system/service/impl/SystemResourceServiceImpl.java
+24
-18
No files found.
common/common-core/src/main/java/com/hungraim/ltc/constant/AuthConstants.java
View file @
addacedb
...
@@ -29,6 +29,10 @@ public interface AuthConstants {
...
@@ -29,6 +29,10 @@ public interface AuthConstants {
* Redis缓存权限规则key
* Redis缓存权限规则key
*/
*/
String
PERMISSION_ROLES_KEY
=
"ltc:auth:permission:roles"
;
String
PERMISSION_ROLES_KEY
=
"ltc:auth:permission:roles"
;
/**
* Redis缓存权限规则key
*/
String
PERMISSION_ROLES_interface_KEY
=
"ltc:auth:permission:interface"
;
/**
/**
...
...
common/common-core/src/main/java/com/hungraim/ltc/pojo/entity/system/SystemInterface.java
0 → 100644
View file @
addacedb
package
com
.
hungraim
.
ltc
.
pojo
.
entity
.
system
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
lombok.Data
;
import
java.util.Date
;
@Data
@TableName
(
"LTC_INTERFACE"
)
public
class
SystemInterface
{
@TableId
private
Long
interfaceId
;
private
String
interfaceUrl
;
private
String
interfaceName
;
private
Date
createdTime
;
}
gateway-service/src/main/java/com/hungraim/ltc/gateway/security/AuthorizationManager.java
View file @
addacedb
...
@@ -3,6 +3,7 @@ package com.hungraim.ltc.gateway.security;
...
@@ -3,6 +3,7 @@ package com.hungraim.ltc.gateway.security;
import
cn.hutool.core.convert.Convert
;
import
cn.hutool.core.convert.Convert
;
import
cn.hutool.core.util.StrUtil
;
import
cn.hutool.core.util.StrUtil
;
import
com.alibaba.fastjson.JSONObject
;
import
com.hungraim.ltc.constant.AuthConstants
;
import
com.hungraim.ltc.constant.AuthConstants
;
import
lombok.extern.slf4j.Slf4j
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
...
@@ -13,6 +14,7 @@ import org.springframework.security.authorization.AuthorizationDecision;
...
@@ -13,6 +14,7 @@ import org.springframework.security.authorization.AuthorizationDecision;
import
org.springframework.security.authorization.ReactiveAuthorizationManager
;
import
org.springframework.security.authorization.ReactiveAuthorizationManager
;
import
org.springframework.security.core.Authentication
;
import
org.springframework.security.core.Authentication
;
import
org.springframework.security.core.GrantedAuthority
;
import
org.springframework.security.core.GrantedAuthority
;
import
org.springframework.security.jwt.JwtHelper
;
import
org.springframework.security.web.server.authorization.AuthorizationContext
;
import
org.springframework.security.web.server.authorization.AuthorizationContext
;
import
org.springframework.stereotype.Component
;
import
org.springframework.stereotype.Component
;
import
org.springframework.util.AntPathMatcher
;
import
org.springframework.util.AntPathMatcher
;
...
@@ -45,6 +47,7 @@ public class AuthorizationManager implements ReactiveAuthorizationManager<Author
...
@@ -45,6 +47,7 @@ public class AuthorizationManager implements ReactiveAuthorizationManager<Author
public
Mono
<
AuthorizationDecision
>
check
(
Mono
<
Authentication
>
mono
,
AuthorizationContext
authorizationContext
)
{
public
Mono
<
AuthorizationDecision
>
check
(
Mono
<
Authentication
>
mono
,
AuthorizationContext
authorizationContext
)
{
ServerHttpRequest
request
=
authorizationContext
.
getExchange
().
getRequest
();
ServerHttpRequest
request
=
authorizationContext
.
getExchange
().
getRequest
();
String
path
=
request
.
getMethodValue
()
+
"_"
+
request
.
getURI
().
getPath
();
String
path
=
request
.
getMethodValue
()
+
"_"
+
request
.
getURI
().
getPath
();
log
.
info
(
"请求,path={}"
,
path
);
log
.
info
(
"请求,path={}"
,
path
);
...
@@ -62,6 +65,14 @@ public class AuthorizationManager implements ReactiveAuthorizationManager<Author
...
@@ -62,6 +65,14 @@ public class AuthorizationManager implements ReactiveAuthorizationManager<Author
log
.
info
(
"请求token为空拒绝访问,path={}"
,
path
);
log
.
info
(
"请求token为空拒绝访问,path={}"
,
path
);
return
Mono
.
just
(
new
AuthorizationDecision
(
false
));
return
Mono
.
just
(
new
AuthorizationDecision
(
false
));
}
}
String
subToken
=
token
.
substring
(
AuthConstants
.
JWT_PREFIX
.
length
());
String
claims
=
JwtHelper
.
decode
(
subToken
).
getClaims
();
String
jti
=
(
String
)
JSONObject
.
parseObject
(
claims
).
get
(
"jti"
);
String
acc_token
=
(
String
)
redisTemplate
.
opsForValue
().
get
(
jti
);
if
(!
StrUtil
.
isBlank
(
acc_token
))
{
log
.
info
(
"请求token为空拒绝访问,path={}"
,
path
);
return
Mono
.
just
(
new
AuthorizationDecision
(
false
));
}
// 从缓存取资源权限角色关系列表
// 从缓存取资源权限角色关系列表
...
...
system/system-admin-service/src/main/java/com/hungraim/ltc/component/InitResourceInterfaceCacheRunner.java
0 → 100644
View file @
addacedb
package
com
.
hungraim
.
ltc
.
component
;
import
com.hungraim.ltc.system.service.impl.SystemInterfaceServiceImpl
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.boot.CommandLineRunner
;
import
org.springframework.stereotype.Component
;
/**
*
* 服务运行时将资源和接口关系缓存到数据库中
* @author mq
*/
@Component
@Slf4j
public
class
InitResourceInterfaceCacheRunner
implements
CommandLineRunner
{
private
final
SystemInterfaceServiceImpl
systemInterfaceService
;
@Autowired
public
InitResourceInterfaceCacheRunner
(
SystemInterfaceServiceImpl
systemInterfaceService
)
{
this
.
systemInterfaceService
=
systemInterfaceService
;
}
@Override
public
void
run
(
String
...
args
){
systemInterfaceService
.
refreshResourceInterfaceCache
();
}
}
system/system-admin-service/src/main/java/com/hungraim/ltc/system/dao/SystemInterfaceMapper.java
0 → 100644
View file @
addacedb
package
com
.
hungraim
.
ltc
.
system
.
dao
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.hungraim.ltc.pojo.entity.system.SystemInterface
;
import
org.apache.ibatis.annotations.*
;
import
java.util.List
;
/**
* 查询所有资源对应的接口
* @return list
*/
@Mapper
public
interface
SystemInterfaceMapper
extends
BaseMapper
<
SystemInterface
>
{
@Select
(
"SELECT a.INTERFACE_URL FROM "
+
"LTC_INTERFACE a where a.INTERFACE_ID= #{interfaceId}"
)
List
<
String
>
listInterface
(
long
interfaceId
);
/**
* 根据资源id查找接口id
*
* @return 角色id
*/
@Select
(
"SELECT INTERFACE_ID FROM LTC_RESOURCE_INTERFACE"
)
List
<
Long
>
listRI
();
}
system/system-admin-service/src/main/java/com/hungraim/ltc/system/dao/SystemResourceMapper.java
View file @
addacedb
...
@@ -17,9 +17,9 @@ public interface SystemResourceMapper extends BaseMapper<SystemResource> {
...
@@ -17,9 +17,9 @@ public interface SystemResourceMapper extends BaseMapper<SystemResource> {
* 查询所有资源对应的角色
* 查询所有资源对应的角色
* @return list
* @return list
*/
*/
@Select
(
"SELECT RESOURCE_ID,RESOURCE_NAME,RESOURCE_URL,METHOD FROM LTC_RESOURCE"
)
@Select
(
"SELECT RESOURCE_ID
as resourceId,RESOURCE_ID
,RESOURCE_NAME,RESOURCE_URL,METHOD FROM LTC_RESOURCE"
)
@Results
({
@Results
({
@Result
(
property
=
"roleIds"
,
column
=
"
RESOURCE_ID
"
,
many
=
@Many
(
select
=
"com.hungraim.ltc.system.dao.SystemRoleResourceMapper.listRoleIds"
))
@Result
(
property
=
"roleIds"
,
column
=
"
resourceId
"
,
many
=
@Many
(
select
=
"com.hungraim.ltc.system.dao.SystemRoleResourceMapper.listRoleIds"
))
})
})
List
<
SystemResource
>
listResourceRoles
();
List
<
SystemResource
>
listResourceRoles
();
...
...
system/system-admin-service/src/main/java/com/hungraim/ltc/system/service/ISystemInterfaceService.java
0 → 100644
View file @
addacedb
package
com
.
hungraim
.
ltc
.
system
.
service
;
import
com.hungraim.ltc.pojo.entity.system.SystemInterface
;
import
java.util.List
;
import
java.util.Map
;
public
interface
ISystemInterfaceService
{
/**
* 将mysql中的接口资源关系缓存到redis中
*/
void
refreshResourceInterfaceCache
();
/**
* 查询所有资源对应的接口
* @return list
*/
List
<
String
>
listResourceInterface
(
Long
resourceId
);
}
system/system-admin-service/src/main/java/com/hungraim/ltc/system/service/impl/SystemInterfaceServiceImpl.java
0 → 100644
View file @
addacedb
package
com
.
hungraim
.
ltc
.
system
.
service
.
impl
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.hungraim.ltc.constant.AuthConstants
;
import
com.hungraim.ltc.pojo.entity.system.SystemInterface
;
import
com.hungraim.ltc.system.dao.SystemInterfaceMapper
;
import
com.hungraim.ltc.system.service.ISystemInterfaceService
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.data.redis.core.RedisTemplate
;
import
org.springframework.stereotype.Service
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.Map
;
@Service
@Slf4j
public
class
SystemInterfaceServiceImpl
extends
ServiceImpl
<
SystemInterfaceMapper
,
SystemInterface
>
implements
ISystemInterfaceService
{
private
final
SystemInterfaceMapper
systemInterfaceMapper
;
private
final
RedisTemplate
redisTemplate
;
@Autowired
public
SystemInterfaceServiceImpl
(
SystemInterfaceMapper
systemInterfaceMapper
,
RedisTemplate
redisTemplate
)
{
this
.
systemInterfaceMapper
=
systemInterfaceMapper
;
this
.
redisTemplate
=
redisTemplate
;
}
@Override
public
void
refreshResourceInterfaceCache
()
{
try
{
redisTemplate
.
delete
(
AuthConstants
.
PERMISSION_ROLES_interface_KEY
);
Map
<
String
,
List
<
String
>
>
map
=
new
HashMap
<>();
List
<
Long
>
interfaceIds
=
systemInterfaceMapper
.
listRI
();
for
(
Long
interfaceId:
interfaceIds
){
List
<
String
>
systemInterfaces
=
this
.
listResourceInterface
(
interfaceId
);
map
.
put
(
interfaceId
.
toString
(),
systemInterfaces
);
}
redisTemplate
.
opsForHash
().
putAll
(
AuthConstants
.
PERMISSION_ROLES_interface_KEY
,
map
);
}
catch
(
RuntimeException
e
){
e
.
printStackTrace
();
}
}
@Override
public
List
<
String
>
listResourceInterface
(
Long
interfaceId
)
{
return
systemInterfaceMapper
.
listInterface
(
interfaceId
);
}
}
system/system-admin-service/src/main/java/com/hungraim/ltc/system/service/impl/SystemResourceServiceImpl.java
View file @
addacedb
...
@@ -22,10 +22,12 @@ import java.util.stream.Collectors;
...
@@ -22,10 +22,12 @@ import java.util.stream.Collectors;
public
class
SystemResourceServiceImpl
extends
ServiceImpl
<
SystemResourceMapper
,
SystemResource
>
implements
ISystemResourceService
{
public
class
SystemResourceServiceImpl
extends
ServiceImpl
<
SystemResourceMapper
,
SystemResource
>
implements
ISystemResourceService
{
private
final
SystemResourceMapper
systemResourceMapper
;
private
final
RedisTemplate
redisTemplate
;
private
final
RedisTemplate
redisTemplate
;
@Autowired
@Autowired
public
SystemResourceServiceImpl
(
RedisTemplate
redisTemplate
)
{
public
SystemResourceServiceImpl
(
SystemResourceMapper
systemResourceMapper
,
RedisTemplate
redisTemplate
)
{
this
.
systemResourceMapper
=
systemResourceMapper
;
this
.
redisTemplate
=
redisTemplate
;
this
.
redisTemplate
=
redisTemplate
;
}
}
...
@@ -36,27 +38,31 @@ public class SystemResourceServiceImpl extends ServiceImpl<SystemResourceMapper,
...
@@ -36,27 +38,31 @@ public class SystemResourceServiceImpl extends ServiceImpl<SystemResourceMapper,
@Override
@Override
@SuppressWarnings
(
"unchecked"
)
@SuppressWarnings
(
"unchecked"
)
public
void
refreshPermissionRolesCache
(){
public
void
refreshPermissionRolesCache
(){
log
.
info
(
"refreshPermissionRolesCache run..."
);
try
{
redisTemplate
.
delete
(
AuthConstants
.
PERMISSION_ROLES_KEY
);
log
.
info
(
"refreshPermissionRolesCache run..."
);
List
<
SystemResource
>
permissions
=
this
.
listResourceRoles
();
redisTemplate
.
delete
(
AuthConstants
.
PERMISSION_ROLES_KEY
);
Map
<
String
,
List
<
String
>>
permissionRoles
=
new
TreeMap
<>();
List
<
SystemResource
>
permissions
=
this
.
listResourceRoles
();
Optional
.
ofNullable
(
permissions
).
orElse
(
new
ArrayList
<>()).
forEach
(
permission
->
{
Map
<
String
,
List
<
String
>>
permissionRoles
=
new
TreeMap
<>();
// 转换 roleId -> ROLE_{roleId}
Optional
.
ofNullable
(
permissions
).
orElse
(
new
ArrayList
<>()).
forEach
(
permission
->
{
List
<
String
>
roles
=
Optional
.
ofNullable
(
permission
.
getRoleIds
())
// 转换 roleId -> ROLE_{roleId}
.
orElse
(
new
ArrayList
<>())
List
<
String
>
roles
=
Optional
.
ofNullable
(
permission
.
getRoleIds
())
.
stream
()
.
orElse
(
new
ArrayList
<>())
.
map
(
roleId
->
AuthConstants
.
AUTHORITY_PREFIX
+
roleId
)
.
stream
()
.
collect
(
Collectors
.
toList
());
.
map
(
roleId
->
AuthConstants
.
AUTHORITY_PREFIX
+
roleId
)
if
(
CollectionUtil
.
isNotEmpty
(
roles
))
{
.
collect
(
Collectors
.
toList
());
permissionRoles
.
put
(
permission
.
getMethod
()
+
"_"
+
permission
.
getResourceUrl
(),
roles
);
if
(
CollectionUtil
.
isNotEmpty
(
roles
))
{
}
permissionRoles
.
put
(
permission
.
getResourceId
().
toString
(),
roles
);
});
}
redisTemplate
.
opsForHash
().
putAll
(
AuthConstants
.
PERMISSION_ROLES_KEY
,
permissionRoles
);
});
redisTemplate
.
opsForHash
().
putAll
(
AuthConstants
.
PERMISSION_ROLES_KEY
,
permissionRoles
);
}
catch
(
RuntimeException
e
)
{
e
.
printStackTrace
();
}
}
}
@Override
@Override
public
List
<
SystemResource
>
listResourceRoles
()
{
public
List
<
SystemResource
>
listResourceRoles
()
{
return
this
.
bas
eMapper
.
listResourceRoles
();
return
systemResourc
eMapper
.
listResourceRoles
();
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment