Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct {
GitHubWebhookGatewayName string `envconfig:"GITHUB_WEBHOOK_GATEWAY_NAME"`
GitHubWebhookSecret string `envconfig:"GITHUB_WEBHOOK_SECRET"`
GitHubWebhookURLPath string `envconfig:"GITHUB_WEBHOOK_URL_PATH"`
KymaEventsService string `envconfig:"EVENTING_SERVICE"` // http://test-gh-connector-app-event-service.kyma-integration:8081/test-gh-connector-app/events
ListenPort string `envconfig:"LISTEN_PORT"`
AppName string `envconfig:"APP_NAME"`
}
Config containing all program configs
type Sender ¶
type Sender interface {
SendToKyma(eventType, sourceID string, data json.RawMessage) apperrors.AppError
}
Sender is an interface used to allow mocking sending events to Kyma's event bus
type WebHookHandler ¶
type WebHookHandler struct {
// contains filtered or unexported fields
}
WebHookHandler is a struct used to allow mocking the github library methods
func NewWebHookHandler ¶
func NewWebHookHandler(v git.Validator, s Sender) *WebHookHandler
NewWebHookHandler creates a new webhook handler with the passed interface
func (*WebHookHandler) HandleWebhook ¶
func (wh *WebHookHandler) HandleWebhook(w http.ResponseWriter, r *http.Request)
HandleWebhook is a function that handles the /webhook endpoint.
Click to show internal directories.
Click to hide internal directories.