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

io.fabric8.docker.client.impl.ImagePull Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
/*
 * Copyright (C) 2016 Original Authors
 *
 * 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 io.fabric8.docker.client.impl;

import com.squareup.okhttp.OkHttpClient;
import com.squareup.okhttp.Request;
import com.squareup.okhttp.RequestBody;
import io.fabric8.docker.api.model.AuthConfig;
import io.fabric8.docker.client.Config;
import io.fabric8.docker.client.DockerClientException;
import io.fabric8.docker.client.utils.RegistryUtils;
import io.fabric8.docker.client.utils.Utils;
import io.fabric8.docker.dsl.EventListener;
import io.fabric8.docker.dsl.OutputHandle;
import io.fabric8.docker.dsl.image.FromImageInterface;
import io.fabric8.docker.dsl.image.RedirectingWritingOutputOrTagOrFromImageInterface;
import io.fabric8.docker.dsl.image.TagOrFromImageInterface;
import io.fabric8.docker.dsl.image.UsingListenerOrRedirectingWritingOutputOrTagOrFromImageInterface;
import org.apache.commons.codec.binary.Base64;

import java.io.OutputStream;
import java.io.PipedOutputStream;
import java.util.concurrent.TimeUnit;

public class ImagePull extends OperationSupport implements
        UsingListenerOrRedirectingWritingOutputOrTagOrFromImageInterface,
        RedirectingWritingOutputOrTagOrFromImageInterface,
        TagOrFromImageInterface {


    private static final String FROM_IMAGE = "fromImage";
    private static final String TAG = "tag";

    private final String tag;
    private final OutputStream out;
    private final EventListener listener;

    public ImagePull(OkHttpClient client, Config config) {
        this(client, config, null, null, NULL_LISTENER);
    }

    public ImagePull(OkHttpClient client, Config config, String tag, OutputStream out, EventListener listener) {
        super(client, config, IMAGES_RESOURCE, null, CREATE_OPERATION);
        this.tag = tag;
        this.out = out;
        this.listener = listener;
    }

    @Override
    public FromImageInterface withTag(String tag) {
        return new ImagePull(client, config, tag, out, listener);
    }

    @Override
    public RedirectingWritingOutputOrTagOrFromImageInterface usingListener(EventListener listener) {
        return new ImagePull(client, config, tag, out, listener);
    }

    @Override
    public TagOrFromImageInterface redirectingOutput() {
        return new ImagePull(client, config, tag, new PipedOutputStream(), listener);
    }

    @Override
    public TagOrFromImageInterface writingOutput(OutputStream out) {
        return new ImagePull(client, config, tag, out, listener);
    }

    @Override
    public OutputHandle fromImage(String image) {
        try {
            StringBuilder sb = new StringBuilder().append(getOperationUrl(CREATE_OPERATION))
                    .append(Q).append(FROM_IMAGE).append(EQUALS).append(image);

            if (Utils.isNotNullOrEmpty(tag)) {
                sb.append(A).append(TAG).append(EQUALS).append(tag);
            }

            AuthConfig authConfig = RegistryUtils.getConfigForImage(image, config);
            Request request = new Request.Builder()
                    .header("X-Registry-Auth", new String(Base64.encodeBase64(JSON_MAPPER.writeValueAsString(authConfig != null ? authConfig : new AuthConfig()).getBytes("UTF-8")), "UTF-8"))
                    .post(RequestBody.create(MEDIA_TYPE_TEXT, EMPTY))
                    .url(sb.toString()).build();

            ImagePullHandle handle = new ImagePullHandle(out, config.getImagePushTimeout(), TimeUnit.MILLISECONDS, listener);
            client.newCall(request).enqueue(handle);
            return handle;
        } catch (Exception e) {
            throw DockerClientException.launderThrowable(e);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy