2018-10-18 11:23:05 +00:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package base
|
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/models"
|
2020-01-10 09:34:21 +00:00
|
|
|
"code.gitea.io/gitea/modules/repository"
|
2018-10-18 11:23:05 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Notifier defines an interface to notify receiver
|
|
|
|
type Notifier interface {
|
|
|
|
Run()
|
|
|
|
|
|
|
|
NotifyCreateRepository(doer *models.User, u *models.User, repo *models.Repository)
|
|
|
|
NotifyMigrateRepository(doer *models.User, u *models.User, repo *models.Repository)
|
|
|
|
NotifyDeleteRepository(doer *models.User, repo *models.Repository)
|
|
|
|
NotifyForkRepository(doer *models.User, oldRepo, repo *models.Repository)
|
2019-11-15 08:06:11 +00:00
|
|
|
NotifyRenameRepository(doer *models.User, repo *models.Repository, oldRepoName string)
|
|
|
|
NotifyTransferRepository(doer *models.User, repo *models.Repository, oldOwnerName string)
|
2018-10-18 11:23:05 +00:00
|
|
|
|
2021-01-02 17:04:02 +00:00
|
|
|
NotifyNewIssue(issue *models.Issue, mentions []*models.User)
|
2019-12-15 21:57:34 +00:00
|
|
|
NotifyIssueChangeStatus(*models.User, *models.Issue, *models.Comment, bool)
|
2019-11-02 03:33:20 +00:00
|
|
|
NotifyIssueChangeMilestone(doer *models.User, issue *models.Issue, oldMilestoneID int64)
|
2019-10-25 14:46:37 +00:00
|
|
|
NotifyIssueChangeAssignee(doer *models.User, issue *models.Issue, assignee *models.User, removed bool, comment *models.Comment)
|
2020-04-30 20:24:08 +00:00
|
|
|
NotifyPullReviewRequest(doer *models.User, issue *models.Issue, reviewer *models.User, isRequest bool, comment *models.Comment)
|
2018-10-18 11:23:05 +00:00
|
|
|
NotifyIssueChangeContent(doer *models.User, issue *models.Issue, oldContent string)
|
|
|
|
NotifyIssueClearLabels(doer *models.User, issue *models.Issue)
|
|
|
|
NotifyIssueChangeTitle(doer *models.User, issue *models.Issue, oldTitle string)
|
2020-09-08 16:29:51 +00:00
|
|
|
NotifyIssueChangeRef(doer *models.User, issue *models.Issue, oldRef string)
|
2018-10-18 11:23:05 +00:00
|
|
|
NotifyIssueChangeLabels(doer *models.User, issue *models.Issue,
|
|
|
|
addedLabels []*models.Label, removedLabels []*models.Label)
|
|
|
|
|
2021-01-02 17:04:02 +00:00
|
|
|
NotifyNewPullRequest(pr *models.PullRequest, mentions []*models.User)
|
2020-01-16 16:24:20 +00:00
|
|
|
NotifyMergePullRequest(*models.PullRequest, *models.User)
|
2019-11-05 11:04:08 +00:00
|
|
|
NotifyPullRequestSynchronized(doer *models.User, pr *models.PullRequest)
|
2021-01-02 17:04:02 +00:00
|
|
|
NotifyPullRequestReview(pr *models.PullRequest, review *models.Review, comment *models.Comment, mentions []*models.User)
|
|
|
|
NotifyPullRequestCodeComment(pr *models.PullRequest, comment *models.Comment, mentions []*models.User)
|
2019-12-16 06:20:25 +00:00
|
|
|
NotifyPullRequestChangeTargetBranch(doer *models.User, pr *models.PullRequest, oldBranch string)
|
2020-05-20 12:47:24 +00:00
|
|
|
NotifyPullRequestPushCommits(doer *models.User, pr *models.PullRequest, comment *models.Comment)
|
2021-02-11 17:32:25 +00:00
|
|
|
NotifyPullRevieweDismiss(doer *models.User, review *models.Review, comment *models.Comment)
|
2018-10-18 11:23:05 +00:00
|
|
|
|
2021-01-02 17:04:02 +00:00
|
|
|
NotifyCreateIssueComment(doer *models.User, repo *models.Repository,
|
|
|
|
issue *models.Issue, comment *models.Comment, mentions []*models.User)
|
2018-10-18 11:23:05 +00:00
|
|
|
NotifyUpdateComment(*models.User, *models.Comment, string)
|
|
|
|
NotifyDeleteComment(*models.User, *models.Comment)
|
|
|
|
|
|
|
|
NotifyNewRelease(rel *models.Release)
|
|
|
|
NotifyUpdateRelease(doer *models.User, rel *models.Release)
|
|
|
|
NotifyDeleteRelease(doer *models.User, rel *models.Release)
|
2019-11-03 06:59:26 +00:00
|
|
|
|
2020-10-30 21:59:02 +00:00
|
|
|
NotifyPushCommits(pusher *models.User, repo *models.Repository, opts *repository.PushUpdateOptions, commits *repository.PushCommits)
|
2019-11-06 06:43:03 +00:00
|
|
|
NotifyCreateRef(doer *models.User, repo *models.Repository, refType, refFullName string)
|
|
|
|
NotifyDeleteRef(doer *models.User, repo *models.Repository, refType, refFullName string)
|
2019-11-24 05:16:59 +00:00
|
|
|
|
2020-10-30 21:59:02 +00:00
|
|
|
NotifySyncPushCommits(pusher *models.User, repo *models.Repository, opts *repository.PushUpdateOptions, commits *repository.PushCommits)
|
2019-11-24 05:16:59 +00:00
|
|
|
NotifySyncCreateRef(doer *models.User, repo *models.Repository, refType, refFullName string)
|
|
|
|
NotifySyncDeleteRef(doer *models.User, repo *models.Repository, refType, refFullName string)
|
2021-03-01 00:47:30 +00:00
|
|
|
|
|
|
|
NotifyRepoPendingTransfer(doer, newOwner *models.User, repo *models.Repository)
|
2018-10-18 11:23:05 +00:00
|
|
|
}
|