mirror of https://github.com/containers/podman.git
84 lines
2.3 KiB
Go
84 lines
2.3 KiB
Go
//go:build !remote
|
|
|
|
package compat
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/containers/image/v5/types"
|
|
"github.com/containers/podman/v5/libpod"
|
|
"github.com/containers/podman/v5/pkg/api/handlers/utils"
|
|
api "github.com/containers/podman/v5/pkg/api/types"
|
|
"github.com/containers/podman/v5/pkg/auth"
|
|
"github.com/containers/podman/v5/pkg/domain/entities"
|
|
"github.com/containers/podman/v5/pkg/domain/infra/abi"
|
|
"github.com/containers/storage"
|
|
)
|
|
|
|
func SearchImages(w http.ResponseWriter, r *http.Request) {
|
|
runtime := r.Context().Value(api.RuntimeKey).(*libpod.Runtime)
|
|
decoder := utils.GetDecoder(r)
|
|
query := struct {
|
|
Term string `json:"term"`
|
|
Limit int `json:"limit"`
|
|
Filters map[string][]string `json:"filters"`
|
|
TLSVerify bool `json:"tlsVerify"`
|
|
ListTags bool `json:"listTags"`
|
|
}{
|
|
// This is where you can override the golang default value for one of fields
|
|
TLSVerify: true,
|
|
}
|
|
|
|
if err := decoder.Decode(&query, r.URL.Query()); err != nil {
|
|
utils.Error(w, http.StatusBadRequest, fmt.Errorf("failed to parse parameters for %s: %w", r.URL.String(), err))
|
|
return
|
|
}
|
|
|
|
authconf, authfile, err := auth.GetCredentials(r)
|
|
if err != nil {
|
|
utils.Error(w, http.StatusBadRequest, err)
|
|
return
|
|
}
|
|
defer auth.RemoveAuthfile(authfile)
|
|
|
|
var username, password, idToken string
|
|
if authconf != nil {
|
|
username = authconf.Username
|
|
password = authconf.Password
|
|
idToken = authconf.IdentityToken
|
|
}
|
|
|
|
filters := []string{}
|
|
for key, val := range query.Filters {
|
|
filters = append(filters, fmt.Sprintf("%s=%s", key, val[0]))
|
|
}
|
|
|
|
options := entities.ImageSearchOptions{
|
|
Authfile: authfile,
|
|
Limit: query.Limit,
|
|
ListTags: query.ListTags,
|
|
Password: password,
|
|
Username: username,
|
|
IdentityToken: idToken,
|
|
Filters: filters,
|
|
}
|
|
if _, found := r.URL.Query()["tlsVerify"]; found {
|
|
options.SkipTLSVerify = types.NewOptionalBool(!query.TLSVerify)
|
|
}
|
|
ir := abi.ImageEngine{Libpod: runtime}
|
|
reports, err := ir.Search(r.Context(), query.Term, options)
|
|
if err != nil {
|
|
utils.Error(w, http.StatusInternalServerError, err)
|
|
return
|
|
}
|
|
if !utils.IsLibpodRequest(r) {
|
|
if len(reports) == 0 {
|
|
utils.ImageNotFound(w, query.Term, storage.ErrImageUnknown)
|
|
return
|
|
}
|
|
}
|
|
|
|
utils.WriteResponse(w, http.StatusOK, reports)
|
|
}
|