Documentation ¶
Index ¶
Constants ¶
View Source
const ( EventBuild = "build" EventRepo = "repo" EventUser = "user" )
Webhook event types.
View Source
const ( ActionCreated = "created" ActionUpdated = "updated" ActionDeleted = "deleted" ActionEnabled = "enabled" ActionDisabled = "disabled" )
Webhook action types.
View Source
const V1 = "application/vnd.drone.webhook.v1+json"
V1 is version 1 of the admission API
Variables ¶
This section is empty.
Functions ¶
func Handler ¶
Handler returns a http.Handler that accepts JSON-encoded HTTP requests for a webhook, invokes the underlying webhook plugin, and writes the JSON-encoded data to the HTTP response.
The handler verifies the authenticity of the HTTP request using the http-signature, and returns a http.StatusBadRequest Bad Request if the signature is missing or invalid.
The handler can optionally encrypt the response body using aesgcm if the HTTP request includes the Accept-Encoding header set to aesgcm.
Types ¶
type Request ¶
type Request struct { Event string `json:"event"` Action string `json:"action"` User *drone.User `json:"user,omitempty"` Repo *drone.Repo `json:"repo,omitempty"` Build *drone.Build `json:"build,omitempty"` System *drone.System `json:"system,omitempty"` }
Request defines a webhook request.
Click to show internal directories.
Click to hide internal directories.