mirror of
https://github.com/moby/moby.git
synced 2026-01-11 10:41:43 +00:00
Add a new type to use for building filter predicates for API requests, replacing "./api/types/filters".Args in the client. Remove the now unused api/types/filters package. Signed-off-by: Cory Snider <csnider@mirantis.com>
52 lines
1.4 KiB
Go
52 lines
1.4 KiB
Go
package client
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"net/url"
|
|
|
|
"github.com/moby/moby/api/types/image"
|
|
"github.com/moby/moby/api/types/versions"
|
|
)
|
|
|
|
// ImageList returns a list of images in the docker host.
|
|
//
|
|
// Experimental: Set the [image.ListOptions.Manifest] option
|
|
// to include [image.Summary.Manifests] with information about image manifests.
|
|
// This is experimental and might change in the future without any backward
|
|
// compatibility.
|
|
func (cli *Client) ImageList(ctx context.Context, options ImageListOptions) ([]image.Summary, error) {
|
|
var images []image.Summary
|
|
|
|
// Make sure we negotiated (if the client is configured to do so),
|
|
// as code below contains API-version specific handling of options.
|
|
//
|
|
// Normally, version-negotiation (if enabled) would not happen until
|
|
// the API request is made.
|
|
if err := cli.checkVersion(ctx); err != nil {
|
|
return images, err
|
|
}
|
|
|
|
query := url.Values{}
|
|
|
|
options.Filters.updateURLValues(query)
|
|
if options.All {
|
|
query.Set("all", "1")
|
|
}
|
|
if options.SharedSize && versions.GreaterThanOrEqualTo(cli.version, "1.42") {
|
|
query.Set("shared-size", "1")
|
|
}
|
|
if options.Manifests && versions.GreaterThanOrEqualTo(cli.version, "1.47") {
|
|
query.Set("manifests", "1")
|
|
}
|
|
|
|
resp, err := cli.get(ctx, "/images/json", query, nil)
|
|
defer ensureReaderClosed(resp)
|
|
if err != nil {
|
|
return images, err
|
|
}
|
|
|
|
err = json.NewDecoder(resp.Body).Decode(&images)
|
|
return images, err
|
|
}
|