mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
62c9e62edc
Signed-off-by: Alexander Morozov <lk4d4@docker.com>
33 lines
889 B
Go
33 lines
889 B
Go
package system
|
|
|
|
import "github.com/docker/docker/api/server/router"
|
|
|
|
// systemRouter provides information about the Docker system overall.
|
|
// It gathers information about host, daemon and container events.
|
|
type systemRouter struct {
|
|
backend Backend
|
|
routes []router.Route
|
|
}
|
|
|
|
// NewRouter initializes a new system router
|
|
func NewRouter(b Backend) router.Router {
|
|
r := &systemRouter{
|
|
backend: b,
|
|
}
|
|
|
|
r.routes = []router.Route{
|
|
router.NewOptionsRoute("/{anyroute:.*}", optionsHandler),
|
|
router.NewGetRoute("/_ping", pingHandler),
|
|
router.Cancellable(router.NewGetRoute("/events", r.getEvents)),
|
|
router.NewGetRoute("/info", r.getInfo),
|
|
router.NewGetRoute("/version", r.getVersion),
|
|
router.NewPostRoute("/auth", r.postAuth),
|
|
}
|
|
|
|
return r
|
|
}
|
|
|
|
// Routes returns all the API routes dedicated to the docker system
|
|
func (s *systemRouter) Routes() []router.Route {
|
|
return s.routes
|
|
}
|