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

io.fabric8.docker.client.impl.ListImage 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 okhttp3.OkHttpClient;
import io.fabric8.docker.api.model.Image;
import io.fabric8.docker.client.Config;
import io.fabric8.docker.client.DockerClientException;
import io.fabric8.docker.dsl.image.AllImagesEndFiltersInterface;
import io.fabric8.docker.dsl.image.FilterFiltersAllImagesEndInterface;

import java.net.URL;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class ListImage extends BaseImageOperation implements
        FilterFiltersAllImagesEndInterface>,
        AllImagesEndFiltersInterface> {

    private static final String FILTER = "filter";
    private static final String FILTERS = "filters";
    private static final String ALL = "all";
    private static final String JSON = "json";

    private final String filter;
    private final Map filters;

    public ListImage(OkHttpClient client, Config config, String filter, Map filters) {
        super(client, config, null, JSON);
        this.filter = filter;
        this.filters = filters;
    }

    private List doList(Boolean all) {
        try {
            StringBuilder sb = new StringBuilder();
            sb.append(getOperationUrl().toString());
            sb.append("?").append(ALL).append("=").append(all);

            if (filters != null && !filters.isEmpty()) {
                sb.append("?").append(FILTERS).append("=")
                        .append(JSON_MAPPER.writeValueAsString(filters));
            }
            if (filter != null && !filters.isEmpty()) {
                sb.append("?").append(FILTER).append("=").append(filter);
            }

            URL requestUrl = new URL(sb.toString());
            return handleList(requestUrl, Image.class);
        } catch (Exception e) {
            throw DockerClientException.launderThrowable(e);
        }
    }
    @Override
    public List allImages() {
        return doList(true);
    }


    @Override
    public List endImages() {
        return doList(false);
    }

    @Override
    public AllImagesEndFiltersInterface> filter(String filter) {
        return new ListImage(client, config, filter, filters);
    }

    @Override
    public AllImagesEndFiltersInterface> filters(String key, String value) {
        Map newFilters = this.filters != null
                ? new HashMap<>(this.filters)
                : new HashMap();
        newFilters.put(key, new String[]{value});
        return new ListImage(client, config, filter, newFilters);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy