Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
smart_gov_platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
smart_gov_platform
Commits
b73d032e
Commit
b73d032e
authored
Jul 21, 2022
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改升级政务服务版本
parent
8a3d24f1
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
113 additions
and
113 deletions
+113
-113
base-manager/pom.xml
base-manager/pom.xml
+1
-1
base-manager/src/main/java/com/mortals/xhx/base/framework/interceptor/AuthTokenServiceImpl.java
.../xhx/base/framework/interceptor/AuthTokenServiceImpl.java
+2
-3
base-manager/src/main/java/com/mortals/xhx/base/framework/security/SecurityUtils.java
...om/mortals/xhx/base/framework/security/SecurityUtils.java
+54
-54
common-lib/src/main/java/com/mortals/xhx/feign/user/IUserFeign.java
.../src/main/java/com/mortals/xhx/feign/user/IUserFeign.java
+1
-0
portal-manager/pom.xml
portal-manager/pom.xml
+1
-1
portal-manager/src/main/java/com/mortals/xhx/base/framework/security/SecurityUtils.java
...om/mortals/xhx/base/framework/security/SecurityUtils.java
+54
-54
No files found.
base-manager/pom.xml
View file @
b73d032e
...
@@ -32,7 +32,7 @@
...
@@ -32,7 +32,7 @@
<profiles.rabbitmq.port>
5672
</profiles.rabbitmq.port>
<profiles.rabbitmq.port>
5672
</profiles.rabbitmq.port>
<profiles.nacos.server-addr>
192.168.0.252:8848
</profiles.nacos.server-addr>
<profiles.nacos.server-addr>
192.168.0.252:8848
</profiles.nacos.server-addr>
<profiles.nacos.group>
DEFAULT_GROUP
</profiles.nacos.group>
<profiles.nacos.group>
DEFAULT_GROUP
</profiles.nacos.group>
<profiles.nacos.namespace>
smart-gov
-dev
</profiles.nacos.namespace>
<profiles.nacos.namespace>
smart-gov
</profiles.nacos.namespace>
<profiles.log.path>
/mortals/app/logs
</profiles.log.path>
<profiles.log.path>
/mortals/app/logs
</profiles.log.path>
</properties>
</properties>
</profile>
</profile>
...
...
base-manager/src/main/java/com/mortals/xhx/base/framework/interceptor/AuthTokenServiceImpl.java
View file @
b73d032e
package
com.mortals.xhx.base.framework.interceptor
;
package
com.mortals.xhx.base.framework.interceptor
;
import
com.alibaba.fastjson.JSON
;
import
com.alibaba.fastjson.JSONObject
;
import
com.alibaba.fastjson.JSONObject
;
import
com.mortals.framework.ap.SysConstains
;
import
com.mortals.framework.ap.SysConstains
;
import
com.mortals.framework.common.Rest
;
import
com.mortals.framework.service.IAuthTokenService
;
import
com.mortals.framework.service.IAuthTokenService
;
import
com.mortals.framework.service.ICacheService
;
import
com.mortals.framework.service.ICacheService
;
import
com.mortals.framework.service.IUser
;
import
com.mortals.framework.service.IUser
;
...
@@ -17,6 +15,7 @@ import io.jsonwebtoken.SignatureAlgorithm;
...
@@ -17,6 +15,7 @@ import io.jsonwebtoken.SignatureAlgorithm;
import
lombok.extern.slf4j.Slf4j
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.context.annotation.Primary
;
import
org.springframework.core.annotation.Order
;
import
org.springframework.core.annotation.Order
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
...
@@ -30,7 +29,7 @@ import java.util.Map;
...
@@ -30,7 +29,7 @@ import java.util.Map;
*
*
* @author zxfei
* @author zxfei
*/
*/
@Primary
@Service
@Service
@Order
(
1
)
@Order
(
1
)
@Slf4j
@Slf4j
...
...
base-manager/src/main/java/com/mortals/xhx/base/framework/security/SecurityUtils.java
View file @
b73d032e
package
com.mortals.xhx.base.framework.security
;
//
package com.mortals.xhx.base.framework.security;
//
import
org.springframework.security.core.Authentication
;
//
import org.springframework.security.core.Authentication;
import
org.springframework.security.core.context.SecurityContextHolder
;
//
import org.springframework.security.core.context.SecurityContextHolder;
import
org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder
;
//
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
//
/**
/
//
**
* 安全服务工具类
//
* 安全服务工具类
*
//
*
* @author zxfei
//
* @author zxfei
*/
//
*/
public
class
SecurityUtils
{
//
public class SecurityUtils {
//
//
/**
//
/**
* 获取Authentication
//
* 获取Authentication
*/
//
*/
public
static
Authentication
getAuthentication
()
{
//
public static Authentication getAuthentication() {
return
SecurityContextHolder
.
getContext
().
getAuthentication
();
//
return SecurityContextHolder.getContext().getAuthentication();
}
//
}
//
/**
//
/**
* 生成BCryptPasswordEncoder密码
//
* 生成BCryptPasswordEncoder密码
*
//
*
* @param password 密码
//
* @param password 密码
* @return 加密字符串
//
* @return 加密字符串
*/
//
*/
public
static
String
encryptPassword
(
String
password
)
{
//
public static String encryptPassword(String password) {
BCryptPasswordEncoder
passwordEncoder
=
new
BCryptPasswordEncoder
();
//
BCryptPasswordEncoder passwordEncoder = new BCryptPasswordEncoder();
return
passwordEncoder
.
encode
(
password
);
//
return passwordEncoder.encode(password);
}
//
}
//
/**
//
/**
* 判断密码是否相同
//
* 判断密码是否相同
*
//
*
* @param rawPassword 真实密码
//
* @param rawPassword 真实密码
* @param encodedPassword 加密后字符
//
* @param encodedPassword 加密后字符
* @return 结果
//
* @return 结果
*/
//
*/
public
static
boolean
matchesPassword
(
String
rawPassword
,
String
encodedPassword
)
{
//
public static boolean matchesPassword(String rawPassword, String encodedPassword) {
BCryptPasswordEncoder
passwordEncoder
=
new
BCryptPasswordEncoder
();
//
BCryptPasswordEncoder passwordEncoder = new BCryptPasswordEncoder();
return
passwordEncoder
.
matches
(
rawPassword
,
encodedPassword
);
//
return passwordEncoder.matches(rawPassword, encodedPassword);
}
//
}
//
/**
//
/**
* 是否为管理员
//
* 是否为管理员
*
//
*
* @param userId 用户ID
//
* @param userId 用户ID
* @return 结果
//
* @return 结果
*/
//
*/
public
static
boolean
isAdmin
(
Long
userId
)
{
//
public static boolean isAdmin(Long userId) {
return
userId
!=
null
&&
1L
==
userId
;
//
return userId != null && 1L == userId;
}
//
}
}
//
}
common-lib/src/main/java/com/mortals/xhx/feign/user/IUserFeign.java
View file @
b73d032e
...
@@ -83,6 +83,7 @@ public interface IUserFeign extends IFeign {
...
@@ -83,6 +83,7 @@ public interface IUserFeign extends IFeign {
class
UserFeignFallbackFactory
implements
FallbackFactory
<
IUserFeign
>
{
class
UserFeignFallbackFactory
implements
FallbackFactory
<
IUserFeign
>
{
@Override
@Override
public
IUserFeign
create
(
Throwable
t
)
{
public
IUserFeign
create
(
Throwable
t
)
{
log
.
error
(
"feign error"
,
t
);
return
new
IUserFeign
()
{
return
new
IUserFeign
()
{
@Override
@Override
public
Rest
<
RespData
<
List
<
UserPdu
>>>
list
(
UserPdu
userPdu
)
{
public
Rest
<
RespData
<
List
<
UserPdu
>>>
list
(
UserPdu
userPdu
)
{
...
...
portal-manager/pom.xml
View file @
b73d032e
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
<profiles.rabbitmq.port>
5672
</profiles.rabbitmq.port>
<profiles.rabbitmq.port>
5672
</profiles.rabbitmq.port>
<profiles.nacos.server-addr>
192.168.0.252:8848
</profiles.nacos.server-addr>
<profiles.nacos.server-addr>
192.168.0.252:8848
</profiles.nacos.server-addr>
<profiles.nacos.group>
DEFAULT_GROUP
</profiles.nacos.group>
<profiles.nacos.group>
DEFAULT_GROUP
</profiles.nacos.group>
<profiles.nacos.namespace>
smart-gov
-dev
</profiles.nacos.namespace>
<profiles.nacos.namespace>
smart-gov
</profiles.nacos.namespace>
<profiles.log.path>
/mortals/app/logs
</profiles.log.path>
<profiles.log.path>
/mortals/app/logs
</profiles.log.path>
</properties>
</properties>
</profile>
</profile>
...
...
portal-manager/src/main/java/com/mortals/xhx/base/framework/security/SecurityUtils.java
View file @
b73d032e
package
com.mortals.xhx.base.framework.security
;
//
package com.mortals.xhx.base.framework.security;
//
import
org.springframework.security.core.Authentication
;
//
import org.springframework.security.core.Authentication;
import
org.springframework.security.core.context.SecurityContextHolder
;
//
import org.springframework.security.core.context.SecurityContextHolder;
import
org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder
;
//
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
//
/**
/
//
**
* 安全服务工具类
//
* 安全服务工具类
*
//
*
* @author zxfei
//
* @author zxfei
*/
//
*/
public
class
SecurityUtils
{
//
public class SecurityUtils {
//
//
/**
//
/**
* 获取Authentication
//
* 获取Authentication
*/
//
*/
public
static
Authentication
getAuthentication
()
{
//
public static Authentication getAuthentication() {
return
SecurityContextHolder
.
getContext
().
getAuthentication
();
//
return SecurityContextHolder.getContext().getAuthentication();
}
//
}
//
/**
//
/**
* 生成BCryptPasswordEncoder密码
//
* 生成BCryptPasswordEncoder密码
*
//
*
* @param password 密码
//
* @param password 密码
* @return 加密字符串
//
* @return 加密字符串
*/
//
*/
public
static
String
encryptPassword
(
String
password
)
{
//
public static String encryptPassword(String password) {
BCryptPasswordEncoder
passwordEncoder
=
new
BCryptPasswordEncoder
();
//
BCryptPasswordEncoder passwordEncoder = new BCryptPasswordEncoder();
return
passwordEncoder
.
encode
(
password
);
//
return passwordEncoder.encode(password);
}
//
}
//
/**
//
/**
* 判断密码是否相同
//
* 判断密码是否相同
*
//
*
* @param rawPassword 真实密码
//
* @param rawPassword 真实密码
* @param encodedPassword 加密后字符
//
* @param encodedPassword 加密后字符
* @return 结果
//
* @return 结果
*/
//
*/
public
static
boolean
matchesPassword
(
String
rawPassword
,
String
encodedPassword
)
{
//
public static boolean matchesPassword(String rawPassword, String encodedPassword) {
BCryptPasswordEncoder
passwordEncoder
=
new
BCryptPasswordEncoder
();
//
BCryptPasswordEncoder passwordEncoder = new BCryptPasswordEncoder();
return
passwordEncoder
.
matches
(
rawPassword
,
encodedPassword
);
//
return passwordEncoder.matches(rawPassword, encodedPassword);
}
//
}
//
/**
//
/**
* 是否为管理员
//
* 是否为管理员
*
//
*
* @param userId 用户ID
//
* @param userId 用户ID
* @return 结果
//
* @return 结果
*/
//
*/
public
static
boolean
isAdmin
(
Long
userId
)
{
//
public static boolean isAdmin(Long userId) {
return
userId
!=
null
&&
1L
==
userId
;
//
return userId != null && 1L == userId;
}
//
}
}
//
}
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