基於Spring Security Oauth2的SSO單點登入+JWT許可權控制實踐

CodeSheep發表於2019-05-06

概 述

在前文《基於Spring Security和 JWT的許可權系統設計》之中已經討論過基於 Spring SecurityJWT的許可權系統用法和實踐,本文則進一步實踐一下基於 Spring Security Oauth2實現的多系統單點登入(SSO)和 JWT許可權控制功能,畢竟這個需求也還是蠻普遍的。

程式碼已開源,放在文尾,需要自取


理論知識

在此之前需要學習和了解一些前置知識包括:

  • Spring Security:基於 Spring實現的 Web系統的認證和許可權模組
  • OAuth2:一個關於授權(authorization)的開放網路標準
  • 單點登入 (SSO):在多個應用系統中,使用者只需要登入一次就可以訪問所有相互信任的應用系統
  • JWT:在網路應用間傳遞資訊的一種基於 JSON的開放標準((RFC 7519),用於作為JSON物件在不同系統之間進行安全地資訊傳輸。主要使用場景一般是用來在 身份提供者和服務提供者間傳遞被認證的使用者身份資訊

要完成的目標

  • 目標1:設計並實現一個第三方授權中心服務(Server),用於完成使用者登入,認證和許可權處理
  • 目標2:可以在授權中心下掛載任意多個客戶端應用(Client
  • 目標3:當使用者訪問客戶端應用的安全頁面時,會重定向到授權中心進行身份驗證,認證完成後方可訪問客戶端應用的服務,且多個客戶端應用只需要登入一次即可(謂之 “單點登入 SSO”)

基於此目標驅動,本文設計三個獨立服務,分別是:

  • 一個授權服務中心(codesheep-server
  • 客戶端應用1(codesheep-client1
  • 客戶端應用2(codesheep-client2

多模組(Multi-Module)專案搭建

三個應用通過一個多模組的 Maven專案進行組織,其中專案父 pom中需要加入相關依賴如下:

<dependencies>

	<dependency>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-dependencies</artifactId>
		<version>2.0.8.RELEASE</version>
		<type>pom</type>
		<scope>import</scope>
	</dependency>

	<dependency>
		<groupId>io.spring.platform</groupId>
		<artifactId>platform-bom</artifactId>
		<version>Cairo-RELEASE</version>
		<type>pom</type>
		<scope>import</scope>
	</dependency>

	<dependency>
		<groupId>org.springframework.cloud</groupId>
		<artifactId>spring-cloud-dependencies</artifactId>
		<version>Finchley.SR2</version>
		<type>pom</type>
		<scope>import</scope>
	</dependency>

</dependencies>
複製程式碼

專案結構如下:

專案結構


授權認證中心搭建

授權認證中心本質就是一個 Spring Boot應用,因此需要完成幾個大步驟:

  • pom中新增依賴
<dependencies>
	<dependency>
		<groupId>org.springframework.cloud</groupId>
		<artifactId>spring-cloud-starter-oauth2</artifactId>
	</dependency>
</dependencies>
複製程式碼
  • 專案 yml配置檔案:
server:
  port: 8085
  servlet:
    context-path: /uac
複製程式碼

即讓授權中心服務啟動在本地的 8085埠之上

  • 建立一個帶指定許可權的模擬使用者
@Component
public class SheepUserDetailsService implements UserDetailsService {

    @Autowired
    private PasswordEncoder passwordEncoder;

    @Override
    public UserDetails loadUserByUsername(String s) throws UsernameNotFoundException {

        if( !"codesheep".equals(s) )
            throw new UsernameNotFoundException("使用者" + s + "不存在" );

        return new User( s, passwordEncoder.encode("123456"), AuthorityUtils.commaSeparatedStringToAuthorityList("ROLE_NORMAL,ROLE_MEDIUM"));
    }
}
複製程式碼

這裡建立了一個使用者名稱為codesheep,密碼 123456的模擬使用者,並且賦予了 普通許可權ROLE_NORMAL)和 中等許可權ROLE_MEDIUM

  • 認證伺服器配置 AuthorizationServerConfig
@Configuration
@EnableAuthorizationServer
public class AuthorizationServerConfig extends AuthorizationServerConfigurerAdapter {

    @Override
    public void configure(ClientDetailsServiceConfigurer clients) throws Exception {

        // 定義了兩個客戶端應用的通行證
        clients.inMemory()
                .withClient("sheep1")
                .secret(new BCryptPasswordEncoder().encode("123456"))
                .authorizedGrantTypes("authorization_code", "refresh_token")
                .scopes("all")
                .autoApprove(false)
                .and()
                .withClient("sheep2")
                .secret(new BCryptPasswordEncoder().encode("123456"))
                .authorizedGrantTypes("authorization_code", "refresh_token")
                .scopes("all")
                .autoApprove(false);
    }

    @Override
    public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception {

        endpoints.tokenStore(jwtTokenStore()).accessTokenConverter(jwtAccessTokenConverter());
        DefaultTokenServices tokenServices = (DefaultTokenServices) endpoints.getDefaultAuthorizationServerTokenServices();
        tokenServices.setTokenStore(endpoints.getTokenStore());
        tokenServices.setSupportRefreshToken(true);
        tokenServices.setClientDetailsService(endpoints.getClientDetailsService());
        tokenServices.setTokenEnhancer(endpoints.getTokenEnhancer());
        tokenServices.setAccessTokenValiditySeconds((int) TimeUnit.DAYS.toSeconds(1)); // 一天有效期
        endpoints.tokenServices(tokenServices);
    }

    @Override
    public void configure(AuthorizationServerSecurityConfigurer security) throws Exception {
        security.tokenKeyAccess("isAuthenticated()");
    }

    @Bean
    public TokenStore jwtTokenStore() {
        return new JwtTokenStore(jwtAccessTokenConverter());
    }

    @Bean
    public JwtAccessTokenConverter jwtAccessTokenConverter(){
        JwtAccessTokenConverter converter = new JwtAccessTokenConverter();
        converter.setSigningKey("testKey");
        return converter;
    }

}
複製程式碼

這裡做的最重要的兩件事:一是 定義了兩個客戶端應用的通行證(sheep1sheep2);二是 配置 token的具體實現方式為 JWT Token

  • Spring Security安全配置 SpringSecurityConfig
@Configuration
public class SpringSecurityConfig extends WebSecurityConfigurerAdapter {

    @Override
    @Bean
    public AuthenticationManager authenticationManager() throws Exception {
        return super.authenticationManager();
    }

    @Autowired
    private UserDetailsService userDetailsService;

    @Bean
    public PasswordEncoder passwordEncoder() {
        return new BCryptPasswordEncoder();
    }

    @Bean
    public DaoAuthenticationProvider authenticationProvider() {
        DaoAuthenticationProvider authenticationProvider = new DaoAuthenticationProvider();
        authenticationProvider.setUserDetailsService(userDetailsService);
        authenticationProvider.setPasswordEncoder(passwordEncoder());
        authenticationProvider.setHideUserNotFoundExceptions(false);
        return authenticationProvider;
    }
    
    @Override
    protected void configure(HttpSecurity http) throws Exception {

        http
                .requestMatchers().antMatchers("/oauth/**","/login/**","/logout/**")
                .and()
                .authorizeRequests()
                .antMatchers("/oauth/**").authenticated()
                .and()
                .formLogin().permitAll();
    }

    @Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
        auth.authenticationProvider(authenticationProvider());
    }

}
複製程式碼

客戶端應用建立和配置

本文建立兩個客戶端應用:codesheep-client1codesheep-client2,由於兩者類似,因此只以其一為例進行講解

  • SSO客戶端應用配置類 ClientWebsecurityConfigurer
@Configuration
@EnableWebSecurity
@EnableGlobalMethodSecurity(prePostEnabled = true)
@EnableOAuth2Sso
public class ClientWebsecurityConfigurer extends WebSecurityConfigurerAdapter {

    @Override
    public void configure(HttpSecurity http) throws Exception {
        http.antMatcher("/**").authorizeRequests()
                .anyRequest().authenticated();
    }
}
複製程式碼

複雜的東西都交給註解了!

  • application.yml配置
auth-server: http://localhost:8085/uac
server:
  port: 8086

security:
  oauth2:
    client:
      client-id: sheep1
      client-secret: 123456
      user-authorization-uri: ${auth-server}/oauth/authorize
      access-token-uri: ${auth-server}/oauth/token
    resource:
      jwt:
        key-uri: ${auth-server}/oauth/token_key
複製程式碼

這裡幾項配置都非常重要,都是需要和前面搭建的授權中心進行通訊的

  • 建立測試控制器 TestController
@RestController
public class TestController {

    @GetMapping("/normal")
    @PreAuthorize("hasAuthority('ROLE_NORMAL')")
    public String normal( ) {
        return "normal permission test success !!!";
    }

    @GetMapping("/medium")
    @PreAuthorize("hasAuthority('ROLE_MEDIUM')")
    public String medium() {
        return "medium permission test success !!!";
    }

    @GetMapping("/admin")
    @PreAuthorize("hasAuthority('ROLE_ADMIN')")
    public String admin() {
        return "admin permission test success !!!";
    }
}
複製程式碼

此測試控制器包含三個介面,分別需要三種許可權(ROLE_NORMALROLE_MEDIUMROLE_ADMIN),待會後文會一一測試看效果


實驗驗證

  • 啟動授權認證中心 codesheep-server(啟動於本地8085埠)
  • 啟動客戶端應用 codesheep-client1 (啟動於本地8086埠)
  • 啟動客戶端應用 codesheep-client2 (啟動於本地8087埠)

首先用瀏覽器訪問客戶端1 (codesheep-client1) 的測試介面:localhost:8086/normal,由於此時並沒有過使用者登入認證,因此會自動跳轉到授權中心的登入認證頁面:http://localhost:8085/uac/login

自動跳轉到授權中心統一登入頁面

輸入使用者名稱 codesheep,密碼 123456,即可登入認證,並進入授權頁面:

授權頁面

同意授權後,會自動返回之前客戶端的測試介面:

自動返回客戶端介面並呼叫成功

此時我們再繼續訪問客戶端1 (codesheep-client1) 的測試介面:localhost:8086/medium,發現已經直接可以呼叫而無需認證了:

直接訪問

由於 localhost:8086/normallocalhost:8086/medium要求的介面許可權,使用者codesheep均具備,所以能順利訪問,接下來再訪問一下更高許可權的介面:localhost:8086/admin

無許可權訪問

好了,訪問客戶端1 (codesheep-client1) 的測試介面到此為止,接下來訪問外掛的客戶端2 (codesheep-client2) 的測試介面:localhost:8087/normal,會發現此時會自動跳到授權頁:

由於使用者已通過客戶端1登入過_因此再訪問客戶端2即無需登入_而是直接跳到授權頁

授權完成之後就可以順利訪問客戶端2 (codesheep-client2) 的介面:

順利訪問客戶端2的介面

這就驗證了單點登入SSO的功能了!


未完待續

受篇幅所限,本文應該說實踐了一下精簡流程的:SSO單點登入和JWT許可權控制,還有很多可以複雜和具化的東西可以實現,比如:

  • 客戶端 client憑據 和 使用者 user的憑據可以用資料庫進行統一管理
  • 認證 token也可以用資料庫或快取進行統一管理
  • 授權認證中心的統一登入頁面可以自定義成需要的樣子
  • 認證中心的授權頁也可以自定義,甚至可以去掉
  • 包括一些異常提示也可以自定義

總之,盡情地折騰去吧!

本文開原始碼地址在此:Spring-Boot-In-Action,需要自取


寫在最後

由於能力有限,若有錯誤或者不當之處,還請大家批評指正,一起學習交流!



相關文章