mirror of
https://github.com/containers/podman.git
synced 2025-10-17 03:04:21 +08:00

As with `volume export`, this was coded up exclusively in cmd/ instead of in libpod. Move it into Libpod, add a REST endpoint, add bindings, and now everything talks using the ContainerEngine wiring. Also similar to `volume export` this also makes things work much better with volumes that require mounting - we can now guarantee they're actually mounted, instead of just hoping. Includes some refactoring of `volume export` as well, to simplify its implementation and ensure both Import and Export work with readers/writers, as opposed to just files. Fixes #26409 Signed-off-by: Matt Heon <mheon@redhat.com>
180 lines
4.7 KiB
Go
180 lines
4.7 KiB
Go
package volumes
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/containers/podman/v5/pkg/bindings"
|
|
"github.com/containers/podman/v5/pkg/domain/entities/reports"
|
|
entitiesTypes "github.com/containers/podman/v5/pkg/domain/entities/types"
|
|
jsoniter "github.com/json-iterator/go"
|
|
)
|
|
|
|
// Create creates a volume given its configuration.
|
|
func Create(ctx context.Context, config entitiesTypes.VolumeCreateOptions, options *CreateOptions) (*entitiesTypes.VolumeConfigResponse, error) {
|
|
var (
|
|
v entitiesTypes.VolumeConfigResponse
|
|
)
|
|
if options == nil {
|
|
options = new(CreateOptions)
|
|
}
|
|
_ = options
|
|
conn, err := bindings.GetClient(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
createString, err := jsoniter.MarshalToString(config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
stringReader := strings.NewReader(createString)
|
|
response, err := conn.DoRequest(ctx, stringReader, http.MethodPost, "/volumes/create", nil, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer response.Body.Close()
|
|
|
|
return &v, response.Process(&v)
|
|
}
|
|
|
|
// Inspect returns low-level information about a volume.
|
|
func Inspect(ctx context.Context, nameOrID string, options *InspectOptions) (*entitiesTypes.VolumeConfigResponse, error) {
|
|
var (
|
|
inspect entitiesTypes.VolumeConfigResponse
|
|
)
|
|
if options == nil {
|
|
options = new(InspectOptions)
|
|
}
|
|
_ = options
|
|
conn, err := bindings.GetClient(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
response, err := conn.DoRequest(ctx, nil, http.MethodGet, "/volumes/%s/json", nil, nil, nameOrID)
|
|
if err != nil {
|
|
return &inspect, err
|
|
}
|
|
defer response.Body.Close()
|
|
|
|
return &inspect, response.Process(&inspect)
|
|
}
|
|
|
|
// List returns the configurations for existing volumes in the form of a slice. Optionally, filters
|
|
// can be used to refine the list of volumes.
|
|
func List(ctx context.Context, options *ListOptions) ([]*entitiesTypes.VolumeListReport, error) {
|
|
var (
|
|
vols []*entitiesTypes.VolumeListReport
|
|
)
|
|
conn, err := bindings.GetClient(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
params, err := options.ToParams()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
response, err := conn.DoRequest(ctx, nil, http.MethodGet, "/volumes/json", params, nil)
|
|
if err != nil {
|
|
return vols, err
|
|
}
|
|
defer response.Body.Close()
|
|
|
|
return vols, response.Process(&vols)
|
|
}
|
|
|
|
// Prune removes unused volumes from the local filesystem.
|
|
func Prune(ctx context.Context, options *PruneOptions) ([]*reports.PruneReport, error) {
|
|
var (
|
|
pruned []*reports.PruneReport
|
|
)
|
|
conn, err := bindings.GetClient(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
params, err := options.ToParams()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
response, err := conn.DoRequest(ctx, nil, http.MethodPost, "/volumes/prune", params, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer response.Body.Close()
|
|
|
|
return pruned, response.Process(&pruned)
|
|
}
|
|
|
|
// Remove deletes the given volume from storage. The optional force parameter
|
|
// is used to remove a volume even if it is being used by a container.
|
|
func Remove(ctx context.Context, nameOrID string, options *RemoveOptions) error {
|
|
conn, err := bindings.GetClient(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
params, err := options.ToParams()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
response, err := conn.DoRequest(ctx, nil, http.MethodDelete, "/volumes/%s", params, nil, nameOrID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer response.Body.Close()
|
|
|
|
return response.Process(nil)
|
|
}
|
|
|
|
// Exists returns true if a given volume exists
|
|
func Exists(ctx context.Context, nameOrID string, options *ExistsOptions) (bool, error) {
|
|
conn, err := bindings.GetClient(ctx)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
response, err := conn.DoRequest(ctx, nil, http.MethodGet, "/volumes/%s/exists", nil, nil, nameOrID)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
defer response.Body.Close()
|
|
|
|
return response.IsSuccess(), nil
|
|
}
|
|
|
|
// Export exports a volume to the given path
|
|
func Export(ctx context.Context, nameOrID string, exportTo io.Writer) error {
|
|
conn, err := bindings.GetClient(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
response, err := conn.DoRequest(ctx, nil, http.MethodGet, "/volumes/%s/export", nil, nil, nameOrID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer response.Body.Close()
|
|
|
|
if response.IsSuccess() || response.IsRedirection() {
|
|
if _, err := io.Copy(exportTo, response.Body); err != nil {
|
|
return fmt.Errorf("writing volume %s contents to file: %w", nameOrID, err)
|
|
}
|
|
}
|
|
return response.Process(nil)
|
|
}
|
|
|
|
// Import imports the given tar into the given volume
|
|
func Import(ctx context.Context, nameOrID string, importFrom io.Reader) error {
|
|
conn, err := bindings.GetClient(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
response, err := conn.DoRequest(ctx, importFrom, http.MethodPost, "/volumes/%s/import", nil, nil, nameOrID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer response.Body.Close()
|
|
|
|
return response.Process(nil)
|
|
}
|