2014-05-06 06:22:25 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2017-05-29 12:47:15 +05:30
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2014-05-06 06:22:25 +05:30
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-11-10 10:43:16 +05:30
|
|
|
package webhook
|
2014-05-06 06:22:25 +05:30
|
|
|
|
|
|
|
import (
|
2021-01-27 02:32:42 +05:30
|
|
|
"context"
|
2015-08-27 20:36:14 +05:30
|
|
|
"fmt"
|
2020-12-11 21:34:04 +05:30
|
|
|
"strings"
|
2014-05-06 06:22:25 +05:30
|
|
|
|
2021-09-19 17:19:59 +05:30
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-07-24 21:33:58 +05:30
|
|
|
"code.gitea.io/gitea/modules/json"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
2022-11-03 23:53:20 +05:30
|
|
|
"code.gitea.io/gitea/modules/secret"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-08-15 20:16:21 +05:30
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2021-08-12 18:13:08 +05:30
|
|
|
"code.gitea.io/gitea/modules/util"
|
2019-08-15 20:16:21 +05:30
|
|
|
|
2021-08-12 18:13:08 +05:30
|
|
|
"xorm.io/builder"
|
2014-05-06 06:22:25 +05:30
|
|
|
)
|
|
|
|
|
2021-11-10 10:43:16 +05:30
|
|
|
// ErrWebhookNotExist represents a "WebhookNotExist" kind of error.
|
|
|
|
type ErrWebhookNotExist struct {
|
|
|
|
ID int64
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrWebhookNotExist checks if an error is a ErrWebhookNotExist.
|
|
|
|
func IsErrWebhookNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrWebhookNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrWebhookNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("webhook does not exist [id: %d]", err.ID)
|
|
|
|
}
|
|
|
|
|
2022-10-18 11:20:37 +05:30
|
|
|
func (err ErrWebhookNotExist) Unwrap() error {
|
|
|
|
return util.ErrNotExist
|
|
|
|
}
|
|
|
|
|
2022-01-06 02:30:20 +05:30
|
|
|
// ErrHookTaskNotExist represents a "HookTaskNotExist" kind of error.
|
|
|
|
type ErrHookTaskNotExist struct {
|
2022-10-21 21:51:56 +05:30
|
|
|
TaskID int64
|
2022-01-06 02:30:20 +05:30
|
|
|
HookID int64
|
|
|
|
UUID string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrWebhookNotExist checks if an error is a ErrWebhookNotExist.
|
|
|
|
func IsErrHookTaskNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrHookTaskNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrHookTaskNotExist) Error() string {
|
2022-10-21 21:51:56 +05:30
|
|
|
return fmt.Sprintf("hook task does not exist [task: %d, hook: %d, uuid: %s]", err.TaskID, err.HookID, err.UUID)
|
2022-01-06 02:30:20 +05:30
|
|
|
}
|
|
|
|
|
2022-10-18 11:20:37 +05:30
|
|
|
func (err ErrHookTaskNotExist) Unwrap() error {
|
|
|
|
return util.ErrNotExist
|
|
|
|
}
|
|
|
|
|
2016-11-22 12:12:52 +05:30
|
|
|
// HookContentType is the content type of a web hook
|
2014-06-08 14:15:34 +05:30
|
|
|
type HookContentType int
|
|
|
|
|
2014-05-06 06:22:25 +05:30
|
|
|
const (
|
2016-11-22 12:12:52 +05:30
|
|
|
// ContentTypeJSON is a JSON payload for web hooks
|
2016-11-08 02:28:22 +05:30
|
|
|
ContentTypeJSON HookContentType = iota + 1
|
2016-11-22 12:12:52 +05:30
|
|
|
// ContentTypeForm is an url-encoded form payload for web hook
|
2016-11-07 22:23:22 +05:30
|
|
|
ContentTypeForm
|
2014-05-06 06:22:25 +05:30
|
|
|
)
|
|
|
|
|
2014-11-13 23:27:00 +05:30
|
|
|
var hookContentTypes = map[string]HookContentType{
|
2016-11-08 02:28:22 +05:30
|
|
|
"json": ContentTypeJSON,
|
2016-11-07 22:23:22 +05:30
|
|
|
"form": ContentTypeForm,
|
2014-11-13 23:27:00 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// ToHookContentType returns HookContentType by given name.
|
|
|
|
func ToHookContentType(name string) HookContentType {
|
|
|
|
return hookContentTypes[name]
|
|
|
|
}
|
|
|
|
|
2021-01-27 02:32:42 +05:30
|
|
|
// HookTaskCleanupType is the type of cleanup to perform on hook_task
|
|
|
|
type HookTaskCleanupType int
|
|
|
|
|
|
|
|
const (
|
|
|
|
// OlderThan hook_task rows will be cleaned up by the age of the row
|
|
|
|
OlderThan HookTaskCleanupType = iota
|
|
|
|
// PerWebhook hook_task rows will be cleaned up by leaving the most recent deliveries for each webhook
|
|
|
|
PerWebhook
|
|
|
|
)
|
|
|
|
|
|
|
|
var hookTaskCleanupTypes = map[string]HookTaskCleanupType{
|
|
|
|
"OlderThan": OlderThan,
|
|
|
|
"PerWebhook": PerWebhook,
|
|
|
|
}
|
|
|
|
|
|
|
|
// ToHookTaskCleanupType returns HookTaskCleanupType by given name.
|
|
|
|
func ToHookTaskCleanupType(name string) HookTaskCleanupType {
|
|
|
|
return hookTaskCleanupTypes[name]
|
|
|
|
}
|
|
|
|
|
2016-11-22 12:12:52 +05:30
|
|
|
// Name returns the name of a given web hook's content type
|
2014-11-13 13:02:18 +05:30
|
|
|
func (t HookContentType) Name() string {
|
|
|
|
switch t {
|
2016-11-08 02:28:22 +05:30
|
|
|
case ContentTypeJSON:
|
2014-11-13 13:02:18 +05:30
|
|
|
return "json"
|
2016-11-07 22:23:22 +05:30
|
|
|
case ContentTypeForm:
|
2014-11-13 13:02:18 +05:30
|
|
|
return "form"
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2014-11-13 23:27:00 +05:30
|
|
|
// IsValidHookContentType returns true if given name is a valid hook content type.
|
|
|
|
func IsValidHookContentType(name string) bool {
|
|
|
|
_, ok := hookContentTypes[name]
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
2016-11-22 12:12:52 +05:30
|
|
|
// HookEvents is a set of web hook events
|
2015-08-28 21:06:13 +05:30
|
|
|
type HookEvents struct {
|
2020-03-06 10:40:48 +05:30
|
|
|
Create bool `json:"create"`
|
|
|
|
Delete bool `json:"delete"`
|
|
|
|
Fork bool `json:"fork"`
|
|
|
|
Issues bool `json:"issues"`
|
|
|
|
IssueAssign bool `json:"issue_assign"`
|
|
|
|
IssueLabel bool `json:"issue_label"`
|
|
|
|
IssueMilestone bool `json:"issue_milestone"`
|
|
|
|
IssueComment bool `json:"issue_comment"`
|
|
|
|
Push bool `json:"push"`
|
|
|
|
PullRequest bool `json:"pull_request"`
|
|
|
|
PullRequestAssign bool `json:"pull_request_assign"`
|
|
|
|
PullRequestLabel bool `json:"pull_request_label"`
|
|
|
|
PullRequestMilestone bool `json:"pull_request_milestone"`
|
|
|
|
PullRequestComment bool `json:"pull_request_comment"`
|
|
|
|
PullRequestReview bool `json:"pull_request_review"`
|
|
|
|
PullRequestSync bool `json:"pull_request_sync"`
|
2022-09-05 01:24:23 +05:30
|
|
|
Wiki bool `json:"wiki"`
|
2020-03-06 10:40:48 +05:30
|
|
|
Repository bool `json:"repository"`
|
|
|
|
Release bool `json:"release"`
|
2022-03-30 14:12:47 +05:30
|
|
|
Package bool `json:"package"`
|
2015-08-28 21:06:13 +05:30
|
|
|
}
|
|
|
|
|
2014-06-08 14:15:34 +05:30
|
|
|
// HookEvent represents events that will delivery hook.
|
2014-05-06 06:22:25 +05:30
|
|
|
type HookEvent struct {
|
2019-09-09 11:18:21 +05:30
|
|
|
PushOnly bool `json:"push_only"`
|
|
|
|
SendEverything bool `json:"send_everything"`
|
|
|
|
ChooseEvents bool `json:"choose_events"`
|
|
|
|
BranchFilter string `json:"branch_filter"`
|
2015-08-28 21:06:13 +05:30
|
|
|
|
|
|
|
HookEvents `json:"events"`
|
2014-05-06 06:22:25 +05:30
|
|
|
}
|
|
|
|
|
2021-06-28 00:51:09 +05:30
|
|
|
// HookType is the type of a webhook
|
|
|
|
type HookType = string
|
|
|
|
|
|
|
|
// Types of webhooks
|
|
|
|
const (
|
2021-07-23 10:11:27 +05:30
|
|
|
GITEA HookType = "gitea"
|
|
|
|
GOGS HookType = "gogs"
|
|
|
|
SLACK HookType = "slack"
|
|
|
|
DISCORD HookType = "discord"
|
|
|
|
DINGTALK HookType = "dingtalk"
|
|
|
|
TELEGRAM HookType = "telegram"
|
|
|
|
MSTEAMS HookType = "msteams"
|
|
|
|
FEISHU HookType = "feishu"
|
|
|
|
MATRIX HookType = "matrix"
|
|
|
|
WECHATWORK HookType = "wechatwork"
|
2022-01-23 19:16:30 +05:30
|
|
|
PACKAGIST HookType = "packagist"
|
2021-06-28 00:51:09 +05:30
|
|
|
)
|
|
|
|
|
2016-11-22 12:12:52 +05:30
|
|
|
// HookStatus is the status of a web hook
|
2015-08-26 19:15:51 +05:30
|
|
|
type HookStatus int
|
|
|
|
|
2016-11-22 12:12:52 +05:30
|
|
|
// Possible statuses of a web hook
|
2015-08-26 19:15:51 +05:30
|
|
|
const (
|
2016-11-07 21:38:21 +05:30
|
|
|
HookStatusNone = iota
|
2016-11-07 21:07:32 +05:30
|
|
|
HookStatusSucceed
|
|
|
|
HookStatusFail
|
2015-08-26 19:15:51 +05:30
|
|
|
)
|
|
|
|
|
2014-06-08 14:15:34 +05:30
|
|
|
// Webhook represents a web hook object.
|
2014-05-06 06:22:25 +05:30
|
|
|
type Webhook struct {
|
2020-03-09 03:38:05 +05:30
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
RepoID int64 `xorm:"INDEX"` // An ID of 0 indicates either a default or system webhook
|
|
|
|
OrgID int64 `xorm:"INDEX"`
|
|
|
|
IsSystemWebhook bool
|
|
|
|
URL string `xorm:"url TEXT"`
|
|
|
|
HTTPMethod string `xorm:"http_method"`
|
|
|
|
ContentType HookContentType
|
|
|
|
Secret string `xorm:"TEXT"`
|
|
|
|
Events string `xorm:"TEXT"`
|
|
|
|
*HookEvent `xorm:"-"`
|
2021-06-28 00:51:09 +05:30
|
|
|
IsActive bool `xorm:"INDEX"`
|
|
|
|
Type HookType `xorm:"VARCHAR(16) 'type'"`
|
|
|
|
Meta string `xorm:"TEXT"` // store hook-specific attributes
|
|
|
|
LastStatus HookStatus // Last delivery status
|
2016-03-10 06:23:30 +05:30
|
|
|
|
2022-11-03 23:53:20 +05:30
|
|
|
// HeaderAuthorizationEncrypted should be accessed using HeaderAuthorization() and SetHeaderAuthorization()
|
|
|
|
HeaderAuthorizationEncrypted string `xorm:"TEXT"`
|
|
|
|
|
2019-08-15 20:16:21 +05:30
|
|
|
CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
|
|
|
|
UpdatedUnix timeutil.TimeStamp `xorm:"INDEX updated"`
|
2014-05-06 06:22:25 +05:30
|
|
|
}
|
|
|
|
|
2021-09-19 17:19:59 +05:30
|
|
|
func init() {
|
|
|
|
db.RegisterModel(new(Webhook))
|
|
|
|
}
|
|
|
|
|
2017-10-01 22:22:35 +05:30
|
|
|
// AfterLoad updates the webhook object upon setting a column
|
|
|
|
func (w *Webhook) AfterLoad() {
|
|
|
|
w.HookEvent = &HookEvent{}
|
|
|
|
if err := json.Unmarshal([]byte(w.Events), w.HookEvent); err != nil {
|
2019-04-02 13:18:31 +05:30
|
|
|
log.Error("Unmarshal[%d]: %v", w.ID, err)
|
2014-05-06 06:22:25 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-27 20:36:14 +05:30
|
|
|
// History returns history of webhook by given conditions.
|
|
|
|
func (w *Webhook) History(page int) ([]*HookTask, error) {
|
|
|
|
return HookTasks(w.ID, page)
|
|
|
|
}
|
|
|
|
|
2014-06-08 14:24:52 +05:30
|
|
|
// UpdateEvent handles conversion from HookEvent to Events.
|
2014-06-08 14:15:34 +05:30
|
|
|
func (w *Webhook) UpdateEvent() error {
|
2014-05-06 07:06:08 +05:30
|
|
|
data, err := json.Marshal(w.HookEvent)
|
2014-05-06 06:22:25 +05:30
|
|
|
w.Events = string(data)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-08-28 21:06:13 +05:30
|
|
|
// HasCreateEvent returns true if hook enabled create event.
|
|
|
|
func (w *Webhook) HasCreateEvent() bool {
|
|
|
|
return w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvents.Create)
|
|
|
|
}
|
|
|
|
|
2018-05-16 19:31:55 +05:30
|
|
|
// HasDeleteEvent returns true if hook enabled delete event.
|
|
|
|
func (w *Webhook) HasDeleteEvent() bool {
|
|
|
|
return w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvents.Delete)
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasForkEvent returns true if hook enabled fork event.
|
|
|
|
func (w *Webhook) HasForkEvent() bool {
|
|
|
|
return w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvents.Fork)
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasIssuesEvent returns true if hook enabled issues event.
|
|
|
|
func (w *Webhook) HasIssuesEvent() bool {
|
|
|
|
return w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvents.Issues)
|
|
|
|
}
|
|
|
|
|
2020-03-06 10:40:48 +05:30
|
|
|
// HasIssuesAssignEvent returns true if hook enabled issues assign event.
|
|
|
|
func (w *Webhook) HasIssuesAssignEvent() bool {
|
|
|
|
return w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvents.IssueAssign)
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasIssuesLabelEvent returns true if hook enabled issues label event.
|
|
|
|
func (w *Webhook) HasIssuesLabelEvent() bool {
|
|
|
|
return w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvents.IssueLabel)
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasIssuesMilestoneEvent returns true if hook enabled issues milestone event.
|
|
|
|
func (w *Webhook) HasIssuesMilestoneEvent() bool {
|
|
|
|
return w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvents.IssueMilestone)
|
|
|
|
}
|
|
|
|
|
2018-05-16 19:31:55 +05:30
|
|
|
// HasIssueCommentEvent returns true if hook enabled issue_comment event.
|
|
|
|
func (w *Webhook) HasIssueCommentEvent() bool {
|
|
|
|
return w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvents.IssueComment)
|
|
|
|
}
|
|
|
|
|
2014-12-07 06:52:48 +05:30
|
|
|
// HasPushEvent returns true if hook enabled push event.
|
2014-05-06 21:20:31 +05:30
|
|
|
func (w *Webhook) HasPushEvent() bool {
|
2015-08-28 21:06:13 +05:30
|
|
|
return w.PushOnly || w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvents.Push)
|
2014-05-06 21:20:31 +05:30
|
|
|
}
|
|
|
|
|
2016-08-14 16:02:24 +05:30
|
|
|
// HasPullRequestEvent returns true if hook enabled pull request event.
|
|
|
|
func (w *Webhook) HasPullRequestEvent() bool {
|
|
|
|
return w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvents.PullRequest)
|
|
|
|
}
|
|
|
|
|
2020-03-06 10:40:48 +05:30
|
|
|
// HasPullRequestAssignEvent returns true if hook enabled pull request assign event.
|
|
|
|
func (w *Webhook) HasPullRequestAssignEvent() bool {
|
|
|
|
return w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvents.PullRequestAssign)
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasPullRequestLabelEvent returns true if hook enabled pull request label event.
|
|
|
|
func (w *Webhook) HasPullRequestLabelEvent() bool {
|
|
|
|
return w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvents.PullRequestLabel)
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasPullRequestMilestoneEvent returns true if hook enabled pull request milestone event.
|
|
|
|
func (w *Webhook) HasPullRequestMilestoneEvent() bool {
|
|
|
|
return w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvents.PullRequestMilestone)
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasPullRequestCommentEvent returns true if hook enabled pull_request_comment event.
|
|
|
|
func (w *Webhook) HasPullRequestCommentEvent() bool {
|
|
|
|
return w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvents.PullRequestComment)
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasPullRequestApprovedEvent returns true if hook enabled pull request review event.
|
|
|
|
func (w *Webhook) HasPullRequestApprovedEvent() bool {
|
|
|
|
return w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvents.PullRequestReview)
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasPullRequestRejectedEvent returns true if hook enabled pull request review event.
|
|
|
|
func (w *Webhook) HasPullRequestRejectedEvent() bool {
|
|
|
|
return w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvents.PullRequestReview)
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasPullRequestReviewCommentEvent returns true if hook enabled pull request review event.
|
|
|
|
func (w *Webhook) HasPullRequestReviewCommentEvent() bool {
|
|
|
|
return w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvents.PullRequestReview)
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasPullRequestSyncEvent returns true if hook enabled pull request sync event.
|
|
|
|
func (w *Webhook) HasPullRequestSyncEvent() bool {
|
|
|
|
return w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvents.PullRequestSync)
|
|
|
|
}
|
|
|
|
|
2022-09-05 01:24:23 +05:30
|
|
|
// HasWikiEvent returns true if hook enabled wiki event.
|
|
|
|
func (w *Webhook) HasWikiEvent() bool {
|
|
|
|
return w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvent.Wiki)
|
|
|
|
}
|
|
|
|
|
2018-05-16 19:31:55 +05:30
|
|
|
// HasReleaseEvent returns if hook enabled release event.
|
|
|
|
func (w *Webhook) HasReleaseEvent() bool {
|
|
|
|
return w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvents.Release)
|
|
|
|
}
|
|
|
|
|
2017-09-03 13:50:24 +05:30
|
|
|
// HasRepositoryEvent returns if hook enabled repository event.
|
|
|
|
func (w *Webhook) HasRepositoryEvent() bool {
|
|
|
|
return w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvents.Repository)
|
|
|
|
}
|
|
|
|
|
2022-03-30 14:12:47 +05:30
|
|
|
// HasPackageEvent returns if hook enabled package event.
|
|
|
|
func (w *Webhook) HasPackageEvent() bool {
|
|
|
|
return w.SendEverything ||
|
|
|
|
(w.ChooseEvents && w.HookEvents.Package)
|
|
|
|
}
|
|
|
|
|
2019-11-02 04:21:22 +05:30
|
|
|
// EventCheckers returns event checkers
|
|
|
|
func (w *Webhook) EventCheckers() []struct {
|
|
|
|
Has func() bool
|
|
|
|
Type HookEventType
|
2018-05-16 19:31:55 +05:30
|
|
|
} {
|
|
|
|
return []struct {
|
2019-11-02 04:21:22 +05:30
|
|
|
Has func() bool
|
|
|
|
Type HookEventType
|
2018-05-16 19:31:55 +05:30
|
|
|
}{
|
|
|
|
{w.HasCreateEvent, HookEventCreate},
|
|
|
|
{w.HasDeleteEvent, HookEventDelete},
|
|
|
|
{w.HasForkEvent, HookEventFork},
|
|
|
|
{w.HasPushEvent, HookEventPush},
|
|
|
|
{w.HasIssuesEvent, HookEventIssues},
|
2020-03-06 10:40:48 +05:30
|
|
|
{w.HasIssuesAssignEvent, HookEventIssueAssign},
|
|
|
|
{w.HasIssuesLabelEvent, HookEventIssueLabel},
|
|
|
|
{w.HasIssuesMilestoneEvent, HookEventIssueMilestone},
|
2018-05-16 19:31:55 +05:30
|
|
|
{w.HasIssueCommentEvent, HookEventIssueComment},
|
|
|
|
{w.HasPullRequestEvent, HookEventPullRequest},
|
2020-03-06 10:40:48 +05:30
|
|
|
{w.HasPullRequestAssignEvent, HookEventPullRequestAssign},
|
|
|
|
{w.HasPullRequestLabelEvent, HookEventPullRequestLabel},
|
|
|
|
{w.HasPullRequestMilestoneEvent, HookEventPullRequestMilestone},
|
|
|
|
{w.HasPullRequestCommentEvent, HookEventPullRequestComment},
|
|
|
|
{w.HasPullRequestApprovedEvent, HookEventPullRequestReviewApproved},
|
|
|
|
{w.HasPullRequestRejectedEvent, HookEventPullRequestReviewRejected},
|
|
|
|
{w.HasPullRequestCommentEvent, HookEventPullRequestReviewComment},
|
|
|
|
{w.HasPullRequestSyncEvent, HookEventPullRequestSync},
|
2022-09-05 01:24:23 +05:30
|
|
|
{w.HasWikiEvent, HookEventWiki},
|
2018-05-16 19:31:55 +05:30
|
|
|
{w.HasRepositoryEvent, HookEventRepository},
|
|
|
|
{w.HasReleaseEvent, HookEventRelease},
|
2022-03-30 14:12:47 +05:30
|
|
|
{w.HasPackageEvent, HookEventPackage},
|
2018-05-16 19:31:55 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-22 12:12:52 +05:30
|
|
|
// EventsArray returns an array of hook events
|
2015-08-29 09:19:59 +05:30
|
|
|
func (w *Webhook) EventsArray() []string {
|
2018-05-16 19:31:55 +05:30
|
|
|
events := make([]string, 0, 7)
|
|
|
|
|
2019-11-02 04:21:22 +05:30
|
|
|
for _, c := range w.EventCheckers() {
|
|
|
|
if c.Has() {
|
|
|
|
events = append(events, string(c.Type))
|
2018-05-16 19:31:55 +05:30
|
|
|
}
|
2016-08-25 09:14:58 +05:30
|
|
|
}
|
2015-08-29 09:19:59 +05:30
|
|
|
return events
|
|
|
|
}
|
|
|
|
|
2022-11-03 23:53:20 +05:30
|
|
|
// HeaderAuthorization returns the decrypted Authorization header.
|
|
|
|
// Not on the reference (*w), to be accessible on WebhooksNew.
|
|
|
|
func (w Webhook) HeaderAuthorization() (string, error) {
|
|
|
|
if w.HeaderAuthorizationEncrypted == "" {
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
return secret.DecryptSecret(setting.SecretKey, w.HeaderAuthorizationEncrypted)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetHeaderAuthorization encrypts and sets the Authorization header.
|
|
|
|
func (w *Webhook) SetHeaderAuthorization(cleartext string) error {
|
|
|
|
if cleartext == "" {
|
|
|
|
w.HeaderAuthorizationEncrypted = ""
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
ciphertext, err := secret.EncryptSecret(setting.SecretKey, cleartext)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
w.HeaderAuthorizationEncrypted = ciphertext
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-06-08 14:15:34 +05:30
|
|
|
// CreateWebhook creates a new web hook.
|
2021-11-10 10:43:16 +05:30
|
|
|
func CreateWebhook(ctx context.Context, w *Webhook) error {
|
2020-12-11 21:34:04 +05:30
|
|
|
w.Type = strings.TrimSpace(w.Type)
|
2021-11-10 10:43:16 +05:30
|
|
|
return db.Insert(ctx, w)
|
2014-05-06 06:22:25 +05:30
|
|
|
}
|
|
|
|
|
2022-06-06 13:31:49 +05:30
|
|
|
// CreateWebhooks creates multiple web hooks
|
|
|
|
func CreateWebhooks(ctx context.Context, ws []*Webhook) error {
|
2022-08-04 09:52:50 +05:30
|
|
|
// xorm returns err "no element on slice when insert" for empty slices.
|
|
|
|
if len(ws) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
2022-06-06 13:31:49 +05:30
|
|
|
for i := 0; i < len(ws); i++ {
|
|
|
|
ws[i].Type = strings.TrimSpace(ws[i].Type)
|
|
|
|
}
|
|
|
|
return db.Insert(ctx, ws)
|
|
|
|
}
|
|
|
|
|
2016-07-17 06:03:59 +05:30
|
|
|
// getWebhook uses argument bean as query condition,
|
|
|
|
// ID must be specified and do not assign unnecessary fields.
|
|
|
|
func getWebhook(bean *Webhook) (*Webhook, error) {
|
2021-09-23 21:15:36 +05:30
|
|
|
has, err := db.GetEngine(db.DefaultContext).Get(bean)
|
2014-05-06 07:06:08 +05:30
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else if !has {
|
2016-07-17 06:03:59 +05:30
|
|
|
return nil, ErrWebhookNotExist{bean.ID}
|
2014-05-06 07:06:08 +05:30
|
|
|
}
|
2016-07-17 06:03:59 +05:30
|
|
|
return bean, nil
|
|
|
|
}
|
|
|
|
|
2017-08-30 11:06:52 +05:30
|
|
|
// GetWebhookByID returns webhook of repository by given ID.
|
|
|
|
func GetWebhookByID(id int64) (*Webhook, error) {
|
|
|
|
return getWebhook(&Webhook{
|
|
|
|
ID: id,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-07-17 06:03:59 +05:30
|
|
|
// GetWebhookByRepoID returns webhook of repository by given ID.
|
|
|
|
func GetWebhookByRepoID(repoID, id int64) (*Webhook, error) {
|
|
|
|
return getWebhook(&Webhook{
|
|
|
|
ID: id,
|
|
|
|
RepoID: repoID,
|
|
|
|
})
|
2014-05-06 07:06:08 +05:30
|
|
|
}
|
|
|
|
|
2016-07-15 22:32:55 +05:30
|
|
|
// GetWebhookByOrgID returns webhook of organization by given ID.
|
|
|
|
func GetWebhookByOrgID(orgID, id int64) (*Webhook, error) {
|
2016-07-17 06:03:59 +05:30
|
|
|
return getWebhook(&Webhook{
|
|
|
|
ID: id,
|
|
|
|
OrgID: orgID,
|
|
|
|
})
|
2016-07-15 22:32:55 +05:30
|
|
|
}
|
|
|
|
|
2021-08-12 18:13:08 +05:30
|
|
|
// ListWebhookOptions are options to filter webhooks on ListWebhooksByOpts
|
|
|
|
type ListWebhookOptions struct {
|
2021-09-24 17:02:56 +05:30
|
|
|
db.ListOptions
|
2021-08-12 18:13:08 +05:30
|
|
|
RepoID int64
|
|
|
|
OrgID int64
|
|
|
|
IsActive util.OptionalBool
|
2017-09-03 13:50:24 +05:30
|
|
|
}
|
|
|
|
|
2021-08-12 18:13:08 +05:30
|
|
|
func (opts *ListWebhookOptions) toCond() builder.Cond {
|
|
|
|
cond := builder.NewCond()
|
|
|
|
if opts.RepoID != 0 {
|
|
|
|
cond = cond.And(builder.Eq{"webhook.repo_id": opts.RepoID})
|
|
|
|
}
|
|
|
|
if opts.OrgID != 0 {
|
|
|
|
cond = cond.And(builder.Eq{"webhook.org_id": opts.OrgID})
|
|
|
|
}
|
|
|
|
if !opts.IsActive.IsNone() {
|
|
|
|
cond = cond.And(builder.Eq{"webhook.is_active": opts.IsActive.IsTrue()})
|
2020-01-25 00:30:29 +05:30
|
|
|
}
|
2021-08-12 18:13:08 +05:30
|
|
|
return cond
|
|
|
|
}
|
2020-01-25 00:30:29 +05:30
|
|
|
|
2022-05-20 19:38:52 +05:30
|
|
|
// ListWebhooksByOpts return webhooks based on options
|
|
|
|
func ListWebhooksByOpts(ctx context.Context, opts *ListWebhookOptions) ([]*Webhook, error) {
|
|
|
|
sess := db.GetEngine(ctx).Where(opts.toCond())
|
2020-01-25 00:30:29 +05:30
|
|
|
|
2021-08-12 18:13:08 +05:30
|
|
|
if opts.Page != 0 {
|
2021-09-24 17:02:56 +05:30
|
|
|
sess = db.SetSessionPagination(sess, opts)
|
2021-08-12 18:13:08 +05:30
|
|
|
webhooks := make([]*Webhook, 0, opts.PageSize)
|
|
|
|
err := sess.Find(&webhooks)
|
|
|
|
return webhooks, err
|
|
|
|
}
|
2014-05-06 07:06:08 +05:30
|
|
|
|
2021-08-12 18:13:08 +05:30
|
|
|
webhooks := make([]*Webhook, 0, 10)
|
|
|
|
err := sess.Find(&webhooks)
|
|
|
|
return webhooks, err
|
2017-09-03 13:50:24 +05:30
|
|
|
}
|
|
|
|
|
2021-08-12 18:13:08 +05:30
|
|
|
// CountWebhooksByOpts count webhooks based on options and ignore pagination
|
|
|
|
func CountWebhooksByOpts(opts *ListWebhookOptions) (int64, error) {
|
2021-09-23 21:15:36 +05:30
|
|
|
return db.GetEngine(db.DefaultContext).Where(opts.toCond()).Count(&Webhook{})
|
2017-01-25 16:07:35 +05:30
|
|
|
}
|
|
|
|
|
2019-03-19 08:03:20 +05:30
|
|
|
// GetDefaultWebhooks returns all admin-default webhooks.
|
2022-05-20 19:38:52 +05:30
|
|
|
func GetDefaultWebhooks(ctx context.Context) ([]*Webhook, error) {
|
2019-03-19 08:03:20 +05:30
|
|
|
webhooks := make([]*Webhook, 0, 5)
|
2021-11-10 10:43:16 +05:30
|
|
|
return webhooks, db.GetEngine(ctx).
|
2020-03-09 03:38:05 +05:30
|
|
|
Where("repo_id=? AND org_id=? AND is_system_webhook=?", 0, 0, false).
|
|
|
|
Find(&webhooks)
|
|
|
|
}
|
|
|
|
|
2021-01-15 04:54:03 +05:30
|
|
|
// GetSystemOrDefaultWebhook returns admin system or default webhook by given ID.
|
|
|
|
func GetSystemOrDefaultWebhook(id int64) (*Webhook, error) {
|
2020-03-09 03:38:05 +05:30
|
|
|
webhook := &Webhook{ID: id}
|
2021-09-23 21:15:36 +05:30
|
|
|
has, err := db.GetEngine(db.DefaultContext).
|
2021-01-15 04:54:03 +05:30
|
|
|
Where("repo_id=? AND org_id=?", 0, 0).
|
2020-03-09 03:38:05 +05:30
|
|
|
Get(webhook)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else if !has {
|
|
|
|
return nil, ErrWebhookNotExist{id}
|
|
|
|
}
|
|
|
|
return webhook, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetSystemWebhooks returns all admin system webhooks.
|
2022-05-20 19:38:52 +05:30
|
|
|
func GetSystemWebhooks(ctx context.Context, isActive util.OptionalBool) ([]*Webhook, error) {
|
2020-03-09 03:38:05 +05:30
|
|
|
webhooks := make([]*Webhook, 0, 5)
|
2022-03-28 08:47:21 +05:30
|
|
|
if isActive.IsNone() {
|
2022-05-20 19:38:52 +05:30
|
|
|
return webhooks, db.GetEngine(ctx).
|
2022-03-28 08:47:21 +05:30
|
|
|
Where("repo_id=? AND org_id=? AND is_system_webhook=?", 0, 0, true).
|
|
|
|
Find(&webhooks)
|
|
|
|
}
|
2022-05-20 19:38:52 +05:30
|
|
|
return webhooks, db.GetEngine(ctx).
|
2022-03-28 08:47:21 +05:30
|
|
|
Where("repo_id=? AND org_id=? AND is_system_webhook=? AND is_active = ?", 0, 0, true, isActive.IsTrue()).
|
2019-03-19 08:03:20 +05:30
|
|
|
Find(&webhooks)
|
|
|
|
}
|
|
|
|
|
2014-06-08 14:15:34 +05:30
|
|
|
// UpdateWebhook updates information of webhook.
|
|
|
|
func UpdateWebhook(w *Webhook) error {
|
2021-09-23 21:15:36 +05:30
|
|
|
_, err := db.GetEngine(db.DefaultContext).ID(w.ID).AllCols().Update(w)
|
2014-06-08 14:15:34 +05:30
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-08-30 11:06:52 +05:30
|
|
|
// UpdateWebhookLastStatus updates last status of webhook.
|
|
|
|
func UpdateWebhookLastStatus(w *Webhook) error {
|
2021-09-23 21:15:36 +05:30
|
|
|
_, err := db.GetEngine(db.DefaultContext).ID(w.ID).Cols("last_status").Update(w)
|
2017-08-30 11:06:52 +05:30
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-07-17 06:03:59 +05:30
|
|
|
// deleteWebhook uses argument bean as query condition,
|
|
|
|
// ID must be specified and do not assign unnecessary fields.
|
|
|
|
func deleteWebhook(bean *Webhook) (err error) {
|
2022-11-13 01:48:50 +05:30
|
|
|
ctx, committer, err := db.TxContext(db.DefaultContext)
|
2021-11-21 21:11:00 +05:30
|
|
|
if err != nil {
|
2015-08-26 19:15:51 +05:30
|
|
|
return err
|
|
|
|
}
|
2021-11-21 21:11:00 +05:30
|
|
|
defer committer.Close()
|
2015-08-26 19:15:51 +05:30
|
|
|
|
2021-11-21 21:11:00 +05:30
|
|
|
if count, err := db.DeleteByBean(ctx, bean); err != nil {
|
2015-08-26 19:15:51 +05:30
|
|
|
return err
|
2017-01-14 07:44:48 +05:30
|
|
|
} else if count == 0 {
|
|
|
|
return ErrWebhookNotExist{ID: bean.ID}
|
2021-11-21 21:11:00 +05:30
|
|
|
} else if _, err = db.DeleteByBean(ctx, &HookTask{HookID: bean.ID}); err != nil {
|
2015-08-26 19:15:51 +05:30
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-21 21:11:00 +05:30
|
|
|
return committer.Commit()
|
2014-05-06 07:06:08 +05:30
|
|
|
}
|
2014-06-08 14:15:34 +05:30
|
|
|
|
2016-07-17 06:03:59 +05:30
|
|
|
// DeleteWebhookByRepoID deletes webhook of repository by given ID.
|
2016-07-23 17:54:44 +05:30
|
|
|
func DeleteWebhookByRepoID(repoID, id int64) error {
|
2016-07-17 06:03:59 +05:30
|
|
|
return deleteWebhook(&Webhook{
|
|
|
|
ID: id,
|
|
|
|
RepoID: repoID,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteWebhookByOrgID deletes webhook of organization by given ID.
|
2016-07-23 17:54:44 +05:30
|
|
|
func DeleteWebhookByOrgID(orgID, id int64) error {
|
2016-07-17 06:03:59 +05:30
|
|
|
return deleteWebhook(&Webhook{
|
|
|
|
ID: id,
|
|
|
|
OrgID: orgID,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-03-09 03:38:05 +05:30
|
|
|
// DeleteDefaultSystemWebhook deletes an admin-configured default or system webhook (where Org and Repo ID both 0)
|
|
|
|
func DeleteDefaultSystemWebhook(id int64) error {
|
2022-11-13 01:48:50 +05:30
|
|
|
ctx, committer, err := db.TxContext(db.DefaultContext)
|
2021-11-21 21:11:00 +05:30
|
|
|
if err != nil {
|
2019-03-19 08:03:20 +05:30
|
|
|
return err
|
|
|
|
}
|
2021-11-21 21:11:00 +05:30
|
|
|
defer committer.Close()
|
2019-03-19 08:03:20 +05:30
|
|
|
|
2021-11-21 21:11:00 +05:30
|
|
|
count, err := db.GetEngine(ctx).
|
2019-03-19 08:03:20 +05:30
|
|
|
Where("repo_id=? AND org_id=?", 0, 0).
|
|
|
|
Delete(&Webhook{ID: id})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
} else if count == 0 {
|
|
|
|
return ErrWebhookNotExist{ID: id}
|
|
|
|
}
|
|
|
|
|
2021-11-21 21:11:00 +05:30
|
|
|
if _, err := db.DeleteByBean(ctx, &HookTask{HookID: id}); err != nil {
|
2019-03-19 08:03:20 +05:30
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-21 21:11:00 +05:30
|
|
|
return committer.Commit()
|
2019-03-19 08:03:20 +05:30
|
|
|
}
|
|
|
|
|
2021-11-10 10:43:16 +05:30
|
|
|
// CopyDefaultWebhooksToRepo creates copies of the default webhooks in a new repo
|
|
|
|
func CopyDefaultWebhooksToRepo(ctx context.Context, repoID int64) error {
|
2022-05-20 19:38:52 +05:30
|
|
|
ws, err := GetDefaultWebhooks(ctx)
|
2019-03-19 08:03:20 +05:30
|
|
|
if err != nil {
|
2022-10-25 00:59:17 +05:30
|
|
|
return fmt.Errorf("GetDefaultWebhooks: %w", err)
|
2019-03-19 08:03:20 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
for _, w := range ws {
|
|
|
|
w.ID = 0
|
|
|
|
w.RepoID = repoID
|
2021-11-10 10:43:16 +05:30
|
|
|
if err := CreateWebhook(ctx, w); err != nil {
|
2022-10-25 00:59:17 +05:30
|
|
|
return fmt.Errorf("CreateWebhook: %w", err)
|
2019-03-19 08:03:20 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|