如何在 Spring Security 中自定義權(quán)限表達(dá)式

前面的文章中搂赋,松哥已經(jīng)和小伙伴們聊了 Spring Security 中的權(quán)限表達(dá)式了,還沒看過的小伙伴們可以先看下,本文將在前文的基礎(chǔ)上繼續(xù)完善:

1. SpEL 回顧

經(jīng)過上篇文章的學(xué)習(xí)污呼,小伙伴們已經(jīng)知道了歧胁,在 Spring Security 中,@PreAuthorize桶现、@PostAuthorize 等注解都是支持 SpEL 表達(dá)式的躲雅。

在 SpEL 表達(dá)式中,如果上來就直接寫要執(zhí)行的方法名骡和,那么就說明這個方法是 RootObject 對象中的方法相赁,如果要執(zhí)行其他對象的方法相寇,那么還需要寫上對象的名字,例如如下兩個例子:

@PreAuthorize("hasAuthority('system:user:add')")
public String add() {
    return "add";
}

上面這個例子中钮科,表達(dá)式中的方法是 hasAuthority唤衫,沒有寫對象名,那么就說明這個方法是 SpEL 中 RootObject 對象中的方法绵脯。

@PreAuthorize("@ss.hasPermi('monitor:operlog:list')")
@GetMapping("/list")
public TableDataInfo list(SysOperLog operLog) {
    startPage();
    List<SysOperLog> list = operLogService.selectOperLogList(operLog);
    return getDataTable(list);
}

上面這個例子中佳励,權(quán)限注解中的表達(dá)式方法是 @ss.hasPermi('monitor:operlog:list'),其中 ss 是指 Spring 容器中的一個對象名蛆挫,hasPermi 則是這個對象中的方法赃承。

好啦,經(jīng)過前面文章的學(xué)習(xí)悴侵,這些基本知識大家都已經(jīng)掌握了楣导。

2. 如何自定義

其實(shí)上面給出來的第二個例子就是一個自定義的例子。

不過畜挨,這種自定義方式太自由了,自由到?jīng)]有在 Spring Security 架構(gòu)內(nèi)完成這件事噩凹。所以巴元,今天我想和小伙伴們聊一聊,如何在不使用第三方對象的情況下驮宴,來自定義一個權(quán)限判斷的表達(dá)式逮刨。

首先小伙伴們知道,我們在 @PreAuthorize 注解中使用的不用加對象名就能調(diào)用的權(quán)限方法堵泽,如 hasAuthority修己、hasPermissionhasRole迎罗、hasAnyRole 等睬愤,基本上都是由 SecurityExpressionRoot 及其子類提供的,準(zhǔn)確來說是由 MethodSecurityExpressionRoot 類提供的纹安。

MethodSecurityExpressionRoot 類實(shí)際上繼承自 SecurityExpressionRoot尤辱,只不過增加了過濾對象以及返回值對象。我們來看下 MethodSecurityExpressionRoot 的方法摘要:

[圖片上傳失敗...(image-c1f6ef-1657541408706)]

再來看看 SecurityExpressionRoot 中的方法:

[圖片上傳失敗...(image-4214e6-1657541408706)]

這些就是 RootObject 對象中的所有方法了厢岂,也是我們能夠在 @PreAuthorize 注解中使用的所有方法了光督。

那么現(xiàn)在想在已有方法上繼續(xù)擴(kuò)展新方法,那么我們可以通過自定義類繼承自 SecurityExpressionRoot 對象塔粒,擴(kuò)展這個 RootObject 對象结借,在該對象中繼續(xù)添加新的方法,進(jìn)而實(shí)現(xiàn)自定義權(quán)限表達(dá)式卒茬。

好啦船老,說干就干咖熟,開搞!

本文的案例在前文的基礎(chǔ)上繼續(xù)完成努隙,所以這里我就不從頭開始寫了球恤。

3. 自定義 ExpressionRoot

首先我們自定義一個類繼承自 SecurityExpressionRoot 并實(shí)現(xiàn) MethodSecurityExpressionOperations 接口(本來直接繼承自 MethodSecurityExpressionRoot 即可,但是因?yàn)檫@個類不是 public 的荸镊,沒法繼承咽斧,所以我們就實(shí)現(xiàn) MethodSecurityExpressionOperations 接口即可):

public class CustomSecurityExpressionRoot extends SecurityExpressionRoot implements MethodSecurityExpressionOperations {

    private Object filterObject;
    private Object returnObject;
    private AntPathMatcher antPathMatcher = new AntPathMatcher();

    /**
     * Creates a new instance
     *
     * @param authentication the {@link Authentication} to use. Cannot be null.
     */
    public CustomSecurityExpressionRoot(Authentication authentication) {
        super(authentication);
    }

    /**
     * 判斷當(dāng)前對象是否具備某一個權(quán)限
     * @param permission
     * @return
     */
    public boolean hasPermission(String permission) {
        //獲取當(dāng)前登錄用戶所具有的權(quán)限
        Collection<? extends GrantedAuthority> authorities = authentication.getAuthorities();
        for (GrantedAuthority authority : authorities) {
            if (antPathMatcher.match(authority.getAuthority(), permission)) {
                return true;
            }
        }
        return false;
    }

    /**
     * 是否具備多個權(quán)限中的任意一個權(quán)限
     * @param permissions
     * @return
     */
    public boolean hasAnyPermissions(String... permissions) {
        if (permissions == null || permissions.length == 0) {
            return false;
        }
        Collection<? extends GrantedAuthority> authorities = authentication.getAuthorities();
        for (GrantedAuthority authority : authorities) {
            for (String permission : permissions) {
                if (antPathMatcher.match(authority.getAuthority(), permission)) {
                    return true;
                }
            }
        }
        return false;
    }

    public boolean hasAllPermissions:(String... permissions) {
        Collection<? extends GrantedAuthority> authorities = authentication.getAuthorities();
        if (permissions == null || permissions.length == 0) {
            return false;
        }
        for (String permission : permissions) {
            boolean flag = false;
            for (GrantedAuthority authority : authorities) {
                if (antPathMatcher.match(authority.getAuthority(), permission)) {
                    flag = true;
                }
            }
            if (!flag) {
                return false;
            }
        }
        return true;
    }

    @Override
    public void setFilterObject(Object filterObject) {
        this.filterObject = filterObject;
    }

    @Override
    public Object getFilterObject() {
        return filterObject;
    }

    @Override
    public void setReturnObject(Object returnObject) {
        this.returnObject = returnObject;
    }

    @Override
    public Object getReturnObject() {
        return returnObject;
    }

    @Override
    public Object getThis() {
        return this;
    }
}

加了 @Override 注解的方法,都是普普通通的常規(guī)方法躬存,沒啥好說的张惹。我們自己主要實(shí)現(xiàn)了三個方法,分別是:

  • hasPermission:判斷當(dāng)前用戶是否具備某一個給定的權(quán)限岭洲。
  • hasAnyPermissions:判斷當(dāng)前用戶是否具備給定的多個權(quán)限中的某一個宛逗。
  • hasAllPermissions:判斷當(dāng)前用戶是否具備所有的給定的權(quán)限。

這里邊的邏輯我就不啰嗦了盾剩,都是基本的 Java 語法而已雷激。

另外,用 AntPathMatcher 做比對是為了支持通配符告私,這個在上篇文章中已經(jīng)說過了屎暇,這里不再贅述。

Spring Security 中驻粟,MethodSecurityExpressionRoot 的配置是通過 DefaultMethodSecurityExpressionHandler 來完成的根悼,現(xiàn)在我們自定義了 CustomSecurityExpressionRoot,那也得有一個 Handler 來配置 CustomSecurityExpressionRoot蜀撑,所以挤巡,再來一個類繼承自 DefaultMethodSecurityExpressionHandler,如下:

public class CustomMethodSecurityExpressionHandler extends DefaultMethodSecurityExpressionHandler {
    @Override
    protected MethodSecurityExpressionOperations createSecurityExpressionRoot(Authentication authentication, MethodInvocation invocation) {
        CustomSecurityExpressionRoot root = new CustomSecurityExpressionRoot(authentication);
        root.setTrustResolver(getTrustResolver());
        root.setPermissionEvaluator(getPermissionEvaluator());
        root.setRoleHierarchy(getRoleHierarchy());
        return root;
    }
}

在 createSecurityExpressionRoot 方法中創(chuàng)建一個 CustomSecurityExpressionRoot 對象酷麦,對象的 TrustResolver矿卑、權(quán)限評估器以及角色層級等,統(tǒng)統(tǒng)都用默認(rèn)的方案即可沃饶。

配置完成后粪摘,再配置一下 CustomMethodSecurityExpressionHandler 這個 Bean 即可,如下:

@Bean
CustomMethodSecurityExpressionHandler customMethodSecurityExpressionHandler() {
    return new CustomMethodSecurityExpressionHandler();
}

好啦绍坝,這就注入成功了徘意。

接下來,我們就可以在權(quán)限注解中使用這個自定義的方法了:

@PreAuthorize("hasPermission('system:user:add')")
public String add() {
    return "add";
}

這個自定義權(quán)限表達(dá)式的思路轩褐,說到底還是在 Spring Security 體系中玩椎咧,個人感覺這種方式更合理一些。

在 TienChin 項(xiàng)目中,松哥也將按照這種思路去改造 RuoYi-Vue 腳手架勤讽。屆時在 TienChin 項(xiàng)目視頻中蟋座,我再和大伙細(xì)聊,對視頻感興趣的小伙伴脚牍,戳這里:TienChin 項(xiàng)目配套視頻來啦向臀。

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市诸狭,隨后出現(xiàn)的幾起案子券膀,更是在濱河造成了極大的恐慌,老刑警劉巖驯遇,帶你破解...
    沈念sama閱讀 206,839評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件芹彬,死亡現(xiàn)場離奇詭異,居然都是意外死亡叉庐,警方通過查閱死者的電腦和手機(jī)舒帮,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,543評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來陡叠,“玉大人玩郊,你說我怎么就攤上這事⊥髡螅” “怎么了译红?”我有些...
    開封第一講書人閱讀 153,116評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長岭妖。 經(jīng)常有香客問我,道長反璃,這世上最難降的妖魔是什么昵慌? 我笑而不...
    開封第一講書人閱讀 55,371評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮淮蜈,結(jié)果婚禮上斋攀,老公的妹妹穿的比我還像新娘。我一直安慰自己梧田,他們只是感情好淳蔼,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,384評論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著裁眯,像睡著了一般鹉梨。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上穿稳,一...
    開封第一講書人閱讀 49,111評論 1 285
  • 那天存皂,我揣著相機(jī)與錄音,去河邊找鬼。 笑死旦袋,一個胖子當(dāng)著我的面吹牛骤菠,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播疤孕,決...
    沈念sama閱讀 38,416評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼商乎,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了祭阀?” 一聲冷哼從身側(cè)響起鹉戚,我...
    開封第一講書人閱讀 37,053評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎柬讨,沒想到半個月后崩瓤,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,558評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡踩官,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,007評論 2 325
  • 正文 我和宋清朗相戀三年却桶,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片蔗牡。...
    茶點(diǎn)故事閱讀 38,117評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡颖系,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出辩越,到底是詐尸還是另有隱情嘁扼,我是刑警寧澤,帶...
    沈念sama閱讀 33,756評論 4 324
  • 正文 年R本政府宣布黔攒,位于F島的核電站趁啸,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏督惰。R本人自食惡果不足惜不傅,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,324評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望赏胚。 院中可真熱鬧访娶,春花似錦、人聲如沸觉阅。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,315評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽典勇。三九已至劫哼,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間割笙,已是汗流浹背沦偎。 一陣腳步聲響...
    開封第一講書人閱讀 31,539評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人豪嚎。 一個月前我還...
    沈念sama閱讀 45,578評論 2 355
  • 正文 我出身青樓搔驼,卻偏偏與公主長得像,于是被迫代替她去往敵國和親侈询。 傳聞我的和親對象是個殘疾皇子舌涨,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,877評論 2 345

推薦閱讀更多精彩內(nèi)容