mirror of https://github.com/harness/drone.git
include system in webhook payload
parent
d25d661c75
commit
8042aa4519
|
@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- sqlite username column changed to case-insensitive, by [@bradrydzewski](https://github.com/bradrydzewski).
|
- sqlite username column changed to case-insensitive, by [@bradrydzewski](https://github.com/bradrydzewski).
|
||||||
- endpoint to purge repository from database, by [@bradrydzewski](https://github.com/bradrydzewski).
|
- endpoint to purge repository from database, by [@bradrydzewski](https://github.com/bradrydzewski).
|
||||||
- support for per-organization secrets, by [@bradrydzewski](https://github.com/bradrydzewski).
|
- support for per-organization secrets, by [@bradrydzewski](https://github.com/bradrydzewski).
|
||||||
|
- include system metadata in global webhooks, by [@bradrydzewski](https://github.com/bradrydzewski).
|
||||||
- update drone-yaml from version 1.0.6 to 1.0.8.
|
- update drone-yaml from version 1.0.6 to 1.0.8.
|
||||||
- update drone-runtime from version 1.0.4 to 1.0.6.
|
- update drone-runtime from version 1.0.4 to 1.0.6.
|
||||||
|
|
||||||
|
|
|
@ -95,9 +95,10 @@ func provideSecretPlugin(config spec.Config) core.SecretService {
|
||||||
|
|
||||||
// provideWebhookPlugin is a Wire provider function that returns
|
// provideWebhookPlugin is a Wire provider function that returns
|
||||||
// a webhook plugin based on the environment configuration.
|
// a webhook plugin based on the environment configuration.
|
||||||
func provideWebhookPlugin(config spec.Config) core.WebhookSender {
|
func provideWebhookPlugin(config spec.Config, system *core.System) core.WebhookSender {
|
||||||
return webhook.New(
|
return webhook.New(webhook.Config{
|
||||||
config.Webhook.Endpoint,
|
Endpoint: config.Webhook.Endpoint,
|
||||||
config.Webhook.Secret,
|
Secret: config.Webhook.Secret,
|
||||||
)
|
System: system,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,10 +56,10 @@ func InitializeApplication(config2 config.Config) (application, error) {
|
||||||
buildStore := provideBuildStore(db)
|
buildStore := provideBuildStore(db)
|
||||||
stageStore := provideStageStore(db)
|
stageStore := provideStageStore(db)
|
||||||
scheduler := provideScheduler(stageStore, config2)
|
scheduler := provideScheduler(stageStore, config2)
|
||||||
webhookSender := provideWebhookPlugin(config2)
|
system := provideSystem(config2)
|
||||||
|
webhookSender := provideWebhookPlugin(config2, system)
|
||||||
triggerer := trigger.New(configService, commitService, statusService, buildStore, scheduler, repositoryStore, userStore, webhookSender)
|
triggerer := trigger.New(configService, commitService, statusService, buildStore, scheduler, repositoryStore, userStore, webhookSender)
|
||||||
cronScheduler := cron2.New(commitService, cronStore, repositoryStore, userStore, triggerer)
|
cronScheduler := cron2.New(commitService, cronStore, repositoryStore, userStore, triggerer)
|
||||||
system := provideSystem(config2)
|
|
||||||
coreLicense := provideLicense(client, config2)
|
coreLicense := provideLicense(client, config2)
|
||||||
datadog := provideDatadog(userStore, repositoryStore, buildStore, system, coreLicense, config2)
|
datadog := provideDatadog(userStore, repositoryStore, buildStore, system, coreLicense, config2)
|
||||||
corePubsub := pubsub.New()
|
corePubsub := pubsub.New()
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
// Copyright 2019 Drone IO, Inc.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
package webhook
|
||||||
|
|
||||||
|
import "github.com/drone/drone/core"
|
||||||
|
|
||||||
|
// Config provides the webhook configuration.
|
||||||
|
type Config struct {
|
||||||
|
Endpoint []string
|
||||||
|
Secret string
|
||||||
|
System *core.System
|
||||||
|
}
|
|
@ -32,29 +32,39 @@ var signer = httpsignatures.NewSigner(
|
||||||
)
|
)
|
||||||
|
|
||||||
// New returns a new Webhook sender.
|
// New returns a new Webhook sender.
|
||||||
func New(endpoints []string, secret string) core.WebhookSender {
|
func New(config Config) core.WebhookSender {
|
||||||
return &sender{
|
return &sender{
|
||||||
Endpoints: endpoints,
|
Endpoints: config.Endpoint,
|
||||||
Secret: secret,
|
Secret: config.Secret,
|
||||||
|
System: config.System,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type payload struct {
|
||||||
|
*core.WebhookData
|
||||||
|
System *core.System `json:"system,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
type sender struct {
|
type sender struct {
|
||||||
Client *http.Client
|
Client *http.Client
|
||||||
Endpoints []string
|
Endpoints []string
|
||||||
Secret string
|
Secret string
|
||||||
|
System *core.System
|
||||||
}
|
}
|
||||||
|
|
||||||
// Send sends the JSON encoded webhook to the global
|
// Send sends the JSON encoded webhook to the global
|
||||||
// HTTP endpoints.
|
// HTTP endpoints.
|
||||||
func (s *sender) Send(ctx context.Context, payload *core.WebhookData) error {
|
func (s *sender) Send(ctx context.Context, in *core.WebhookData) error {
|
||||||
if len(s.Endpoints) == 0 {
|
if len(s.Endpoints) == 0 {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
wrapper := payload{
|
||||||
data, _ := json.Marshal(payload)
|
WebhookData: in,
|
||||||
|
System: s.System,
|
||||||
|
}
|
||||||
|
data, _ := json.Marshal(wrapper)
|
||||||
for _, endpoint := range s.Endpoints {
|
for _, endpoint := range s.Endpoints {
|
||||||
err := s.send(endpoint, s.Secret, payload.Event, data)
|
err := s.send(endpoint, s.Secret, in.Event, data)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,7 +23,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// New returns a no-op Webhook sender.
|
// New returns a no-op Webhook sender.
|
||||||
func New([]string, string) core.WebhookSender {
|
func New(Config) core.WebhookSender {
|
||||||
return new(noop)
|
return new(noop)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -46,7 +46,11 @@ func TestWebhook(t *testing.T) {
|
||||||
Reply(200).
|
Reply(200).
|
||||||
Type("application/json")
|
Type("application/json")
|
||||||
|
|
||||||
sender := New([]string{"https://company.com/hooks"}, "GMEuUHQfmrMRsseWxi9YlIeBtn9lm6im")
|
config := Config{
|
||||||
|
Endpoint: []string{"https://company.com/hooks"},
|
||||||
|
Secret: "GMEuUHQfmrMRsseWxi9YlIeBtn9lm6im",
|
||||||
|
}
|
||||||
|
sender := New(config)
|
||||||
err := sender.Send(noContext, webhook)
|
err := sender.Send(noContext, webhook)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Error(err)
|
t.Error(err)
|
||||||
|
@ -77,7 +81,11 @@ func TestWebhook_NoEndpoints(t *testing.T) {
|
||||||
User: &core.User{Login: "octocat"},
|
User: &core.User{Login: "octocat"},
|
||||||
}
|
}
|
||||||
|
|
||||||
sender := New([]string{}, "correct-horse-battery-staple")
|
config := Config{
|
||||||
|
Endpoint: []string{},
|
||||||
|
Secret: "correct-horse-battery-staple",
|
||||||
|
}
|
||||||
|
sender := New(config)
|
||||||
err := sender.Send(noContext, webhook)
|
err := sender.Send(noContext, webhook)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Error(err)
|
t.Error(err)
|
||||||
|
|
Loading…
Reference in New Issue