From 6fc4cca9fb57d2107c8b1bb7e648e2cba4371a75 Mon Sep 17 00:00:00 2001 From: Tulir Asokan <tulir@maunium.net> Date: Sun, 1 Oct 2017 14:01:16 +0300 Subject: [PATCH] Add support for confidential issues This won't work without go-playground/webhooks#18 --- gitlab-webhook.go | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/gitlab-webhook.go b/gitlab-webhook.go index 7908aca..d5ea117 100644 --- a/gitlab-webhook.go +++ b/gitlab-webhook.go @@ -44,6 +44,7 @@ func startWebhook() func() { hook.RegisterEvents(handlePushEvent, gitlab.PushEvents) hook.RegisterEvents(handleTagEvent, gitlab.TagEvents) hook.RegisterEvents(handleIssueEvent, gitlab.IssuesEvents) + hook.RegisterEvents(handleConfidentialIssueEvent, gitlab.Event("Confidential Issue Hook")) hook.RegisterEvents(handleMergeRequestEvent, gitlab.MergeRequestEvents) hook.RegisterEvents(handleCommentEvent, gitlab.CommentEvents) @@ -140,23 +141,35 @@ func handleTagEvent(payload interface{}, header webhooks.Header) { tag) } +func handleConfidentialIssueEvent(payload interface{}, header webhooks.Header) { + header["X-Confidential-Issue"] = []string{"true"} + handleIssueEvent(payload, header) +} + func handleIssueEvent(payload interface{}, header webhooks.Header) { data := payload.(gitlab.IssueEventPayload) roomID := header["X-Room-Id"][0] room := mxbot.GetRoom(roomID) + confidential := "" + confidentialHeader, _ := header["X-Confidential-Issue"] + if len(confidentialHeader) > 0 && confidentialHeader[0] == "true" { + confidential = "confidential " + } + var action = data.ObjectAttributes.Action - if action == "update" { + if action == "update" || len(action) == 0 { return } else if !strings.HasSuffix(action, "e") { action += "e" } room.SendfHTML( - "[%[1]s/%[2]s] %[3]s %[4]sd issue <a href='%[5]s'>%[6]s (#%[7]d)</a>", + "[%[1]s/%[2]s] %[3]s %[4]sd %[5]sissue <a href='%[6]s'>%[7]s (#%[8]d)</a>", data.Project.Namespace, data.Project.Name, data.User.Name, action, + confidential, data.ObjectAttributes.URL, data.ObjectAttributes.Title, data.ObjectAttributes.IID) -- GitLab