From fbc0a178498fc0eb1ecd29291c5fe4cd3e8b7263 Mon Sep 17 00:00:00 2001 From: gfleury Date: Thu, 5 Mar 2020 13:11:30 -0300 Subject: [PATCH] Adding new contributors --- CONTRIBUTORS | 3 +++ api_response.go | 30 ++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 15268ac..56298fa 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1,5 +1,8 @@ Mark Nielsen +Matthias Preu <5973515+mpreu@users.noreply.github.com> Maxim Sukharev Nikos Katirtzis Ricardo Baptista Stanislav Afanasev +Vittorio Curcio +Yared Ayalew diff --git a/api_response.go b/api_response.go index 1a4d6fc..e04ab27 100644 --- a/api_response.go +++ b/api_response.go @@ -293,6 +293,36 @@ type Webhook struct { Configuration WebhookConfiguration `json:"configuration"` } +// WebHookCallback contains payload to use while reading handling webhooks from bitbucket +type WebHookCallback struct { + Actor Actor `json:"actor"` + Repository Repository `json:"repository"` + Push struct { + Changes []Change `json:"changes"` + } `json:"push"` +} + +// Actor contains the actor of reported changes from a webhook +type Actor struct { + Username string `json:"username"` + DisplayName string `json:"displayName"` +} + +// Change contains changes reported by webhooks +type Change struct { + Created bool `json:"created"` + Closed bool `json:"closed"` + Old interface{} `json:"old"` + New struct { + Type string `json:"type"` + Name string `json:"name"` + Target struct { + Type string `json:"type"` + Hash string `json:"hash"` + } `json:"target"` + } `json:"new"` +} + func (k *SSHKey) String() string { parts := make([]string, 1, 2) parts[0] = strings.TrimSpace(k.Text)