From 1ec365de25821ac4450996edaa2c2f7792c800b6 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Fri, 14 Sep 2018 20:02:49 -0400 Subject: [PATCH] repo: trigger webhook when delete branch after merged pull request (#5331) --- gogs.go | 2 +- routes/repo/branch.go | 16 ++++++++++++++-- templates/.VERSION | 2 +- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/gogs.go b/gogs.go index f715a10d9..3d83e2db1 100644 --- a/gogs.go +++ b/gogs.go @@ -16,7 +16,7 @@ import ( "github.com/gogs/gogs/pkg/setting" ) -const APP_VER = "0.11.64.0913" +const APP_VER = "0.11.65.0914" func init() { setting.AppVer = APP_VER diff --git a/routes/repo/branch.go b/routes/repo/branch.go index cd5514b66..072234ce8 100644 --- a/routes/repo/branch.go +++ b/routes/repo/branch.go @@ -10,6 +10,7 @@ import ( log "gopkg.in/clog.v1" "github.com/gogs/git-module" + api "github.com/gogs/go-gogs-client" "github.com/gogs/gogs/models" "github.com/gogs/gogs/pkg/context" @@ -123,7 +124,7 @@ func DeleteBranchPost(c *context.Context) { if len(commitID) > 0 { branchCommitID, err := c.Repo.GitRepo.GetBranchCommitID(branchName) if err != nil { - log.Error(2, "GetBranchCommitID: %v", err) + log.Error(2, "Failed to get commit ID of branch %q: %v", err) return } @@ -136,7 +137,18 @@ func DeleteBranchPost(c *context.Context) { if err := c.Repo.GitRepo.DeleteBranch(branchName, git.DeleteBranchOptions{ Force: true, }); err != nil { - log.Error(2, "DeleteBranch '%s': %v", branchName, err) + log.Error(2, "Failed to delete branch %q: %v", branchName, err) + return + } + + if err := models.PrepareWebhooks(c.Repo.Repository, models.HOOK_EVENT_DELETE, &api.DeletePayload{ + Ref: branchName, + RefType: "branch", + PusherType: api.PUSHER_TYPE_USER, + Repo: c.Repo.Repository.APIFormat(nil), + Sender: c.User.APIFormat(), + }); err != nil { + log.Error(2, "Failed to prepare webhooks for %q: %v", models.HOOK_EVENT_DELETE, err) return } } diff --git a/templates/.VERSION b/templates/.VERSION index e7ecffb71..c6346e167 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.11.64.0913 +0.11.65.0914