mirror of
https://github.com/portainer/portainer.git
synced 2026-06-23 07:00:14 +00:00
43 lines
1.3 KiB
Go
43 lines
1.3 KiB
Go
package gitops
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
portainer "github.com/portainer/portainer/api"
|
|
"github.com/portainer/portainer/api/dataservices"
|
|
"github.com/portainer/portainer/api/http/security"
|
|
"github.com/portainer/portainer/api/kubernetes/cli"
|
|
httperror "github.com/portainer/portainer/pkg/libhttp/error"
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
"github.com/portainer/portainer/api/http/handler/gitops/workflows"
|
|
)
|
|
|
|
// Handler is the HTTP handler used to handle git repo operation
|
|
type Handler struct {
|
|
*mux.Router
|
|
dataStore dataservices.DataStore
|
|
gitService portainer.GitService
|
|
fileService portainer.FileService
|
|
}
|
|
|
|
func NewHandler(bouncer security.BouncerService, dataStore dataservices.DataStore, gitService portainer.GitService, fileService portainer.FileService, k8sFactory *cli.ClientFactory) *Handler {
|
|
h := &Handler{
|
|
Router: mux.NewRouter(),
|
|
dataStore: dataStore,
|
|
gitService: gitService,
|
|
fileService: fileService,
|
|
}
|
|
|
|
authenticatedRouter := h.NewRoute().Subrouter()
|
|
authenticatedRouter.Use(bouncer.AuthenticatedAccess)
|
|
|
|
authenticatedRouter.Handle("/gitops/repo/file/preview", httperror.LoggerHandler(h.gitOperationRepoFilePreview)).Methods(http.MethodPost)
|
|
|
|
workflowsHandler := workflows.NewHandler(dataStore, gitService, k8sFactory)
|
|
authenticatedRouter.PathPrefix("/gitops/workflows").Handler(workflowsHandler)
|
|
|
|
return h
|
|
}
|