ludc
2024-02-29 8ef9e366be48dc5e8e52617ea8ed48b37a0e1f74
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
/*
 *      Copyright (c) 2018-2028, DreamLu All rights reserved.
 *
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions are met:
 *
 *  Redistributions of source code must retain the above copyright notice,
 *  this list of conditions and the following disclaimer.
 *  Redistributions in binary form must reproduce the above copyright
 *  notice, this list of conditions and the following disclaimer in the
 *  documentation and/or other materials provided with the distribution.
 *  Neither the name of the dreamlu.net developer nor the names of its
 *  contributors may be used to endorse or promote products derived from
 *  this software without specific prior written permission.
 *  Author: DreamLu 卢春梦 (596392912@qq.com)
 */
package com.vci.ubcs.admin.security;
 
import lombok.extern.slf4j.Slf4j;
import org.springblade.core.launch.utils.INetUtil;
import org.springframework.http.HttpHeaders;
import org.springframework.http.server.reactive.ServerHttpRequest;
import org.springframework.security.authorization.AuthorizationDecision;
import org.springframework.security.authorization.ReactiveAuthorizationManager;
import org.springframework.security.core.Authentication;
import org.springframework.security.web.server.authorization.AuthorizationContext;
import org.springframework.web.server.ServerWebExchange;
import reactor.core.publisher.Mono;
 
import java.net.InetSocketAddress;
import java.util.Optional;
 
/**
 * 内网认证管理,内网放行,外网认证
 *
 * @author L.cm
 */
@Slf4j
public class InternalAuthorizationManager implements ReactiveAuthorizationManager<AuthorizationContext> {
    private static final String HEADER_X_FORWARDED_FOR = "X-Forwarded-For";
 
    @Override
    public Mono<AuthorizationDecision> check(Mono<Authentication> authentication, AuthorizationContext context) {
        return Mono.just(getAuthorizationDecision(context));
    }
 
    private static AuthorizationDecision getAuthorizationDecision(AuthorizationContext context) {
        return new AuthorizationDecision(isInternalNet(context));
    }
 
    /**
     * 判断是否内网 ip 请求
     *
     * @param context AuthorizationContext
     * @return 是否内网 ip
     */
    private static boolean isInternalNet(AuthorizationContext context) {
        ServerHttpRequest request = Optional.ofNullable(context)
            .map(AuthorizationContext::getExchange)
            .map(ServerWebExchange::getRequest)
            .orElse(null);
        if (request == null) {
            return false;
        }
        HttpHeaders headers = request.getHeaders();
        // 如果没有 X-Forwarded-For 代表为 admin 拉取
        if (!headers.containsKey(HEADER_X_FORWARDED_FOR)) {
            return true;
        }
 
        log.error("===========1========="+context.toString());
        log.error("===========2========="+request.getHeaders());
        log.error("===========3========="+Optional.of(request)
            .map(ServerHttpRequest::getRemoteAddress)
            .map(InetSocketAddress::getAddress)
            .map(INetUtil::isInternalIp)
            .orElse(false));
        log.error("===========4========="+request.getRemoteAddress());
 
        return Optional.of(request)
            .map(ServerHttpRequest::getRemoteAddress)
            .map(InetSocketAddress::getAddress)
            .map(INetUtil::isInternalIp)
            .orElse(false);
    }
 
}