mirror of https://github.com/portainer/portainer
34 lines
867 B
Go
34 lines
867 B
Go
|
package dockerhub
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/gorilla/mux"
|
||
|
"github.com/portainer/portainer"
|
||
|
httperror "github.com/portainer/portainer/http/error"
|
||
|
"github.com/portainer/portainer/http/security"
|
||
|
)
|
||
|
|
||
|
func hideFields(dockerHub *portainer.DockerHub) {
|
||
|
dockerHub.Password = ""
|
||
|
}
|
||
|
|
||
|
// Handler is the HTTP handler used to handle DockerHub operations.
|
||
|
type Handler struct {
|
||
|
*mux.Router
|
||
|
DockerHubService portainer.DockerHubService
|
||
|
}
|
||
|
|
||
|
// NewHandler creates a handler to manage Dockerhub operations.
|
||
|
func NewHandler(bouncer *security.RequestBouncer) *Handler {
|
||
|
h := &Handler{
|
||
|
Router: mux.NewRouter(),
|
||
|
}
|
||
|
h.Handle("/dockerhub",
|
||
|
bouncer.AuthenticatedAccess(httperror.LoggerHandler(h.dockerhubInspect))).Methods(http.MethodGet)
|
||
|
h.Handle("/dockerhub",
|
||
|
bouncer.AdministratorAccess(httperror.LoggerHandler(h.dockerhubUpdate))).Methods(http.MethodPut)
|
||
|
|
||
|
return h
|
||
|
}
|