mirror of
https://github.com/containers/podman.git
synced 2026-04-01 13:33:56 -04:00
Require (linux || freebsd), because the code already does that, in practice. This just means macOS users of IDEs aren't hit with thousands of compilation errors (and then the IDE can open an Linux-specific file and then process it under the Linux assumption, which works much better). This commit ONLY replaces //go:build !remote with //go:build !remote && (linux || freebsd) and is split from the rest to allow mechanically verifying that fact, and focusing a review on the other kinds of changes. Signed-off-by: Miloslav Trmač <mitr@redhat.com>
48 lines
1.2 KiB
Go
48 lines
1.2 KiB
Go
//go:build !remote && (linux || freebsd)
|
|
|
|
package compat
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/containers/podman/v6/libpod"
|
|
"github.com/containers/podman/v6/libpod/define"
|
|
"github.com/containers/podman/v6/pkg/api/handlers/utils"
|
|
api "github.com/containers/podman/v6/pkg/api/types"
|
|
)
|
|
|
|
func Changes(w http.ResponseWriter, r *http.Request) {
|
|
decoder := utils.GetDecoder(r)
|
|
runtime := r.Context().Value(api.RuntimeKey).(*libpod.Runtime)
|
|
|
|
query := struct {
|
|
Parent string `schema:"parent"`
|
|
DiffType string `schema:"diffType"`
|
|
}{}
|
|
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
|
|
}
|
|
var diffType define.DiffType
|
|
switch query.DiffType {
|
|
case "", "all":
|
|
diffType = define.DiffAll
|
|
case "container":
|
|
diffType = define.DiffContainer
|
|
case "image":
|
|
diffType = define.DiffImage
|
|
default:
|
|
utils.Error(w, http.StatusBadRequest, fmt.Errorf("invalid diffType value %q", query.DiffType))
|
|
return
|
|
}
|
|
|
|
id := utils.GetName(r)
|
|
changes, err := runtime.GetDiff(query.Parent, id, diffType)
|
|
if err != nil {
|
|
utils.InternalServerError(w, err)
|
|
return
|
|
}
|
|
utils.WriteJSON(w, 200, changes)
|
|
}
|