2018-02-05 16:05:59 -05:00
|
|
|
package checkpoint // import "github.com/docker/docker/api/server/router/checkpoint"
|
2016-05-12 10:52:00 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/server/httputils"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (s *checkpointRouter) postContainerCheckpoint(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error {
|
|
|
|
if err := httputils.ParseForm(r); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
var options types.CheckpointCreateOptions
|
|
|
|
|
|
|
|
decoder := json.NewDecoder(r.Body)
|
|
|
|
if err := decoder.Decode(&options); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
err := s.backend.CheckpointCreate(vars["name"], options)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-09-12 12:09:54 +08:00
|
|
|
w.WriteHeader(http.StatusCreated)
|
2016-05-12 10:52:00 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *checkpointRouter) getContainerCheckpoints(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error {
|
|
|
|
if err := httputils.ParseForm(r); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-09-19 12:01:16 -04:00
|
|
|
checkpoints, err := s.backend.CheckpointList(vars["name"], types.CheckpointListOptions{
|
|
|
|
CheckpointDir: r.Form.Get("dir"),
|
|
|
|
})
|
|
|
|
|
2016-05-12 10:52:00 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return httputils.WriteJSON(w, http.StatusOK, checkpoints)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *checkpointRouter) deleteContainerCheckpoint(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error {
|
|
|
|
if err := httputils.ParseForm(r); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-09-19 12:01:16 -04:00
|
|
|
err := s.backend.CheckpointDelete(vars["name"], types.CheckpointDeleteOptions{
|
|
|
|
CheckpointDir: r.Form.Get("dir"),
|
|
|
|
CheckpointID: vars["checkpoint"],
|
|
|
|
})
|
|
|
|
|
2016-05-12 10:52:00 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
w.WriteHeader(http.StatusNoContent)
|
|
|
|
return nil
|
|
|
|
}
|