2018-02-05 16:05:59 -05:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 14:46:37 -04:00
|
|
|
|
|
|
|
import (
|
2018-04-19 18:30:59 -04:00
|
|
|
"context"
|
2016-09-06 14:46:37 -04:00
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"net/url"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
"github.com/docker/docker/api/types/filters"
|
|
|
|
"github.com/docker/docker/api/types/registry"
|
2019-02-09 13:19:22 -05:00
|
|
|
"github.com/docker/docker/errdefs"
|
2016-09-06 14:46:37 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// ImageSearch makes the docker host to search by a term in a remote registry.
|
|
|
|
// The list of results is not sorted in any fashion.
|
|
|
|
func (cli *Client) ImageSearch(ctx context.Context, term string, options types.ImageSearchOptions) ([]registry.SearchResult, error) {
|
|
|
|
var results []registry.SearchResult
|
|
|
|
query := url.Values{}
|
|
|
|
query.Set("term", term)
|
|
|
|
query.Set("limit", fmt.Sprintf("%d", options.Limit))
|
|
|
|
|
|
|
|
if options.Filters.Len() > 0 {
|
2017-09-26 07:59:45 -04:00
|
|
|
filterJSON, err := filters.ToJSON(options.Filters)
|
2016-09-06 14:46:37 -04:00
|
|
|
if err != nil {
|
|
|
|
return results, err
|
|
|
|
}
|
|
|
|
query.Set("filters", filterJSON)
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := cli.tryImageSearch(ctx, query, options.RegistryAuth)
|
2019-02-11 07:26:12 -05:00
|
|
|
defer ensureReaderClosed(resp)
|
2019-02-09 13:19:22 -05:00
|
|
|
if errdefs.IsUnauthorized(err) && options.PrivilegeFunc != nil {
|
2016-09-06 14:46:37 -04:00
|
|
|
newAuthHeader, privilegeErr := options.PrivilegeFunc()
|
|
|
|
if privilegeErr != nil {
|
|
|
|
return results, privilegeErr
|
|
|
|
}
|
|
|
|
resp, err = cli.tryImageSearch(ctx, query, newAuthHeader)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return results, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.NewDecoder(resp.body).Decode(&results)
|
|
|
|
return results, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cli *Client) tryImageSearch(ctx context.Context, query url.Values, registryAuth string) (serverResponse, error) {
|
|
|
|
headers := map[string][]string{"X-Registry-Auth": {registryAuth}}
|
|
|
|
return cli.get(ctx, "/images/search", query, headers)
|
|
|
|
}
|