forked from spring-projects/spring-authorization-server
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue spring-projectsgh-538 Issue spring-projectsgh-499 Issue spring-projectsgh-106
- Loading branch information
Showing
26 changed files
with
1,272 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
samples/default-authorizationserver/src/main/java/sample/config/CorsConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright 2020-2022 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package sample.config; | ||
|
||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.web.cors.CorsConfiguration; | ||
import org.springframework.web.cors.CorsConfigurationSource; | ||
import org.springframework.web.cors.UrlBasedCorsConfigurationSource; | ||
|
||
@Configuration | ||
public class CorsConfig { | ||
|
||
@Bean | ||
public CorsConfigurationSource corsConfigurationSource() { | ||
UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(); | ||
CorsConfiguration config = new CorsConfiguration(); | ||
config.addAllowedHeader("*"); | ||
config.addAllowedMethod("*"); | ||
config.addAllowedOrigin("http://127.0.0.1:4200"); | ||
config.setAllowCredentials(true); | ||
source.registerCorsConfiguration("/**", config); | ||
return source; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
samples/default-authorizationserver/src/main/java/sample/web/LoginController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* Copyright 2020-2022 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package sample.web; | ||
|
||
import org.springframework.stereotype.Controller; | ||
import org.springframework.web.bind.annotation.GetMapping; | ||
|
||
/** | ||
* @author Steve Riesenberg | ||
*/ | ||
@Controller | ||
public class LoginController { | ||
|
||
@GetMapping("/login") | ||
public String login() { | ||
return "login"; | ||
} | ||
|
||
} |
41 changes: 41 additions & 0 deletions
41
samples/default-authorizationserver/src/main/resources/templates/login.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" | ||
xmlns="http://www.w3.org/1999/xhtml" xmlns:th="https://www.thymeleaf.org"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<title>Spring Security Example</title> | ||
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous"> | ||
<link href="https://getbootstrap.com/docs/4.0/examples/signin/signin.css" rel="stylesheet" crossorigin="anonymous"/> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<form class="form-signin" method="post" th:action="@{/login}"> | ||
<div th:if="${param.error}" class="alert alert-danger"> | ||
Invalid username or password. | ||
</div> | ||
<div th:if="${param.logout}" class="alert alert-success"> | ||
You have been logged out. | ||
</div> | ||
<h2 class="form-signin-heading">Sign In</h2> | ||
<p> | ||
<label for="username" class="sr-only">Username</label> | ||
<input type="text" id="username" name="username" class="form-control" placeholder="Username" required autofocus> | ||
</p> | ||
<p> | ||
<label for="password" class="sr-only">Password</label> | ||
<input type="password" id="password" name="password" class="form-control" placeholder="Password" required> | ||
</p> | ||
<button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button> | ||
<a class="btn btn-light btn-block bg-white" href="/oauth2/authorization/google-idp" role="link" style="text-transform: none;"> | ||
<img width="20" style="margin-right: 5px;" alt="Sign in with Google" src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Google_%22G%22_Logo.svg/512px-Google_%22G%22_Logo.svg.png" /> | ||
Sign in with Google | ||
</a> | ||
<a class="btn btn-light btn-block bg-white" href="/oauth2/authorization/github-idp" role="link" style="text-transform: none;"> | ||
<img width="24" style="margin-right: 5px;" alt="Sign in with GitHub" src="https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png" /> | ||
Sign in with Github | ||
</a> | ||
</form> | ||
</div> | ||
</body> | ||
</html> |
19 changes: 19 additions & 0 deletions
19
...erated-identity-authorizationserver/samples-federated-identity-authorizationserver.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
apply plugin: 'io.spring.convention.spring-sample-boot' | ||
|
||
dependencies { | ||
compile 'org.springframework.boot:spring-boot-starter-web' | ||
compile 'org.springframework.boot:spring-boot-starter-security' | ||
compile 'org.springframework.boot:spring-boot-starter-oauth2-client' | ||
compile 'org.springframework.boot:spring-boot-starter-thymeleaf' | ||
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5' | ||
compile 'org.webjars:webjars-locator-core' | ||
compile 'org.webjars:bootstrap:3.4.1' | ||
compile 'org.webjars:jquery:3.4.1' | ||
compile 'org.springframework.boot:spring-boot-starter-jdbc' | ||
compile project(':spring-security-oauth2-authorization-server') | ||
runtimeOnly 'com.h2database:h2' | ||
|
||
testCompile 'org.springframework.boot:spring-boot-starter-test' | ||
testCompile 'org.springframework.security:spring-security-test' | ||
testCompile 'net.sourceforge.htmlunit:htmlunit' | ||
} |
32 changes: 32 additions & 0 deletions
32
...orizationserver/src/main/java/sample/FederatedIdentityAuthorizationServerApplication.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* Copyright 2020-2021 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package sample; | ||
|
||
import org.springframework.boot.SpringApplication; | ||
import org.springframework.boot.autoconfigure.SpringBootApplication; | ||
|
||
/** | ||
* @author Joe Grandja | ||
* @since 0.0.1 | ||
*/ | ||
@SpringBootApplication | ||
public class FederatedIdentityAuthorizationServerApplication { | ||
|
||
public static void main(String[] args) { | ||
SpringApplication.run(FederatedIdentityAuthorizationServerApplication.class, args); | ||
} | ||
|
||
} |
141 changes: 141 additions & 0 deletions
141
...d-identity-authorizationserver/src/main/java/sample/config/AuthorizationServerConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
/* | ||
* Copyright 2020-2021 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package sample.config; | ||
|
||
import java.util.UUID; | ||
|
||
import com.nimbusds.jose.jwk.JWKSet; | ||
import com.nimbusds.jose.jwk.RSAKey; | ||
import com.nimbusds.jose.jwk.source.JWKSource; | ||
import com.nimbusds.jose.proc.SecurityContext; | ||
import sample.jose.Jwks; | ||
import sample.security.FederatedIdentityConfigurer; | ||
|
||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.core.Ordered; | ||
import org.springframework.core.annotation.Order; | ||
import org.springframework.jdbc.core.JdbcTemplate; | ||
import org.springframework.jdbc.datasource.embedded.EmbeddedDatabase; | ||
import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder; | ||
import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType; | ||
import org.springframework.security.config.Customizer; | ||
import org.springframework.security.config.annotation.web.builders.HttpSecurity; | ||
import org.springframework.security.config.annotation.web.configuration.OAuth2AuthorizationServerConfiguration; | ||
import org.springframework.security.oauth2.core.AuthorizationGrantType; | ||
import org.springframework.security.oauth2.core.ClientAuthenticationMethod; | ||
import org.springframework.security.oauth2.core.oidc.OidcScopes; | ||
import org.springframework.security.oauth2.server.authorization.JdbcOAuth2AuthorizationConsentService; | ||
import org.springframework.security.oauth2.server.authorization.JdbcOAuth2AuthorizationService; | ||
import org.springframework.security.oauth2.server.authorization.OAuth2AuthorizationConsentService; | ||
import org.springframework.security.oauth2.server.authorization.OAuth2AuthorizationService; | ||
import org.springframework.security.oauth2.server.authorization.client.JdbcRegisteredClientRepository; | ||
import org.springframework.security.oauth2.server.authorization.client.RegisteredClient; | ||
import org.springframework.security.oauth2.server.authorization.client.RegisteredClientRepository; | ||
import org.springframework.security.oauth2.server.authorization.config.ClientSettings; | ||
import org.springframework.security.oauth2.server.authorization.config.ProviderSettings; | ||
import org.springframework.security.web.SecurityFilterChain; | ||
|
||
/** | ||
* @author Steve Riesenberg | ||
*/ | ||
@Configuration(proxyBeanMethods = false) | ||
public class AuthorizationServerConfig { | ||
|
||
@Bean | ||
@Order(Ordered.HIGHEST_PRECEDENCE) | ||
public SecurityFilterChain authorizationServerSecurityFilterChain(HttpSecurity http) throws Exception { | ||
OAuth2AuthorizationServerConfiguration.applyDefaultSecurity(http); | ||
http.apply(new FederatedIdentityConfigurer()); | ||
|
||
return http.cors(Customizer.withDefaults()).formLogin(Customizer.withDefaults()).build(); | ||
} | ||
|
||
@Bean | ||
public RegisteredClientRepository registeredClientRepository(JdbcTemplate jdbcTemplate) { | ||
// @formatter:off | ||
RegisteredClient confidentialClient = RegisteredClient.withId(UUID.randomUUID().toString()) | ||
.clientId("messaging-client") | ||
.clientSecret("{noop}secret") | ||
.clientAuthenticationMethod(ClientAuthenticationMethod.CLIENT_SECRET_BASIC) | ||
.authorizationGrantType(AuthorizationGrantType.AUTHORIZATION_CODE) | ||
.authorizationGrantType(AuthorizationGrantType.REFRESH_TOKEN) | ||
.authorizationGrantType(AuthorizationGrantType.CLIENT_CREDENTIALS) | ||
.redirectUri("http://127.0.0.1:8080/login/oauth2/code/messaging-client-oidc") | ||
.redirectUri("http://127.0.0.1:8080/authorized") | ||
.scope(OidcScopes.OPENID) | ||
.scope("message.read") | ||
.scope("message.write") | ||
.clientSettings(ClientSettings.builder().requireAuthorizationConsent(true).build()) | ||
.build(); | ||
RegisteredClient publicClient = RegisteredClient.withId(UUID.randomUUID().toString()) | ||
.clientId("public-client") | ||
.clientAuthenticationMethod(ClientAuthenticationMethod.NONE) | ||
.authorizationGrantType(AuthorizationGrantType.AUTHORIZATION_CODE) | ||
.redirectUri("http://127.0.0.1:4200") | ||
.redirectUri("http://127.0.0.1:4200/silent-renew.html") | ||
.scope(OidcScopes.OPENID) | ||
.scope("message.read") | ||
.scope("message.write") | ||
.clientSettings(ClientSettings.builder().requireAuthorizationConsent(true).requireProofKey(true).build()) | ||
.build(); | ||
// @formatter:on | ||
|
||
// Save registered client in db as if in-memory | ||
JdbcRegisteredClientRepository registeredClientRepository = new JdbcRegisteredClientRepository(jdbcTemplate); | ||
registeredClientRepository.save(confidentialClient); | ||
registeredClientRepository.save(publicClient); | ||
|
||
return registeredClientRepository; | ||
} | ||
|
||
@Bean | ||
public OAuth2AuthorizationService authorizationService(JdbcTemplate jdbcTemplate, RegisteredClientRepository registeredClientRepository) { | ||
return new JdbcOAuth2AuthorizationService(jdbcTemplate, registeredClientRepository); | ||
} | ||
|
||
@Bean | ||
public OAuth2AuthorizationConsentService authorizationConsentService(JdbcTemplate jdbcTemplate, RegisteredClientRepository registeredClientRepository) { | ||
return new JdbcOAuth2AuthorizationConsentService(jdbcTemplate, registeredClientRepository); | ||
} | ||
|
||
@Bean | ||
public JWKSource<SecurityContext> jwkSource() { | ||
RSAKey rsaKey = Jwks.generateRsa(); | ||
JWKSet jwkSet = new JWKSet(rsaKey); | ||
return (jwkSelector, securityContext) -> jwkSelector.select(jwkSet); | ||
} | ||
|
||
@Bean | ||
public ProviderSettings providerSettings() { | ||
return ProviderSettings.builder().issuer("http://localhost:9000").build(); | ||
} | ||
|
||
@Bean | ||
public EmbeddedDatabase embeddedDatabase() { | ||
// @formatter:off | ||
return new EmbeddedDatabaseBuilder() | ||
.generateUniqueName(true) | ||
.setType(EmbeddedDatabaseType.H2) | ||
.setScriptEncoding("UTF-8") | ||
.addScript("org/springframework/security/oauth2/server/authorization/oauth2-authorization-schema.sql") | ||
.addScript("org/springframework/security/oauth2/server/authorization/oauth2-authorization-consent-schema.sql") | ||
.addScript("org/springframework/security/oauth2/server/authorization/client/oauth2-registered-client-schema.sql") | ||
.build(); | ||
// @formatter:on | ||
} | ||
|
||
} |
39 changes: 39 additions & 0 deletions
39
samples/federated-identity-authorizationserver/src/main/java/sample/config/CorsConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright 2020-2022 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package sample.config; | ||
|
||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.web.cors.CorsConfiguration; | ||
import org.springframework.web.cors.CorsConfigurationSource; | ||
import org.springframework.web.cors.UrlBasedCorsConfigurationSource; | ||
|
||
@Configuration | ||
public class CorsConfig { | ||
|
||
@Bean | ||
public CorsConfigurationSource corsConfigurationSource() { | ||
UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(); | ||
CorsConfiguration config = new CorsConfiguration(); | ||
config.addAllowedHeader("*"); | ||
config.addAllowedMethod("*"); | ||
config.addAllowedOrigin("http://127.0.0.1:4200"); | ||
config.setAllowCredentials(true); | ||
source.registerCorsConfiguration("/**", config); | ||
return source; | ||
} | ||
|
||
} |
Oops, something went wrong.