diff options
author | Milivoje Legenovic <m.legenovic@gmail.com> | 2020-12-17 00:51:49 +0100 |
---|---|---|
committer | Milivoje Legenovic <m.legenovic@gmail.com> | 2020-12-17 12:50:44 +0100 |
commit | 29358e3e0968c2b72712d11e0a412ebf5ea78417 (patch) | |
tree | a60f844d97b8109fa04974d9d44408cb2b604c41 /pkg/api/handlers/compat/images_search.go | |
parent | 915ae6d9bfa39515d7280f29b5d7d072753cc788 (diff) | |
download | podman-29358e3e0968c2b72712d11e0a412ebf5ea78417.tar.gz podman-29358e3e0968c2b72712d11e0a412ebf5ea78417.tar.bz2 podman-29358e3e0968c2b72712d11e0a412ebf5ea78417.zip |
Docker compat API - /images/search returns wrong structure (#7857)
Signed-off-by: Milivoje Legenovic <m.legenovic@gmail.com>
Diffstat (limited to 'pkg/api/handlers/compat/images_search.go')
-rw-r--r-- | pkg/api/handlers/compat/images_search.go | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/pkg/api/handlers/compat/images_search.go b/pkg/api/handlers/compat/images_search.go index b3ceae3ee..6808cdad5 100644 --- a/pkg/api/handlers/compat/images_search.go +++ b/pkg/api/handlers/compat/images_search.go @@ -8,6 +8,7 @@ import ( "github.com/containers/podman/v2/libpod/image" "github.com/containers/podman/v2/pkg/api/handlers/utils" "github.com/containers/podman/v2/pkg/auth" + "github.com/docker/docker/api/types/registry" "github.com/gorilla/schema" "github.com/pkg/errors" ) @@ -77,5 +78,18 @@ func SearchImages(w http.ResponseWriter, r *http.Request) { utils.BadRequest(w, "term", query.Term, err) return } - utils.WriteResponse(w, http.StatusOK, results) + + compatResults := make([]registry.SearchResult, 0, len(results)) + for _, result := range results { + compatResult := registry.SearchResult{ + Name: result.Name, + Description: result.Description, + StarCount: result.Stars, + IsAutomated: result.Automated == "[OK]", + IsOfficial: result.Official == "[OK]", + } + compatResults = append(compatResults, compatResult) + } + + utils.WriteResponse(w, http.StatusOK, compatResults) } |