forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLocalDirectorySSLConfig.java
More file actions
97 lines (69 loc) · 2.68 KB
/
Copy pathLocalDirectorySSLConfig.java
File metadata and controls
97 lines (69 loc) · 2.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
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();
}
}