Files
podman/pkg/api/server/register_ping.go
Paul Holzinger 942f789a88 set !remote build tags where needed
The new golangci-lint version 1.60.1 has problems with typecheck when
linting remote files. We have certain pakcages that should never be
inlcuded in remote but the typecheck tries to compile all of them but
this never works and it seems to ignore the exclude files we gave it.

To fix this the proper way is to mark all packages we only use locally
with !remote tags. This is a bit ugly but more correct. I also moved the
DecodeChanges() code around as it is called from the client so the
handles package which should only be remote doesn't really fit anyway.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2024-08-19 11:41:28 +02:00

69 lines
2.4 KiB
Go

//go:build !remote
package server
import (
"net/http"
"github.com/containers/podman/v5/pkg/api/handlers/compat"
"github.com/gorilla/mux"
)
func (s *APIServer) registerPingHandlers(r *mux.Router) error {
r.Handle("/_ping", s.APIHandler(compat.Ping)).Methods(http.MethodGet, http.MethodHead)
r.Handle(VersionedPath("/_ping"), s.APIHandler(compat.Ping)).Methods(http.MethodGet, http.MethodHead)
// swagger:operation GET /libpod/_ping libpod SystemPing
// ---
// summary: Ping service
// description: |
// Return protocol information in response headers.
// `HEAD /libpod/_ping` is also supported.
// `/_ping` is available for compatibility with other engines.
// The '_ping' endpoints are not versioned.
// tags:
// - system (compat)
// - system
// produces:
// - text/plain
// responses:
// 200:
// description: Success
// schema:
// description: OK
// type: string
// example: "OK"
// headers:
// API-Version:
// type: string
// description: Max compatibility API Version the server supports
// BuildKit-Version:
// type: string
// description: Default version of docker image builder
// Docker-Experimental:
// type: boolean
// description: If the server is running with experimental mode enabled, always true
// Cache-Control:
// type: string
// description: always no-cache
// Pragma:
// type: string
// description: always no-cache
// Libpod-API-Version:
// type: string
// description: |
// Max Podman API Version the server supports.
// Available if service is backed by Podman, therefore may be used to
// determine if talking to Podman engine or another engine
// Libpod-Buildah-Version:
// type: string
// description: |
// Default version of libpod image builder.
// Available if service is backed by Podman, therefore may be used to
// determine if talking to Podman engine or another engine
// 500:
// $ref: "#/responses/internalError"
r.Handle("/libpod/_ping", s.APIHandler(compat.Ping)).Methods(http.MethodGet, http.MethodHead)
r.Handle(VersionedPath("/libpod/_ping"), s.APIHandler(compat.Ping)).Methods(http.MethodGet, http.MethodHead)
return nil
}