mirror of https://github.com/portainer/portainer
				
				
				
			
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
| package webhooks
 | |
| 
 | |
| import (
 | |
| 	"net/http"
 | |
| 
 | |
| 	"github.com/gorilla/mux"
 | |
| 	httperror "github.com/portainer/libhttp/error"
 | |
| 	portainer "github.com/portainer/portainer/api"
 | |
| 	"github.com/portainer/portainer/api/docker"
 | |
| 	"github.com/portainer/portainer/api/http/security"
 | |
| )
 | |
| 
 | |
| // Handler is the HTTP handler used to handle webhook operations.
 | |
| type Handler struct {
 | |
| 	*mux.Router
 | |
| 	DataStore           portainer.DataStore
 | |
| 	DockerClientFactory *docker.ClientFactory
 | |
| }
 | |
| 
 | |
| // NewHandler creates a handler to manage settings operations.
 | |
| func NewHandler(bouncer *security.RequestBouncer) *Handler {
 | |
| 	h := &Handler{
 | |
| 		Router: mux.NewRouter(),
 | |
| 	}
 | |
| 	h.Handle("/webhooks",
 | |
| 		bouncer.AuthenticatedAccess(httperror.LoggerHandler(h.webhookCreate))).Methods(http.MethodPost)
 | |
| 	h.Handle("/webhooks",
 | |
| 		bouncer.AuthenticatedAccess(httperror.LoggerHandler(h.webhookList))).Methods(http.MethodGet)
 | |
| 	h.Handle("/webhooks/{id}",
 | |
| 		bouncer.AuthenticatedAccess(httperror.LoggerHandler(h.webhookDelete))).Methods(http.MethodDelete)
 | |
| 	h.Handle("/webhooks/{token}",
 | |
| 		bouncer.PublicAccess(httperror.LoggerHandler(h.webhookExecute))).Methods(http.MethodPost)
 | |
| 	return h
 | |
| }
 |