io.fabric8.docker.client.impl.ImportImage.java Source code

Java tutorial

Introduction

Here is the source code for io.fabric8.docker.client.impl.ImportImage.java

Source

/*
 * 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.AsRepoInterface;
import io.fabric8.docker.dsl.image.RedirectingWritingOutputTagAsRepoInterface;
import io.fabric8.docker.dsl.image.TagAsRepoInterface;
import io.fabric8.docker.dsl.image.UsingListenerRedirectingWritingOutputTagAsRepoInterface;
import org.apache.commons.codec.binary.Base64;

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

public class ImportImage extends BaseImageOperation
        implements UsingListenerRedirectingWritingOutputTagAsRepoInterface<OutputHandle>,
        RedirectingWritingOutputTagAsRepoInterface<OutputHandle>, AsRepoInterface<OutputHandle>,
        TagAsRepoInterface<OutputHandle> {

    private static final String CREATE_OPERATION = "create";
    private static final String TAG = "tag";

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

    public ImportImage(OkHttpClient client, Config config, String source) {
        this(client, config, source, null, null, NULL_LISTENER);
    }

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

    @Override
    public OutputHandle asRepo(String src) {
        try {
            StringBuilder sb = new StringBuilder().append(getOperationUrl(CREATE_OPERATION));
            if (Utils.isNotNullOrEmpty(tag)) {
                sb.append(Q).append(TAG).append(EQUALS).append(tag);
            }
            AuthConfig authConfig = RegistryUtils.getConfigForImage(name, 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();

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

    @Override
    public TagAsRepoInterface<OutputHandle> redirectingOutput() {
        return new ImportImage(client, config, source, tag, new PipedOutputStream(), listener);
    }

    @Override
    public TagAsRepoInterface<OutputHandle> writingOutput(OutputStream out) {
        return new ImportImage(client, config, source, tag, out, listener);
    }

    @Override
    public RedirectingWritingOutputTagAsRepoInterface<OutputHandle> usingListener(EventListener listener) {
        return new ImportImage(client, config, source, tag, out, listener);
    }

    @Override
    public AsRepoInterface<OutputHandle> withTag(String tag) {
        return new ImportImage(client, config, source, tag, out, listener);
    }
}