12 changed files with 445 additions and 130 deletions
@ -0,0 +1,47 @@
@@ -0,0 +1,47 @@
|
||||
/* |
||||
* Copyright 2002-2018 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 |
||||
* |
||||
* http://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 org.springframework.security.oauth2.core.oidc.user; |
||||
|
||||
import org.springframework.security.core.GrantedAuthority; |
||||
import org.springframework.security.core.authority.AuthorityUtils; |
||||
import org.springframework.security.oauth2.core.oidc.IdTokenClaimNames; |
||||
import org.springframework.security.oauth2.core.oidc.OidcIdToken; |
||||
|
||||
import java.time.Instant; |
||||
import java.util.Collections; |
||||
import java.util.HashMap; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
|
||||
/** |
||||
* @author Joe Grandja |
||||
*/ |
||||
public class TestOidcUsers { |
||||
|
||||
public static DefaultOidcUser create() { |
||||
List<GrantedAuthority> roles = AuthorityUtils.createAuthorityList("ROLE_USER"); |
||||
return new DefaultOidcUser(roles, idToken()); |
||||
} |
||||
|
||||
private static OidcIdToken idToken() { |
||||
Map<String, Object> claims = new HashMap<>(); |
||||
claims.put(IdTokenClaimNames.SUB, "subject"); |
||||
claims.put(IdTokenClaimNames.ISS, "http://localhost/issuer"); |
||||
claims.put(IdTokenClaimNames.AUD, Collections.singletonList("client")); |
||||
claims.put(IdTokenClaimNames.AZP, "client"); |
||||
return new OidcIdToken("id-token", Instant.now(), Instant.now().plusSeconds(3600), claims); |
||||
} |
||||
} |
||||
@ -0,0 +1,39 @@
@@ -0,0 +1,39 @@
|
||||
/* |
||||
* Copyright 2002-2018 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 |
||||
* |
||||
* http://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 org.springframework.security.oauth2.jwt; |
||||
|
||||
/** |
||||
* A factory for {@link JwtDecoder}(s). |
||||
* This factory should be supplied with a type that provides |
||||
* contextual information used to create a specific {@code JwtDecoder}. |
||||
* |
||||
* @author Joe Grandja |
||||
* @since 5.2 |
||||
* @see JwtDecoder |
||||
* |
||||
* @param <C> The type that provides contextual information used to create a specific {@code JwtDecoder}. |
||||
*/ |
||||
public interface JwtDecoderFactory<C> { |
||||
|
||||
/** |
||||
* Creates a {@code JwtDecoder} using the supplied "contextual" type. |
||||
* |
||||
* @param context the type that provides contextual information |
||||
* @return a {@link JwtDecoder} |
||||
*/ |
||||
JwtDecoder createDecoder(C context); |
||||
|
||||
} |
||||
@ -0,0 +1,39 @@
@@ -0,0 +1,39 @@
|
||||
/* |
||||
* Copyright 2002-2018 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 |
||||
* |
||||
* http://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 org.springframework.security.oauth2.jwt; |
||||
|
||||
/** |
||||
* A factory for {@link ReactiveJwtDecoder}(s). |
||||
* This factory should be supplied with a type that provides |
||||
* contextual information used to create a specific {@code ReactiveJwtDecoder}. |
||||
* |
||||
* @author Joe Grandja |
||||
* @since 5.2 |
||||
* @see ReactiveJwtDecoder |
||||
* |
||||
* @param <C> The type that provides contextual information used to create a specific {@code ReactiveJwtDecoder}. |
||||
*/ |
||||
public interface ReactiveJwtDecoderFactory<C> { |
||||
|
||||
/** |
||||
* Creates a {@code ReactiveJwtDecoder} using the supplied "contextual" type. |
||||
* |
||||
* @param context the type that provides contextual information |
||||
* @return a {@link ReactiveJwtDecoder} |
||||
*/ |
||||
ReactiveJwtDecoder createDecoder(C context); |
||||
|
||||
} |
||||
Loading…
Reference in new issue