Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
datav_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
廖旭伟
datav_platform
Commits
5ef32c82
Commit
5ef32c82
authored
Jun 20, 2023
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加操作日志发送到管理平台
parent
e338cb8e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
54 additions
and
54 deletions
+54
-54
datav-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.
datav-manager/src/main/java/com/mortals/xhx/base/framework/security/SecurityUtils.java
View file @
5ef32c82
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