Spring Security OAuth2 授权码模式 (Authorization Code)

导读:本篇文章讲解 Spring Security OAuth2 授权码模式 (Authorization Code),希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

前言

Spring Security OAuth2 授权码模式 (Authorization Code)
应该是授权登录的一个行业标准

整体流程

  1. 首先在平台注册获取CLIENT_ID和CLIENT_SECRET 即应用id和key
  2. 第三方通过请求重定向到平台的登录页面
  3. 输入平台的账号密码之后点击确认授权重定向到第三方的页面并携带code
  4. 通过code获取token
  5. 通过token获取用户信息

code的实现逻辑

  • 自带的InMemoryAuthorizationCodeServices是用ConcurrentHashMap存储的
  • 通过父类的createAuthorizationCode方法生成一个code
  • 通过code获取token时通过remove获取对应的用户信息同时删除token 做到只能使用一次
  • 这里也不难看出 可以通过重新这个类来做到自定义的code
public class InMemoryAuthorizationCodeServices extends RandomValueAuthorizationCodeServices {
    protected final ConcurrentHashMap<String, OAuth2Authentication> authorizationCodeStore = new ConcurrentHashMap();

    public InMemoryAuthorizationCodeServices() {
    }

    protected void store(String code, OAuth2Authentication authentication) {
        this.authorizationCodeStore.put(code, authentication);
    }

    public OAuth2Authentication remove(String code) {
        OAuth2Authentication auth = (OAuth2Authentication)this.authorizationCodeStore.remove(code);
        return auth;
    }
}

对应的配置

  1. 数据库添加authorization_code
  2. 放行Login页面
protected void configure(HttpSecurity http) throws Exception {
               /* http.requestMatcher(new OAuth2RequestedMatcher()).authorizeRequests().antMatchers("ljl-auth/oauth/token","/login").permitAll().anyRequest().authenticated().and()
                .httpBasic().and().csrf().disable();*/
/*        ExpressionUrlAuthorizationConfigurer<HttpSecurity>.ExpressionInterceptUrlRegistry registry = http
                .authorizeRequests();
        registry.and().addFilterBefore(securityOauthFilter, FilterSecurityInterceptor.class);*/

        http
                .requestMatchers().anyRequest()
                .and().authorizeRequests().antMatchers(HttpMethod.OPTIONS, "/public/login","/oauth/**").permitAll()
                .antMatchers("/swagger-ui.html").permitAll()
                .antMatchers("/webjars/**").permitAll()
                .antMatchers("/v2/**").permitAll()
                .antMatchers("/swagger-resources/**").permitAll().and()
                .formLogin().permitAll()
                .and().csrf();
    }

由于我添加了各种自定义的认证模式所以要保持InMemoryAuthorizationCodeServices一致
之前通过code获取token一直报code失效 是因为InMemoryAuthorizationCodeServices不是单例 导致了去获取code的时候不是同一个对象

@Override
//重点inMemoryAuthorizationCodeServices
    public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
        endpoints.tokenStore(tokenStore()).tokenGranter(tokenGranter)
                .authenticationManager(this.authenticationManager)
                .userDetailsService(OauthUserService).accessTokenConverter(jwtAccessTokenConverter()).authorizationCodeServices(inMemoryAuthorizationCodeServices());
    }

//重点inMemoryAuthorizationCodeServices
private AuthorizationCodeServices authorizationCodeServices() {
        if (authorizationCodeServices == null) {
            authorizationCodeServices = inMemoryAuthorizationCodeServices;
        }
        return authorizationCodeServices;
    }
private List<TokenGranter> getDefaultTokenGranters() {
        AuthorizationServerTokenServices tokenServices = tokenServices();
        AuthorizationCodeServices authorizationCodeServices = authorizationCodeServices();
        OAuth2RequestFactory requestFactory = requestFactory();

        List<TokenGranter> tokenGranters = new ArrayList<TokenGranter>();
        // 添加授权码模式
        tokenGranters.add(new AuthorizationCodeTokenGranter(tokenServices, authorizationCodeServices, clientDetailsService, requestFactory));
        // 添加刷新令牌的模式
        tokenGranters.add(new RefreshTokenGranter(tokenServices, clientDetailsService, requestFactory));
        // 添加隐士授权模式
        tokenGranters.add(new ImplicitTokenGranter(tokenServices, clientDetailsService, requestFactory));
        // 添加客户端模式
        tokenGranters.add(new ClientCredentialsTokenGranter(tokenServices, clientDetailsService, requestFactory));
        if (authenticationManager != null) {
            // 添加密码模式
            tokenGranters.add(new ResourceOwnerPasswordTokenGranter(authenticationManager, tokenServices, clientDetailsService, requestFactory));
            // 添加自定义授权模式(手机号码)
            tokenGranters.add(new MobileCodeTokenGranter(authenticationManager, tokenServices, clientDetailsService, requestFactory));
            // 添加自定义授权模式(cas)
            tokenGranters.add(new CasTicketTokenGranter(authenticationManager, tokenServices, clientDetailsService, requestFactory));
        }
        return tokenGranters;
    }

流程展示

浏览器上面通过请求到平台的登录页

http://127.0.0.1:8881/base/oauth/authorize?response_type=code&client_id=curl_client&client_secret=user&redirect_uri=http://baidu.com
在这里插入图片描述

输入账号密码

在这里插入图片描述

授权

在这里插入图片描述

获取token

在这里插入图片描述

通过code获取token

http://127.0.0.1:8881/base/oauth/token?grant_type=authorization_code&client_id=curl_client&client_secret=user&code=RAMMan&redirect_uri=http://baidu.com
在这里插入图片描述

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/15304.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!