mirror of
https://github.com/containers/podman.git
synced 2026-03-13 08:01:19 +08: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>
80 lines
2.2 KiB
Go
80 lines
2.2 KiB
Go
//go:build !remote && (linux || freebsd)
|
|
|
|
package compat
|
|
|
|
import (
|
|
"bytes"
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/containers/podman/v6/libpod"
|
|
"github.com/containers/podman/v6/pkg/api/handlers"
|
|
"github.com/containers/podman/v6/pkg/api/handlers/utils"
|
|
api "github.com/containers/podman/v6/pkg/api/types"
|
|
"github.com/containers/podman/v6/pkg/domain/entities/reports"
|
|
"github.com/containers/podman/v6/pkg/domain/filters"
|
|
"github.com/containers/podman/v6/pkg/util"
|
|
)
|
|
|
|
func PruneContainers(w http.ResponseWriter, r *http.Request) {
|
|
runtime := r.Context().Value(api.RuntimeKey).(*libpod.Runtime)
|
|
filtersMap, err := util.PrepareFilters(r)
|
|
if err != nil {
|
|
utils.Error(w, http.StatusInternalServerError, fmt.Errorf("failed to parse parameters for %s: %w", r.URL.String(), err))
|
|
return
|
|
}
|
|
|
|
filterFuncs := make([]libpod.ContainerFilter, 0, len(*filtersMap))
|
|
for k, v := range *filtersMap {
|
|
generatedFunc, err := filters.GeneratePruneContainerFilterFuncs(k, v, runtime)
|
|
if err != nil {
|
|
utils.InternalServerError(w, err)
|
|
return
|
|
}
|
|
filterFuncs = append(filterFuncs, generatedFunc)
|
|
}
|
|
|
|
report, err := PruneContainersHelper(r, filterFuncs)
|
|
if err != nil {
|
|
utils.InternalServerError(w, err)
|
|
return
|
|
}
|
|
|
|
// Libpod response differs
|
|
if utils.IsLibpodRequest(r) {
|
|
utils.WriteResponse(w, http.StatusOK, report)
|
|
return
|
|
}
|
|
|
|
var payload handlers.ContainersPruneReport
|
|
var errorMsg bytes.Buffer
|
|
for _, pr := range report {
|
|
if pr.Err != nil {
|
|
// Docker stops on first error vs. libpod which keeps going. Given API constraints, concatenate all errors
|
|
// and return that string.
|
|
errorMsg.WriteString(pr.Err.Error())
|
|
errorMsg.WriteString("; ")
|
|
continue
|
|
}
|
|
payload.ContainersDeleted = append(payload.ContainersDeleted, pr.Id)
|
|
payload.SpaceReclaimed += pr.Size
|
|
}
|
|
if errorMsg.Len() > 0 {
|
|
utils.InternalServerError(w, errors.New(errorMsg.String()))
|
|
return
|
|
}
|
|
|
|
utils.WriteResponse(w, http.StatusOK, payload)
|
|
}
|
|
|
|
func PruneContainersHelper(r *http.Request, filterFuncs []libpod.ContainerFilter) ([]*reports.PruneReport, error) {
|
|
runtime := r.Context().Value(api.RuntimeKey).(*libpod.Runtime)
|
|
|
|
report, err := runtime.PruneContainers(filterFuncs)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return report, nil
|
|
}
|