summaryrefslogtreecommitdiff
path: root/pkg/api/server/handler_api.go
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2020-09-15 11:29:45 -0700
committerJhon Honce <jhonce@redhat.com>2020-09-15 11:29:45 -0700
commit8a8bae8299dff8d10c0a2f5873190e19a83ea01c (patch)
treec3ceb3bdb851ef3713529b0fc6a989883bd2acf5 /pkg/api/server/handler_api.go
parent0be5836e49da38b156951639b7e19eaec6a6e593 (diff)
downloadpodman-8a8bae8299dff8d10c0a2f5873190e19a83ea01c.tar.gz
podman-8a8bae8299dff8d10c0a2f5873190e19a83ea01c.tar.bz2
podman-8a8bae8299dff8d10c0a2f5873190e19a83ea01c.zip
Refactor API version values
* API-Version header now Major.Minor to support tools parsing this header * Libpod Version updated to 2.0.0 to reflect changes in API field values * API-Version and Libpod-API-Version headers are now included in all results Fixes #7327 * Header support tested against goland 2020.2 and https://www.jetbrains.com/help/idea/docker.html plugin Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'pkg/api/server/handler_api.go')
-rw-r--r--pkg/api/server/handler_api.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/api/server/handler_api.go b/pkg/api/server/handler_api.go
index e47b66bb4..f2ce0301b 100644
--- a/pkg/api/server/handler_api.go
+++ b/pkg/api/server/handler_api.go
@@ -40,6 +40,10 @@ func (s *APIServer) APIHandler(h http.HandlerFunc) http.HandlerFunc {
c = context.WithValue(c, "idletracker", s.idleTracker) //nolint
r = r.WithContext(c)
+ v := utils.APIVersion[utils.CompatTree][utils.CurrentAPIVersion]
+ w.Header().Set("API-Version", fmt.Sprintf("%d.%d", v.Major, v.Minor))
+ w.Header().Set("Libpod-API-Version", utils.APIVersion[utils.LibpodTree][utils.CurrentAPIVersion].String())
+
h(w, r)
}
fn(w, r)