SpringBoot+Security 自定義DaoAuthenticationProvider衔瓮,重寫(xiě)additionalAuthenticationChecks()

開(kāi)發(fā)遇到一件很尷尬的事情,springboot里面使用security做登錄驗(yàn)證,但是默認(rèn)的就是驗(yàn)證username和password阶冈,現(xiàn)在的第三方或者短信登錄非常流行闷尿。我現(xiàn)在的需求是做賬號(hào)+短信登錄(ps:后面還不知道要加啥... so:舊的不能廢,只能擴(kuò)展)女坑,接rongcloud sdk

post:/login
params:{
username:mobile,
sessionid:rongcloud_sessionid,
code:驗(yàn)證碼
}

我的想法如標(biāo)題填具,于是開(kāi)始找各種娘、哥匆骗。灌旧。。绰筛。枢泰。
這個(gè)時(shí)候度娘都不起作用了o(╥﹏╥)o,谷哥了半天也沒(méi)詳細(xì)的解決方案
大多都是使用的xml方式配置
我想用的是springboot 注解(ー`′ー)
最終不知道把誰(shuí)和誰(shuí)的想法揉在了一起(尷尬)


@EnableWebSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter {
...
    //-------------------------------①----------------------------------
    @Autowired
    private UserDetailsService userDetailsService;
  //-------------------------------①----------------------------------

    @Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
      UserDetailsService userDetailsService= //自定義或者使用①
      auth.authenticationProvider(new LoginAuthenticationProvider(userDetailsService));
          //這東西千萬(wàn)不能忘
      auth.userDetailsService(userDetailsService)
          .passwordEncoder(new Md5PasswordEncoder());
  }
    @Override
    protected void configure(HttpSecurity http) throws Exception {
        ...
        // 加入自定義UsernamePasswordAuthenticationFilter替代原有Filter
        http.addFilterAt(
                new ApiUsernamePasswordAuthenticationFilter(super.authenticationManager()),
                UsernamePasswordAuthenticationFilter.class);
        ...
    }
...
}

自定義LoginAuthenticationProvider繼承DaoAuthenticationProvider重寫(xiě)additionalAuthenticationChecks()這里就是做密碼比較的

public class LoginAuthenticationProvider extends DaoAuthenticationProvider {
    public LoginAuthenticationProvider(UserDetailsService userDetailsService) {
        super();
        // 這個(gè)地方一定要對(duì)userDetailsService賦值铝噩,不然userDetailsService是null (這個(gè)坑有點(diǎn)深)
        setUserDetailsService(userDetailsService);
    }
    @SuppressWarnings("deprecation")
    protected void additionalAuthenticationChecks(UserDetails userDetails,
            UsernamePasswordAuthenticationToken authentication) throws AuthenticationException {
        Object salt = null;

        if (this.getSaltSource() != null) {
            salt = this.getSaltSource().getSalt(userDetails);
        }

        if (authentication.getCredentials() == null) {
            logger.debug("Authentication failed: no credentials provided");

            throw new BadCredentialsException(
                    messages.getMessage("AbstractUserDetailsAuthenticationProvider.badCredentials", "Bad credentials"));
        }

        String presentedPassword = authentication.getCredentials().toString();
        //我就改了這個(gè)地方衡蚂,增加一個(gè)驗(yàn)證碼登錄標(biāo)識(shí)(具體怎么做就看自己了)
        // 【原本的是登錄密碼和數(shù)據(jù)密碼不等就拋出異常,我用驗(yàn)證碼登錄時(shí)壓根都不知道密碼(ー`′ー)】
        //so 我給短信登錄時(shí)賦值一個(gè)默認(rèn)密碼(驗(yàn)證碼登錄標(biāo)識(shí))來(lái)判斷骏庸,不讓這兒報(bào)異常
        if (!presentedPassword.equals("YZMLG_KSssdS1D145Sd4S")) {
            if (!getPasswordEncoder().isPasswordValid(userDetails.getPassword(), presentedPassword, salt)) {
                logger.debug("Authentication failed: password does not match stored value");

                throw new BadCredentialsException(messages
                        .getMessage("AbstractUserDetailsAuthenticationProvider.badCredentials", "Bad credentials"));
            }
        }
    }

至于這個(gè) #驗(yàn)證碼登錄標(biāo)識(shí)# 怎么來(lái)的就在下面
自定義的Filter

public class ApiUsernamePasswordAuthenticationFilter extends AbstractAuthenticationProcessingFilter {
    public ApiUsernamePasswordAuthenticationFilter(AuthenticationManager authenticationManager) {
        super(new AntPathRequestMatcher("/login", "POST"));
      ...
    }
    @Override
    public Authentication attemptAuthentication(HttpServletRequest request, HttpServletResponse response)
            throws AuthenticationException, IOException, ServletException {
        ....
      //驗(yàn)證碼登錄
        if(passcode!=null){
            if(sessionid!=null){
                try {
                   //接rongcloud sdk 驗(yàn)證
                    SMSVerifyCodeResult result = smsWapper.verifyCode(sessionid, passcode);
                    if (result.getCode() == 200 && result.getSuccess()) {//驗(yàn)證成功
                        password = "YZMLG_KSssdS1D145Sd4S";//驗(yàn)證碼登錄標(biāo)識(shí)
                    }else{
                        throw new SessionAuthenticationException("驗(yàn)證碼錯(cuò)誤");
                    }
                } catch (Exception e) {
                    e.printStackTrace();
                    throw new SessionAuthenticationException("驗(yàn)證碼錯(cuò)誤");
                }
            }
        }
        username = username.trim();

        UsernamePasswordAuthenticationToken authRequest = new UsernamePasswordAuthenticationToken(username, password);
        ....
        return this.getAuthenticationManager().authenticate(authRequest);
        
    }
}

大概的就是這樣
恩毛甲,做個(gè)筆記(坑+1)

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市具被,隨后出現(xiàn)的幾起案子玻募,更是在濱河造成了極大的恐慌,老刑警劉巖一姿,帶你破解...
    沈念sama閱讀 207,113評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件七咧,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡叮叹,警方通過(guò)查閱死者的電腦和手機(jī)艾栋,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)蛉顽,“玉大人蝗砾,你說(shuō)我怎么就攤上這事⌒” “怎么了悼粮?”我有些...
    開(kāi)封第一講書(shū)人閱讀 153,340評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)曾棕。 經(jīng)常有香客問(wèn)我扣猫,道長(zhǎng),這世上最難降的妖魔是什么睁蕾? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,449評(píng)論 1 279
  • 正文 為了忘掉前任苞笨,我火速辦了婚禮债朵,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘瀑凝。我一直安慰自己序芦,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,445評(píng)論 5 374
  • 文/花漫 我一把揭開(kāi)白布粤咪。 她就那樣靜靜地躺著谚中,像睡著了一般。 火紅的嫁衣襯著肌膚如雪寥枝。 梳的紋絲不亂的頭發(fā)上宪塔,一...
    開(kāi)封第一講書(shū)人閱讀 49,166評(píng)論 1 284
  • 那天,我揣著相機(jī)與錄音囊拜,去河邊找鬼某筐。 笑死,一個(gè)胖子當(dāng)著我的面吹牛冠跷,可吹牛的內(nèi)容都是我干的南誊。 我是一名探鬼主播,決...
    沈念sama閱讀 38,442評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼蜜托,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼抄囚!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起橄务,我...
    開(kāi)封第一講書(shū)人閱讀 37,105評(píng)論 0 261
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤幔托,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后蜂挪,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體重挑,經(jīng)...
    沈念sama閱讀 43,601評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,066評(píng)論 2 325
  • 正文 我和宋清朗相戀三年锅劝,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了攒驰。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,161評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡故爵,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出隅津,到底是詐尸還是另有隱情诬垂,我是刑警寧澤,帶...
    沈念sama閱讀 33,792評(píng)論 4 323
  • 正文 年R本政府宣布伦仍,位于F島的核電站结窘,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏充蓝。R本人自食惡果不足惜隧枫,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,351評(píng)論 3 307
  • 文/蒙蒙 一喉磁、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧官脓,春花似錦协怒、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,352評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至赤兴,卻和暖如春妖滔,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背桶良。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,584評(píng)論 1 261
  • 我被黑心中介騙來(lái)泰國(guó)打工座舍, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人陨帆。 一個(gè)月前我還...
    沈念sama閱讀 45,618評(píng)論 2 355
  • 正文 我出身青樓簸州,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親歧譬。 傳聞我的和親對(duì)象是個(gè)殘疾皇子岸浑,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,916評(píng)論 2 344

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