mirror of https://github.com/portainer/portainer
28 lines
665 B
Go
28 lines
665 B
Go
package upload
|
|
|
|
import (
|
|
httperror "github.com/portainer/libhttp/error"
|
|
"github.com/portainer/portainer"
|
|
"github.com/portainer/portainer/http/security"
|
|
|
|
"net/http"
|
|
|
|
"github.com/gorilla/mux"
|
|
)
|
|
|
|
// Handler is the HTTP handler used to handle upload operations.
|
|
type Handler struct {
|
|
*mux.Router
|
|
FileService portainer.FileService
|
|
}
|
|
|
|
// NewHandler creates a handler to manage upload operations.
|
|
func NewHandler(bouncer *security.RequestBouncer) *Handler {
|
|
h := &Handler{
|
|
Router: mux.NewRouter(),
|
|
}
|
|
h.Handle("/upload/tls/{certificate:(?:ca|cert|key)}",
|
|
bouncer.AdministratorAccess(httperror.LoggerHandler(h.uploadTLS))).Methods(http.MethodPost)
|
|
return h
|
|
}
|