86183
2022-09-09 0d999e33085c0a25c5525242748f6aa62a401159
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
 
 
package cn.mb.cloud.auth.security.util;
 
import cn.hutool.core.codec.Base64;
import cn.hutool.core.util.CharsetUtil;
import lombok.experimental.UtilityClass;
import lombok.extern.slf4j.Slf4j;
import org.springframework.http.HttpHeaders;
 
import javax.servlet.http.HttpServletRequest;
import java.io.IOException;
 
/**
 * @author jason
 * 认证授权相关工具类
 */
@Slf4j
@UtilityClass
public class AuthUtils {
    private final String BASIC_ = "Basic";
 
    /**
     * 从header 请求中的clientId/clientsecect
     *
     * @param header header中的参数
     * @throws RuntimeException if the Basic header is not present or is not valid
     *                          Base64
     */
    public String[] extractAndDecodeHeader(String header)
            throws IOException {
 
        byte[] base64Token = header.substring(6).getBytes("UTF-8");
        byte[] decoded;
        try {
            decoded = Base64.decode(base64Token);
        } catch (IllegalArgumentException e) {
            throw new RuntimeException(
                    "Failed to decode basic authentication token");
        }
 
        String token = new String(decoded, CharsetUtil.UTF_8);
 
        int delim = token.indexOf(":");
 
        if (delim == -1) {
            throw new RuntimeException("Invalid basic authentication token");
        }
        return new String[]{token.substring(0, delim), token.substring(delim + 1)};
    }
 
    /**
     * *从header 请求中的clientId/clientsecect
     *
     * @param request
     * @return
     * @throws IOException
     */
    public String[] extractAndDecodeHeader(HttpServletRequest request)
            throws IOException {
        String header = request.getHeader(HttpHeaders.AUTHORIZATION);
 
        if (header == null || !header.startsWith(BASIC_)) {
            throw new RuntimeException("请求头中client信息为空");
        }
 
        return extractAndDecodeHeader(header);
    }
}