mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
05390c4f6e
The cancellable handler is no longer needed as the context that is passed with the http request will be cancelled just like the close notifier was doing. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
36 lines
959 B
Go
36 lines
959 B
Go
package volume // import "github.com/docker/docker/api/server/router/volume"
|
|
|
|
import "github.com/docker/docker/api/server/router"
|
|
|
|
// volumeRouter is a router to talk with the volumes controller
|
|
type volumeRouter struct {
|
|
backend Backend
|
|
routes []router.Route
|
|
}
|
|
|
|
// NewRouter initializes a new volume router
|
|
func NewRouter(b Backend) router.Router {
|
|
r := &volumeRouter{
|
|
backend: b,
|
|
}
|
|
r.initRoutes()
|
|
return r
|
|
}
|
|
|
|
// Routes returns the available routes to the volumes controller
|
|
func (r *volumeRouter) Routes() []router.Route {
|
|
return r.routes
|
|
}
|
|
|
|
func (r *volumeRouter) initRoutes() {
|
|
r.routes = []router.Route{
|
|
// GET
|
|
router.NewGetRoute("/volumes", r.getVolumesList),
|
|
router.NewGetRoute("/volumes/{name:.*}", r.getVolumeByName),
|
|
// POST
|
|
router.NewPostRoute("/volumes/create", r.postVolumesCreate),
|
|
router.NewPostRoute("/volumes/prune", r.postVolumesPrune),
|
|
// DELETE
|
|
router.NewDeleteRoute("/volumes/{name:.*}", r.deleteVolumes),
|
|
}
|
|
}
|