springboot3 webflux 接口权限认证

由于是非阻塞的开发模式,所以 springboot 的拦截器不起作用了 只能用 WebFilter
这个不适用与spring clould gateway 因为用的注解判断接口权限
普通的小项目 不建议用 webflux 开发起来很复杂,一个请求全程必须全部用 异步Mono。 否则就会变成同步 的,例如你的数据库操作不支持 Mono ,你的controller service 都用了Mono 也没有,结果也是同步处理的

package com.example.springboot3demo.frame.filter;

import com.alibaba.fastjson.JSONObject;
import com.example.springboot3demo.frame.R;
import com.example.springboot3demo.frame.auth.MethodAuth;
import com.example.springboot3demo.frame.constant.SInfo;
import com.example.springboot3demo.frame.constant.SuperAdmin;
import com.example.springboot3demo.frame.constant.YesNo;
import com.example.springboot3demo.module.system.bean.SystemAccount;
import com.example.springboot3demo.module.system.service.SystemAccountService;
import com.example.springboot3demo.utils.HttpUtils;
import jakarta.annotation.Resource;
import lombok.extern.slf4j.Slf4j;
import org.springframework.core.annotation.Order;
import org.springframework.core.env.Environment;
import org.springframework.core.io.buffer.DataBuffer;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.server.reactive.ServerHttpRequest;
import org.springframework.http.server.reactive.ServerHttpResponse;
import org.springframework.stereotype.Component;
import org.springframework.web.method.HandlerMethod;
import org.springframework.web.reactive.result.method.annotation.RequestMappingHandlerMapping;
import org.springframework.web.server.ServerWebExchange;
import org.springframework.web.server.WebFilter;
import org.springframework.web.server.WebFilterChain;
import reactor.core.publisher.Mono;

import java.nio.charset.StandardCharsets;
import java.util.Objects;
import java.util.Optional;

@Component
@Slf4j
@Order(1)
public class LoginFilter implements WebFilter {

    /**
     * WHITE_URI : 白名单
     */
    private static final String[] WHITE_URI = {
            "/admin/user/account/getByToken",
            "/admin/news/img",
            "/web/user/login"
    };

    /**
     * 记录了所有的controller定义
     */
    @Resource
    private RequestMappingHandlerMapping requestMappingHandlerMapping;

    @Resource
    private Environment env;

    @Resource
    private MethodAuth methodAuth;

    @Resource
    private SystemAccountService  serviceAccountService;

    public Mono<Void> filter(ServerWebExchange exchange, WebFilterChain chain) {

        ServerHttpRequest req = exchange.getRequest();
        HttpHeaders httpHeaders = req.getHeaders();

        String token = HttpUtils.getToken(req);

        // 区别不同前端的用的flag
        String ref = Optional.ofNullable(httpHeaders.getFirst("ref")).orElse("");

        String uri = req.getURI().getPath();

        if (ref.equals("1")) {
            return chain.filter(exchange);
        }

        String contextPath = env.getProperty("spring.webflux.base-path", "");

        if (uri.startsWith(contextPath)) {
            uri = uri.substring(contextPath.length());
        }

        // 白名单过滤
        for (String u : WHITE_URI) {
            if (u.equals(uri)) {
                return chain.filter(exchange);
            }
        }

        // 拿到HandlerMethod  与springboot2 的拦截器里的一样
        Mono<HandlerMethod> handlerMethodMono = requestMappingHandlerMapping
                .getHandler(exchange).cast(HandlerMethod.class);

        return handlerMethodMono.flatMap(handlerMethod -> {

            R r = adminFilter(token, handlerMethod);
            if (r.getCode() != 0) {
                log.info("权限校验失败: {}", r.getMsg());
                return returnErr(exchange, r);
            }

            return chain.filter(exchange);
        });


    }

    // R 是自定义的
    private R adminFilter(String token, HandlerMethod handlerMethod) {

        if (token.isEmpty()) {
            return R.err(SInfo.SInfo_2.N);
        }
        SystemAccount account = serviceAccountService.getByToken(token);
        if (Objects.isNull(account)) {
            return R.err(SInfo.SInfo_2.N);
        }
        // 判断是否为超管
        if (SuperAdmin.isSuperAdmin(account.getUsername(), account.getPassword())) {
            return R.ok();
        }

        account = serviceAccountService.getById(account.getId());
        if (account == null || YesNo.YES.V == account.getIsDeleted()) {
            return R.err(SInfo.SInfo_4.N);
        }
        if (0 == account.getStatus()) {
            return R.err(SInfo.SInfo_5.N);
        }

        // 校验接口权限
        if (!methodAuth.hasMethodAuth(handlerMethod, account)) {
            return R.err(SInfo.SInfo_16.N);
        }

        return R.ok();
    }
    
    // Mono 全是流操作
    private Mono<Void> returnErr(ServerWebExchange exchange, R r) {
        ServerHttpResponse res = exchange.getResponse();
        res.setStatusCode(HttpStatus.UNAUTHORIZED);

        // ServerHttpResponse 没有body 只能从 DataBuffer里取 或者 放入
        String resStr = JSONObject.toJSONString(r);
        DataBuffer db = res.bufferFactory().wrap(resStr.getBytes(StandardCharsets.UTF_8));
        return res.writeWith(Mono.just(db));
    }
}

利用注解 判断接口权限

@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface PreAuth {

    /**
     * 是否开启权限认证
     */
    boolean value() default true;

    /**
     * 权限编码
     */
    String code();
}
import com.example.springboot3demo.frame.constant.MenuType;
import com.example.springboot3demo.module.system.bean.SystemAccount;
import com.example.springboot3demo.module.system.bean.SystemMenu;
import com.example.springboot3demo.module.system.dao.SystemMenuDao;
import jakarta.annotation.Resource;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
import org.springframework.web.method.HandlerMethod;

import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;

/**
 * 接口权限校验类
 */
@Component
@Slf4j
public class MethodAuth {

    @Resource
    private SystemMenuDao systemMenuDao;

    /**
     * 校验接口权限
     * 没配权限注解 认为不需要校验接口权限
     * 公共接口(AuthCode.COMMON)不需要校验权限
     * 只有配置了权限注解 且 value=true and code!=AuthCode.COMMON 才校验接口权限,
     * 校验值取至 数据库(需要的话可以改成配置文件等)
     * @param handlerMethod org. springframework. web. method
     * @param account 账号信息
     */
    public boolean hasMethodAuth(HandlerMethod handlerMethod, SystemAccount account) {
        Method method = handlerMethod.getMethod();

        PreAuth annotation = getPreAuth(handlerMethod, method);

        // 没配权限注解 认为不需要校验接口权限
        if (annotation == null) {
            return true;
        }

        String authCode = annotation.code();
        // 公共接口不需要校验权限
        if (Objects.equals(AuthCode.COMMON, authCode) || !annotation.value()) {
            return true;
        }

        log.info("authCode:{}", authCode);
        return checkAuth(authCode, account.getId());

    }

    /**
     * 取得权限注解 顺序 方法-》当前类-》方法所在类
     */
    private static PreAuth getPreAuth(HandlerMethod handlerMethod, Method method) {
        PreAuth annotation = null;
        // 接口上有权限注解
        if (method.isAnnotationPresent(PreAuth.class)){
            annotation = method.getAnnotation(PreAuth.class);
        } else if (handlerMethod.getBeanType().isAnnotationPresent(PreAuth.class)) {
            // 当前类上有权限注解
            annotation = handlerMethod.getBeanType().getAnnotation(PreAuth.class);
        } else if (method.getDeclaringClass().isAnnotationPresent(PreAuth.class)) {
            // 方法所在类上有权限注解
            annotation = method.getDeclaringClass().getAnnotation(PreAuth.class);
        }
        return annotation;
    }

    /**
     * 查询数据库 判断该用户是否有该接口权限
     */
    private boolean checkAuth(String code, Integer accountId) {
        。。。
        return false;
    }
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,504评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,434评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,089评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,378评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,472评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,506评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,519评论 3 413
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,292评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,738评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,022评论 2 329
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,194评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,873评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,536评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,162评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,413评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,075评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,080评论 2 352

推荐阅读更多精彩内容