Repository: cxf Updated Branches: refs/heads/master 1bf8635b2 -> 92c234306
Prototyping Oidc Configuration Service Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/92c23430 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/92c23430 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/92c23430 Branch: refs/heads/master Commit: 92c23430685a9256d9e19a649b802124b3c77a78 Parents: 1bf8635 Author: Sergey Beryozkin <[email protected]> Authored: Mon Aug 22 17:17:14 2016 +0100 Committer: Sergey Beryozkin <[email protected]> Committed: Mon Aug 22 17:17:14 2016 +0100 ---------------------------------------------------------------------- .../oidc/idp/OidcConfigurationService.java | 126 +++++++++++++++++++ 1 file changed, 126 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/92c23430/rt/rs/security/sso/oidc/src/main/java/org/apache/cxf/rs/security/oidc/idp/OidcConfigurationService.java ---------------------------------------------------------------------- diff --git a/rt/rs/security/sso/oidc/src/main/java/org/apache/cxf/rs/security/oidc/idp/OidcConfigurationService.java b/rt/rs/security/sso/oidc/src/main/java/org/apache/cxf/rs/security/oidc/idp/OidcConfigurationService.java new file mode 100644 index 0000000..ba941d8 --- /dev/null +++ b/rt/rs/security/sso/oidc/src/main/java/org/apache/cxf/rs/security/oidc/idp/OidcConfigurationService.java @@ -0,0 +1,126 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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.apache.cxf.rs.security.oidc.idp; + +import java.util.Collections; +import java.util.LinkedHashMap; +import java.util.Map; +import java.util.Properties; + +import javax.ws.rs.GET; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.core.Context; +import javax.ws.rs.core.UriInfo; + +import org.apache.cxf.jaxrs.json.basic.JsonMapObjectReaderWriter; +import org.apache.cxf.rs.security.jose.common.JoseConstants; +import org.apache.cxf.rs.security.jose.jws.JwsUtils; + +@Path("openid-configuration") +public class OidcConfigurationService { + + private String issuer; + private String authorizationEndpointAddress; + private String tokenEndpointAddress; + private String tokenRevocationEndpointAddress; + private String userInfoEndpointAddress; + private String jwkEndpointAddress; + + @GET + @Produces("application/json") + public String getConfiguration(@Context UriInfo ui) { + Map<String, Object> cfg = new LinkedHashMap<String, Object>(); + // Issuer + String baseUri = getBaseUri(ui); + cfg.put("issuer", issuer == null ? baseUri : issuer); + // Authorization Endpoint + String theAuthorizationEndpointAddress = + calculateEndpointAddress(authorizationEndpointAddress, baseUri, "/idp/authorize"); + cfg.put("authorization_endpoint", theAuthorizationEndpointAddress); + // Token Endpoint + String theTokenEndpointAddress = + calculateEndpointAddress(tokenEndpointAddress, baseUri, "/oauth2/token"); + cfg.put("token_endpoint", theTokenEndpointAddress); + // Token Revocation Endpoint + String theTokenRevocationEndpointAddress = + calculateEndpointAddress(tokenRevocationEndpointAddress, baseUri, "/oauth2/revoke"); + cfg.put("revocation_endpoint", theTokenRevocationEndpointAddress); + // UriInfo Endpoint + String theUserInfoEndpointAddress = + calculateEndpointAddress(userInfoEndpointAddress, baseUri, "/users/userinfo"); + cfg.put("userinfo_endpoint", theUserInfoEndpointAddress); + // Jwks Uri Endpoint + String theJwkEndpointAddress = + calculateEndpointAddress(jwkEndpointAddress, baseUri, "/jwk/keys"); + cfg.put("jwks_uri", theJwkEndpointAddress); + + Properties sigProps = JwsUtils.loadSignatureOutProperties(false); + if (sigProps != null && sigProps.containsKey(JoseConstants.RSSEC_SIGNATURE_ALGORITHM)) { + cfg.put("id_token_signing_alg_values_supported", + Collections.singletonList(sigProps.get(JoseConstants.RSSEC_SIGNATURE_ALGORITHM))); + } + + JsonMapObjectReaderWriter writer = new JsonMapObjectReaderWriter(); + return writer.toJson(cfg); + } + + private static String calculateEndpointAddress(String endpointAddress, String baseUri, String defRelAddress) { + endpointAddress = endpointAddress == null ? endpointAddress : defRelAddress; + if (endpointAddress.startsWith("https")) { + return endpointAddress; + } else { + return baseUri + endpointAddress; + } + } + + private String getBaseUri(UriInfo ui) { + String requestUri = ui.getRequestUri().toString(); + int ind = requestUri.lastIndexOf(".well-known"); + if (ind != -1) { + requestUri = requestUri.substring(0, ind); + } + return requestUri; + } + + public void setIssuer(String issuer) { + this.issuer = issuer; + } + + public void setAuthorizationEndpointAddress(String authorizationEndpointAddress) { + this.authorizationEndpointAddress = authorizationEndpointAddress; + } + + public void setTokenEndpointAddress(String tokenEndpointAddress) { + this.tokenEndpointAddress = tokenEndpointAddress; + } + + public void setJwkEndpointAddress(String jwkEndpointAddress) { + this.jwkEndpointAddress = jwkEndpointAddress; + } + + public void setUserInfoEndpointAddress(String userInfoEndpointAddress) { + this.userInfoEndpointAddress = userInfoEndpointAddress; + } + + public void setTokenRevocationEndpointAddress(String tokenRevocationEndpointAddress) { + this.tokenRevocationEndpointAddress = tokenRevocationEndpointAddress; + } + +}
