aboutsummaryrefslogtreecommitdiff
path: root/pkg/bindings/images/search.go
blob: 58b25425b54737a3e8e84bb49a360febab057493 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package images

import (
	"context"
	"net/http"
	"strconv"

	"github.com/containers/libpod/libpod/image"
	"github.com/containers/libpod/pkg/bindings"
)

// Search looks for the given image (term) in container image registries.  The optional limit parameter sets
// a maximum number of results returned.  The optional filters parameter allow for more specific image
// searches.
func Search(ctx context.Context, term string, limit *int, filters map[string][]string) ([]image.SearchResult, error) {
	var (
		searchResults []image.SearchResult
	)
	conn, err := bindings.GetConnectionFromContext(ctx)
	if err != nil {
		return nil, err
	}
	params := make(map[string]string)
	params["term"] = term
	if limit != nil {
		params["limit"] = strconv.Itoa(*limit)
	}
	if filters != nil {
		stringFilter, err := bindings.FiltersToString(filters)
		if err != nil {
			return nil, err
		}
		params["filters"] = stringFilter
	}
	response, err := conn.DoRequest(nil, http.MethodGet, "/images/search", params)
	if err != nil {
		return searchResults, nil
	}
	return searchResults, response.Process(&searchResults)
}