com.github.dockerjava.core.LocalDirectorySSLConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-java Show documentation
Show all versions of docker-java Show documentation
Java API Client for Docker
package com.github.dockerjava.core;
import static com.google.common.base.Preconditions.checkNotNull;
import java.io.Serializable;
import java.security.Security;
import javax.net.ssl.SSLContext;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
import org.glassfish.jersey.SslConfigurator;
import com.github.dockerjava.api.exception.DockerClientException;
import com.github.dockerjava.core.util.CertificateUtils;
/**
* SSL Config from local files.
*/
public class LocalDirectorySSLConfig implements SSLConfig, Serializable {
private static final long serialVersionUID = -4736328026418377358L;
private final String dockerCertPath;
public LocalDirectorySSLConfig(String dockerCertPath) {
checkNotNull(dockerCertPath);
this.dockerCertPath = dockerCertPath;
}
public String getDockerCertPath() {
return dockerCertPath;
}
@Override
public SSLContext getSSLContext() {
boolean certificatesExist = CertificateUtils.verifyCertificatesExist(dockerCertPath);
if (certificatesExist) {
try {
Security.addProvider(new BouncyCastleProvider());
// properties acrobatics not needed for java > 1.6
String httpProtocols = System.getProperty("https.protocols");
System.setProperty("https.protocols", "TLSv1");
SslConfigurator sslConfig = SslConfigurator.newInstance(true);
if (httpProtocols != null) {
System.setProperty("https.protocols", httpProtocols);
}
sslConfig.keyStore(CertificateUtils.createKeyStore(dockerCertPath));
sslConfig.keyStorePassword("docker");
sslConfig.trustStore(CertificateUtils.createTrustStore(dockerCertPath));
return sslConfig.createSSLContext();
} catch (Exception e) {
throw new DockerClientException(e.getMessage(), e);
}
}
return null;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LocalDirectorySSLConfig that = (LocalDirectorySSLConfig) o;
if (!dockerCertPath.equals(that.dockerCertPath)) {
return false;
}
return true;
}
@Override
public int hashCode() {
return dockerCertPath.hashCode();
}
@Override
public String toString() {
return new StringBuilder().append(this.getClass().getSimpleName()).append("{").append("dockerCertPath=")
.append(dockerCertPath).append("}").toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy