forked from keycloak/keycloak
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
56 changed files
with
446 additions
and
44 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
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
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
79 changes: 79 additions & 0 deletions
79
...kus/runtime/src/main/java/org/keycloak/provider/quarkus/VertxClientCertificateLookup.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,79 @@ | ||
/* | ||
* Copyright 2020 Analytical Graphics, Inc. and/or its affiliates | ||
* and other contributors as indicated by the @author tags. | ||
* | ||
* 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.keycloak.provider.quarkus; | ||
|
||
import java.security.cert.X509Certificate; | ||
|
||
import javax.enterprise.inject.Instance; | ||
import javax.enterprise.inject.spi.CDI; | ||
import javax.net.ssl.SSLPeerUnverifiedException; | ||
import javax.net.ssl.SSLSession; | ||
|
||
import io.vertx.core.http.HttpServerRequest; | ||
import org.jboss.logging.Logger; | ||
import org.jboss.resteasy.spi.HttpRequest; | ||
import org.keycloak.services.x509.X509ClientCertificateLookup; | ||
|
||
import io.vertx.ext.web.RoutingContext; | ||
|
||
/** | ||
* @author <a href="mailto:psilva@redhat.com">Pedro Igor</a> | ||
*/ | ||
public class VertxClientCertificateLookup implements X509ClientCertificateLookup { | ||
|
||
private static final Logger logger = Logger.getLogger(VertxClientCertificateLookup.class); | ||
|
||
public VertxClientCertificateLookup() { | ||
} | ||
|
||
@Override | ||
public void close() { | ||
|
||
} | ||
|
||
@Override | ||
public X509Certificate[] getCertificateChain(HttpRequest httpRequest) { | ||
Instance<RoutingContext> instances = CDI.current().select(RoutingContext.class); | ||
|
||
if (instances.isResolvable()) { | ||
RoutingContext context = instances.get(); | ||
|
||
try { | ||
SSLSession sslSession = context.request().sslSession(); | ||
|
||
if (sslSession == null) { | ||
return null; | ||
} | ||
|
||
X509Certificate[] certificates = (X509Certificate[]) sslSession.getPeerCertificates(); | ||
|
||
if (logger.isTraceEnabled() && certificates != null) { | ||
for (X509Certificate cert : certificates) { | ||
logger.tracef("Certificate's SubjectDN => \"%s\"", cert.getSubjectDN().getName()); | ||
} | ||
} | ||
|
||
return certificates; | ||
} catch (SSLPeerUnverifiedException ignore) { | ||
// client not authenticated | ||
} | ||
} | ||
|
||
return null; | ||
} | ||
} |
62 changes: 62 additions & 0 deletions
62
...time/src/main/java/org/keycloak/provider/quarkus/VertxClientCertificateLookupFactory.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,62 @@ | ||
/* | ||
* Copyright 2020 Analytical Graphics, Inc. and/or its affiliates | ||
* and other contributors as indicated by the @author tags. | ||
* | ||
* 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.keycloak.provider.quarkus; | ||
|
||
import org.keycloak.Config; | ||
import org.keycloak.models.KeycloakSession; | ||
import org.keycloak.models.KeycloakSessionFactory; | ||
import org.keycloak.services.x509.X509ClientCertificateLookup; | ||
import org.keycloak.services.x509.X509ClientCertificateLookupFactory; | ||
|
||
/** | ||
* @author <a href="mailto:psilva@redhat.com">Pedro Igor</a> | ||
*/ | ||
public class VertxClientCertificateLookupFactory implements X509ClientCertificateLookupFactory { | ||
|
||
private static X509ClientCertificateLookup SINGLETON; | ||
|
||
@Override | ||
public X509ClientCertificateLookup create(KeycloakSession session) { | ||
return SINGLETON; | ||
} | ||
|
||
@Override | ||
public void init(Config.Scope config) { | ||
SINGLETON = new VertxClientCertificateLookup(); | ||
} | ||
|
||
@Override | ||
public void postInit(KeycloakSessionFactory factory) { | ||
|
||
} | ||
|
||
@Override | ||
public void close() { | ||
|
||
} | ||
|
||
@Override | ||
public String getId() { | ||
return "quarkus"; | ||
} | ||
|
||
@Override | ||
public int order() { | ||
return 100; | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
...resources/META-INF/services/org.keycloak.services.x509.X509ClientCertificateLookupFactory
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,18 @@ | ||
# | ||
# Copyright 2020 Analytical Graphics, Inc. and/or its affiliates | ||
# and other contributors as indicated by the @author tags. | ||
# | ||
# 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. | ||
# | ||
# | ||
org.keycloak.provider.quarkus.VertxClientCertificateLookupFactory |
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
Oops, something went wrong.