portainer/portainer

View on GitHub
api/http/handler/docker/containers/handler.go

Summary

Maintainability
A
35 mins
Test Coverage
package containers

import (
    "net/http"

    "github.com/gorilla/mux"
    "github.com/portainer/portainer/api/dataservices"
    "github.com/portainer/portainer/api/docker"
    dockerclient "github.com/portainer/portainer/api/docker/client"
    "github.com/portainer/portainer/api/http/security"
    httperror "github.com/portainer/portainer/pkg/libhttp/error"
)

type Handler struct {
    *mux.Router
    dockerClientFactory *dockerclient.ClientFactory
    dataStore           dataservices.DataStore
    containerService    *docker.ContainerService
    bouncer             security.BouncerService
}

// NewHandler creates a handler to process non-proxied requests to docker APIs directly.
func NewHandler(routePrefix string, bouncer security.BouncerService, dataStore dataservices.DataStore, dockerClientFactory *dockerclient.ClientFactory, containerService *docker.ContainerService) *Handler {
    h := &Handler{
        Router:              mux.NewRouter(),
        dataStore:           dataStore,
        dockerClientFactory: dockerClientFactory,
        containerService:    containerService,
        bouncer:             bouncer,
    }

    router := h.PathPrefix(routePrefix).Subrouter()
    router.Use(bouncer.AuthenticatedAccess)

    router.Handle("/{containerId}/gpus", httperror.LoggerHandler(h.containerGpusInspect)).Methods(http.MethodGet)
    router.Handle("/{containerId}/recreate", httperror.LoggerHandler(h.recreate)).Methods(http.MethodPost)

    return h
}