All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jclouds.docker.suppliers.DockerSSLContextSupplier Maven / Gradle / Ivy

/*
 * 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.jclouds.docker.suppliers;

import com.google.common.base.Strings;
import com.google.common.base.Supplier;

import org.jclouds.docker.DockerApiMetadata;
import org.jclouds.domain.Credentials;
import org.jclouds.location.Provider;

import javax.inject.Inject;
import javax.inject.Named;
import javax.inject.Singleton;
import javax.net.ssl.SSLContext;

import java.io.IOException;
import java.security.GeneralSecurityException;

import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.base.Throwables.propagate;
import static org.jclouds.docker.suppliers.SSLContextBuilder.isClientKeyAndCertificateData;

@Singleton
public class DockerSSLContextSupplier implements Supplier {
   private final Supplier creds;
   private final String caCertPath;
   private final String caCertData;

   @Inject
   DockerSSLContextSupplier(@Provider Supplier creds, @Named(DockerApiMetadata.DOCKER_CA_CERT_PATH) String caCertPath, @Named(DockerApiMetadata.DOCKER_CA_CERT_DATA) String caCertData) {
      this.creds = creds;
      this.caCertPath = caCertPath;
      this.caCertData = caCertData;
   }

   @Override
   public SSLContext get() {
      Credentials currentCreds = checkNotNull(creds.get(), "credential supplier returned null");
      try {
         SSLContextBuilder builder = new SSLContextBuilder();
         if (isClientKeyAndCertificateData(currentCreds.credential, currentCreds.identity)) {
             builder.clientKeyAndCertificateData(currentCreds.credential, currentCreds.identity);
         } else {
             builder.clientKeyAndCertificatePaths(currentCreds.credential, currentCreds.identity);
         }
         if (!Strings.isNullOrEmpty(caCertPath)) {
            builder.caCertificatePath(caCertPath);
         } else if (!Strings.isNullOrEmpty(caCertData)) {
            builder.caCertificateData(caCertData);
         }
         return builder.build();
      } catch (GeneralSecurityException e) {
         throw propagate(e);
      } catch (IOException e) {
         throw propagate(e);
      }
   }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy