mirror of
				https://github.com/containers/podman.git
				synced 2025-10-31 18:08:51 +08:00 
			
		
		
		
	 5b79cf15a0
			
		
	
	5b79cf15a0
	
	
	
		
			
			* Remove duplicate or unused types and constants * Move all documetation-only models and responses into swagger package * Remove all unecessary names, go-swagger will determine names from struct declarations * Use Libpod suffix to differentiate between compat and libpod models and responses. Taken from swagger:operation declarations. * Models and responses that start with lowercase are for swagger use only while uppercase are used "as is" in the code and swagger comments * Used gofumpt on new code ```release-note ``` Signed-off-by: Jhon Honce <jhonce@redhat.com>
		
			
				
	
	
		
			221 lines
		
	
	
		
			6.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			221 lines
		
	
	
		
			6.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package libpod
 | |
| 
 | |
| import (
 | |
| 	"encoding/json"
 | |
| 	"net/http"
 | |
| 	"net/url"
 | |
| 
 | |
| 	"github.com/containers/podman/v4/libpod"
 | |
| 	"github.com/containers/podman/v4/libpod/define"
 | |
| 	"github.com/containers/podman/v4/pkg/api/handlers/utils"
 | |
| 	api "github.com/containers/podman/v4/pkg/api/types"
 | |
| 	"github.com/containers/podman/v4/pkg/domain/entities"
 | |
| 	"github.com/containers/podman/v4/pkg/domain/entities/reports"
 | |
| 	"github.com/containers/podman/v4/pkg/domain/filters"
 | |
| 	"github.com/containers/podman/v4/pkg/domain/infra/abi"
 | |
| 	"github.com/containers/podman/v4/pkg/domain/infra/abi/parse"
 | |
| 	"github.com/containers/podman/v4/pkg/util"
 | |
| 	"github.com/gorilla/schema"
 | |
| 	"github.com/pkg/errors"
 | |
| )
 | |
| 
 | |
| func CreateVolume(w http.ResponseWriter, r *http.Request) {
 | |
| 	var (
 | |
| 		volumeOptions []libpod.VolumeCreateOption
 | |
| 		runtime       = r.Context().Value(api.RuntimeKey).(*libpod.Runtime)
 | |
| 		decoder       = r.Context().Value(api.DecoderKey).(*schema.Decoder)
 | |
| 	)
 | |
| 	query := struct{}{
 | |
| 		// override any golang type defaults
 | |
| 	}
 | |
| 	if err := decoder.Decode(&query, r.URL.Query()); err != nil {
 | |
| 		utils.Error(w, http.StatusInternalServerError,
 | |
| 			errors.Wrapf(err, "failed to parse parameters for %s", r.URL.String()))
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	input := entities.VolumeCreateOptions{}
 | |
| 	// decode params from body
 | |
| 	if err := json.NewDecoder(r.Body).Decode(&input); err != nil {
 | |
| 		utils.Error(w, http.StatusInternalServerError, errors.Wrap(err, "Decode()"))
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if len(input.Name) > 0 {
 | |
| 		volumeOptions = append(volumeOptions, libpod.WithVolumeName(input.Name))
 | |
| 	}
 | |
| 	if len(input.Driver) > 0 {
 | |
| 		volumeOptions = append(volumeOptions, libpod.WithVolumeDriver(input.Driver))
 | |
| 	}
 | |
| 
 | |
| 	// Label provided for compatibility.
 | |
| 	labels := make(map[string]string, len(input.Label)+len(input.Labels))
 | |
| 	for k, v := range input.Label {
 | |
| 		labels[k] = v
 | |
| 	}
 | |
| 	for k, v := range input.Labels {
 | |
| 		labels[k] = v
 | |
| 	}
 | |
| 	if len(labels) > 0 {
 | |
| 		volumeOptions = append(volumeOptions, libpod.WithVolumeLabels(labels))
 | |
| 	}
 | |
| 
 | |
| 	if len(input.Options) > 0 {
 | |
| 		parsedOptions, err := parse.VolumeOptions(input.Options)
 | |
| 		if err != nil {
 | |
| 			utils.InternalServerError(w, err)
 | |
| 			return
 | |
| 		}
 | |
| 		volumeOptions = append(volumeOptions, parsedOptions...)
 | |
| 	}
 | |
| 	vol, err := runtime.NewVolume(r.Context(), volumeOptions...)
 | |
| 	if err != nil {
 | |
| 		utils.InternalServerError(w, err)
 | |
| 		return
 | |
| 	}
 | |
| 	inspectOut, err := vol.Inspect()
 | |
| 	if err != nil {
 | |
| 		utils.InternalServerError(w, err)
 | |
| 		return
 | |
| 	}
 | |
| 	volResponse := entities.VolumeConfigResponse{
 | |
| 		InspectVolumeData: *inspectOut,
 | |
| 	}
 | |
| 	utils.WriteResponse(w, http.StatusCreated, volResponse)
 | |
| }
 | |
| 
 | |
| func InspectVolume(w http.ResponseWriter, r *http.Request) {
 | |
| 	runtime := r.Context().Value(api.RuntimeKey).(*libpod.Runtime)
 | |
| 	name := utils.GetName(r)
 | |
| 	vol, err := runtime.GetVolume(name)
 | |
| 	if err != nil {
 | |
| 		utils.VolumeNotFound(w, name, err)
 | |
| 		return
 | |
| 	}
 | |
| 	inspectOut, err := vol.Inspect()
 | |
| 	if err != nil {
 | |
| 		utils.InternalServerError(w, err)
 | |
| 		return
 | |
| 	}
 | |
| 	volResponse := entities.VolumeConfigResponse{
 | |
| 		InspectVolumeData: *inspectOut,
 | |
| 	}
 | |
| 	utils.WriteResponse(w, http.StatusOK, volResponse)
 | |
| }
 | |
| 
 | |
| func ListVolumes(w http.ResponseWriter, r *http.Request) {
 | |
| 	runtime := r.Context().Value(api.RuntimeKey).(*libpod.Runtime)
 | |
| 	filterMap, err := util.PrepareFilters(r)
 | |
| 	if err != nil {
 | |
| 		utils.Error(w, http.StatusInternalServerError,
 | |
| 			errors.Wrapf(err, "failed to parse parameters for %s", r.URL.String()))
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	volumeFilters, err := filters.GenerateVolumeFilters(*filterMap)
 | |
| 	if err != nil {
 | |
| 		utils.InternalServerError(w, err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	vols, err := runtime.Volumes(volumeFilters...)
 | |
| 	if err != nil {
 | |
| 		utils.InternalServerError(w, err)
 | |
| 		return
 | |
| 	}
 | |
| 	volumeConfigs := make([]*entities.VolumeListReport, 0, len(vols))
 | |
| 	for _, v := range vols {
 | |
| 		inspectOut, err := v.Inspect()
 | |
| 		if err != nil {
 | |
| 			utils.InternalServerError(w, err)
 | |
| 			return
 | |
| 		}
 | |
| 		config := entities.VolumeConfigResponse{
 | |
| 			InspectVolumeData: *inspectOut,
 | |
| 		}
 | |
| 		volumeConfigs = append(volumeConfigs, &entities.VolumeListReport{VolumeConfigResponse: config})
 | |
| 	}
 | |
| 	utils.WriteResponse(w, http.StatusOK, volumeConfigs)
 | |
| }
 | |
| 
 | |
| func PruneVolumes(w http.ResponseWriter, r *http.Request) {
 | |
| 	reports, err := pruneVolumesHelper(r)
 | |
| 	if err != nil {
 | |
| 		utils.InternalServerError(w, err)
 | |
| 		return
 | |
| 	}
 | |
| 	utils.WriteResponse(w, http.StatusOK, reports)
 | |
| }
 | |
| 
 | |
| func pruneVolumesHelper(r *http.Request) ([]*reports.PruneReport, error) {
 | |
| 	runtime := r.Context().Value(api.RuntimeKey).(*libpod.Runtime)
 | |
| 	filterMap, err := util.PrepareFilters(r)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	f := (url.Values)(*filterMap)
 | |
| 	filterFuncs, err := filters.GeneratePruneVolumeFilters(f)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	reports, err := runtime.PruneVolumes(r.Context(), filterFuncs)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return reports, nil
 | |
| }
 | |
| 
 | |
| func RemoveVolume(w http.ResponseWriter, r *http.Request) {
 | |
| 	var (
 | |
| 		runtime = r.Context().Value(api.RuntimeKey).(*libpod.Runtime)
 | |
| 		decoder = r.Context().Value(api.DecoderKey).(*schema.Decoder)
 | |
| 	)
 | |
| 	query := struct {
 | |
| 		Force   bool  `schema:"force"`
 | |
| 		Timeout *uint `schema:"timeout"`
 | |
| 	}{
 | |
| 		// override any golang type defaults
 | |
| 	}
 | |
| 
 | |
| 	if err := decoder.Decode(&query, r.URL.Query()); err != nil {
 | |
| 		utils.Error(w, http.StatusInternalServerError,
 | |
| 			errors.Wrapf(err, "failed to parse parameters for %s", r.URL.String()))
 | |
| 		return
 | |
| 	}
 | |
| 	name := utils.GetName(r)
 | |
| 	vol, err := runtime.LookupVolume(name)
 | |
| 	if err != nil {
 | |
| 		utils.VolumeNotFound(w, name, err)
 | |
| 		return
 | |
| 	}
 | |
| 	if err := runtime.RemoveVolume(r.Context(), vol, query.Force, query.Timeout); err != nil {
 | |
| 		if errors.Cause(err) == define.ErrVolumeBeingUsed {
 | |
| 			utils.Error(w, http.StatusConflict, err)
 | |
| 			return
 | |
| 		}
 | |
| 		utils.InternalServerError(w, err)
 | |
| 		return
 | |
| 	}
 | |
| 	utils.WriteResponse(w, http.StatusNoContent, "")
 | |
| }
 | |
| 
 | |
| // ExistsVolume check if a volume exists
 | |
| func ExistsVolume(w http.ResponseWriter, r *http.Request) {
 | |
| 	runtime := r.Context().Value(api.RuntimeKey).(*libpod.Runtime)
 | |
| 	name := utils.GetName(r)
 | |
| 
 | |
| 	ic := abi.ContainerEngine{Libpod: runtime}
 | |
| 	report, err := ic.VolumeExists(r.Context(), name)
 | |
| 	if err != nil {
 | |
| 		utils.Error(w, http.StatusInternalServerError, err)
 | |
| 		return
 | |
| 	}
 | |
| 	if !report.Value {
 | |
| 		utils.Error(w, http.StatusNotFound, define.ErrNoSuchVolume)
 | |
| 		return
 | |
| 	}
 | |
| 	utils.WriteResponse(w, http.StatusNoContent, "")
 | |
| }
 |