e6907243af
We try to perform API-version negotiation as lazy as possible (and only execute when we are about to make an API request). However, some code requires API-version dependent handling (to set options, or remove options based on the version of the API we're using). Currently this code depended on the caller code to perform API negotiation (or to configure the API version) first, which may not happen, and because of that we may be missing options (or set options that are not supported on older API versions). This patch: - splits the code that triggered API-version negotiation to a separate Client.checkVersion() function. - updates NewVersionError to accept a context - updates NewVersionError to perform API-version negotiation (if enabled) - updates various Client functions to manually trigger API-version negotiation Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
45 lines
1.1 KiB
Go
45 lines
1.1 KiB
Go
package client // import "github.com/docker/docker/client"
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"net/url"
|
|
"strconv"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/api/types/filters"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// BuildCachePrune requests the daemon to delete unused cache data
|
|
func (cli *Client) BuildCachePrune(ctx context.Context, opts types.BuildCachePruneOptions) (*types.BuildCachePruneReport, error) {
|
|
if err := cli.NewVersionError(ctx, "1.31", "build prune"); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
report := types.BuildCachePruneReport{}
|
|
|
|
query := url.Values{}
|
|
if opts.All {
|
|
query.Set("all", "1")
|
|
}
|
|
query.Set("keep-storage", strconv.Itoa(int(opts.KeepStorage)))
|
|
f, err := filters.ToJSON(opts.Filters)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "prune could not marshal filters option")
|
|
}
|
|
query.Set("filters", f)
|
|
|
|
serverResp, err := cli.post(ctx, "/build/prune", query, nil, nil)
|
|
defer ensureReaderClosed(serverResp)
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err := json.NewDecoder(serverResp.body).Decode(&report); err != nil {
|
|
return nil, errors.Wrap(err, "error retrieving disk usage")
|
|
}
|
|
|
|
return &report, nil
|
|
}
|