mirror of
https://github.com/containers/podman.git
synced 2025-06-23 10:38:20 +08:00
Make search --no-trunc
work for podman remote
The HTTP API for image search was still lacking support of the NoTrunc parameter. Signed-off-by: Ralf Haferkamp <rhafer@suse.com>
This commit is contained in:
@ -638,6 +638,7 @@ func SearchImages(w http.ResponseWriter, r *http.Request) {
|
||||
query := struct {
|
||||
Term string `json:"term"`
|
||||
Limit int `json:"limit"`
|
||||
NoTrunc bool `json:"noTrunc"`
|
||||
Filters []string `json:"filters"`
|
||||
TLSVerify bool `json:"tlsVerify"`
|
||||
}{
|
||||
@ -650,7 +651,8 @@ func SearchImages(w http.ResponseWriter, r *http.Request) {
|
||||
}
|
||||
|
||||
options := image.SearchOptions{
|
||||
Limit: query.Limit,
|
||||
Limit: query.Limit,
|
||||
NoTrunc: query.NoTrunc,
|
||||
}
|
||||
if _, found := r.URL.Query()["tlsVerify"]; found {
|
||||
options.InsecureSkipTLSVerify = types.NewOptionalBool(!query.TLSVerify)
|
||||
|
@ -972,6 +972,10 @@ func (s *APIServer) registerImagesHandlers(r *mux.Router) error {
|
||||
// type: integer
|
||||
// description: maximum number of results
|
||||
// - in: query
|
||||
// name: noTrunc
|
||||
// type: boolean
|
||||
// description: do not truncate any of the result strings
|
||||
// - in: query
|
||||
// name: filters
|
||||
// type: string
|
||||
// description: |
|
||||
|
@ -439,6 +439,7 @@ func Search(ctx context.Context, term string, opts entities.ImageSearchOptions)
|
||||
params := url.Values{}
|
||||
params.Set("term", term)
|
||||
params.Set("limit", strconv.Itoa(opts.Limit))
|
||||
params.Set("noTrunc", strconv.FormatBool(opts.NoTrunc))
|
||||
for _, f := range opts.Filters {
|
||||
params.Set("filters", f)
|
||||
}
|
||||
|
Reference in New Issue
Block a user