无关风月
2025-01-16 e513013fd8db5fa3267bc23bb2a892b6b21f1727
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
package com.ruoyi.common.security.utils;
 
import javax.servlet.http.HttpServletRequest;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
import com.ruoyi.common.core.constant.SecurityConstants;
import com.ruoyi.common.core.constant.TokenConstants;
import com.ruoyi.common.core.context.SecurityContextHolder;
import com.ruoyi.common.core.utils.ServletUtils;
import com.ruoyi.common.core.utils.StringUtils;
import com.ruoyi.system.api.model.LoginUser;
 
/**
 * 权限获取工具类
 * 
 * @author ruoyi
 */
public class SecurityUtils
{
    /**
     * 获取用户ID
     */
    public static Long getUserId()
    {
        return SecurityContextHolder.getUserId();
    }
 
    /**
     * 获取用户名称
     */
    public static String getUsername()
    {
        return SecurityContextHolder.getUserName();
    }
 
    /**
     * 获取用户key
     */
    public static String getUserKey()
    {
        return SecurityContextHolder.getUserKey();
    }
 
    /**
     * 获取登录用户信息
     */
    public static LoginUser getLoginUser()
    {
        return SecurityContextHolder.get(SecurityConstants.LOGIN_USER, LoginUser.class);
    }
 
    /**
     * 获取请求token
     */
    public static String getToken()
    {
        return getToken(ServletUtils.getRequest());
    }
 
    /**
     * 根据request获取请求token
     */
    public static String getToken(HttpServletRequest request)
    {
        // 从header获取token标识
        String token = request.getHeader(TokenConstants.AUTHENTICATION);
        return replaceTokenPrefix(token);
    }
 
    /**
     * 裁剪token前缀
     */
    public static String replaceTokenPrefix(String token)
    {
        // 如果前端设置了令牌前缀,则裁剪掉前缀
        if (StringUtils.isNotEmpty(token) && token.startsWith(TokenConstants.PREFIX))
        {
            token = token.replaceFirst(TokenConstants.PREFIX, "");
        }
        return token;
    }
 
    /**
     * 是否为管理员
     * 
     * @param userId 用户ID
     * @return 结果
     */
    public static boolean isAdmin(Long userId)
    {
        return userId != null && 1L == userId;
    }
 
    /**
     * 生成BCryptPasswordEncoder密码
     *
     * @param password 密码
     * @return 加密字符串
     */
    public static String encryptPassword(String password)
    {
        BCryptPasswordEncoder passwordEncoder = new BCryptPasswordEncoder();
        return passwordEncoder.encode(password);
    }
 
    /**
     * 判断密码是否相同
     *
     * @param rawPassword 真实密码
     * @param encodedPassword 加密后字符
     * @return 结果
     */
    public static boolean matchesPassword(String rawPassword, String encodedPassword)
    {
        BCryptPasswordEncoder passwordEncoder = new BCryptPasswordEncoder();
        return passwordEncoder.matches(rawPassword, encodedPassword);
    }
    
    
    public static void main(String[] args) {
//        String a18408280894 = MD5Generator.generateMD5("280894");
//        String a18398968484 = MD5Generator.generateMD5("968484");
//        String a18224358736 = MD5Generator.generateMD5("358736");
//        String a18683812118 = MD5Generator.generateMD5("812118");
//        String a15828353127 = MD5Generator.generateMD5("353127");
//        String a17683246536 = MD5Generator.generateMD5("246536");
//        String a18280405248 = MD5Generator.generateMD5("405248");
//        String a18482186931 = MD5Generator.generateMD5("186931");
//        String a13540218174 = MD5Generator.generateMD5("218174");
//        System.err.println(a18398968484);
//
////        System.err.println(s1);
//        String b18408280894 = encryptPassword(a18408280894);
//        String b18398968484 = encryptPassword(a18398968484);
//        String b18224358736 = encryptPassword(a18224358736);
//        String b18683812118 = encryptPassword(a18683812118);
//        String b15828353127 = encryptPassword(a15828353127);
//        String b17683246536 = encryptPassword(a17683246536);
//        String b18280405248 = encryptPassword(a18280405248);
//        String b18482186931 = encryptPassword(a18482186931);
//        String b13540218174 = encryptPassword(a13540218174);
//        String c18408280894 = encryptPassword(b18408280894);
//        String c18398968484 = encryptPassword(b18398968484);
//        String c18224358736 = encryptPassword(b18224358736);
//        String c18683812118 = encryptPassword(b18683812118);
//        String c15828353127 = encryptPassword(b15828353127);
//        String c17683246536 = encryptPassword(b17683246536);
//        String c18280405248 = encryptPassword(b18280405248);
//        String c18482186931 = encryptPassword(b18482186931);
//        String c13540218174 = encryptPassword(b13540218174);
//        System.err.println(c18408280894);
//        System.err.println(c18398968484);
//        System.err.println(c18224358736);
//        System.err.println(c18683812118);
//        System.err.println(c15828353127);
//        System.err.println(c17683246536);
//        System.err.println(c18280405248);
//        System.err.println(c18482186931);
//        System.err.println(c13540218174);
 
 
        String s = MD5Generator.generateMD5("666666");
        System.err.println(s);
//        System.err.println(s);
 
        System.err.println(matchesPassword("ad23a8ac3c902145ffe05df05812b1f0","$2a$10$Rw0A4NjcdqnNrImdOn4EI.z.Ib.XfpY01NPPs9kSsF42JxGrMrJBy"));
    }
}