2018-10-18 16:53:05 +05:30
|
|
|
// 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 15:04:21 +05:30
|
|
|
"code.gitea.io/gitea/modules/repository"
|
2018-10-18 16:53:05 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
// 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 13:36:11 +05:30
|
|
|
NotifyRenameRepository(doer *models.User, repo *models.Repository, oldRepoName string)
|
|
|
|
NotifyTransferRepository(doer *models.User, repo *models.Repository, oldOwnerName string)
|
2018-10-18 16:53:05 +05:30
|
|
|
|
2021-01-02 22:34:02 +05:30
|
|
|
NotifyNewIssue(issue *models.Issue, mentions []*models.User)
|
2019-12-16 03:27:34 +05:30
|
|
|
NotifyIssueChangeStatus(*models.User, *models.Issue, *models.Comment, bool)
|
2019-11-02 09:03:20 +05:30
|
|
|
NotifyIssueChangeMilestone(doer *models.User, issue *models.Issue, oldMilestoneID int64)
|
2019-10-25 20:16:37 +05:30
|
|
|
NotifyIssueChangeAssignee(doer *models.User, issue *models.Issue, assignee *models.User, removed bool, comment *models.Comment)
|
2020-05-01 01:54:08 +05:30
|
|
|
NotifyPullReviewRequest(doer *models.User, issue *models.Issue, reviewer *models.User, isRequest bool, comment *models.Comment)
|
2018-10-18 16:53:05 +05:30
|
|
|
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 21:59:51 +05:30
|
|
|
NotifyIssueChangeRef(doer *models.User, issue *models.Issue, oldRef string)
|
2018-10-18 16:53:05 +05:30
|
|
|
NotifyIssueChangeLabels(doer *models.User, issue *models.Issue,
|
|
|
|
addedLabels []*models.Label, removedLabels []*models.Label)
|
|
|
|
|
2021-01-02 22:34:02 +05:30
|
|
|
NotifyNewPullRequest(pr *models.PullRequest, mentions []*models.User)
|
2020-01-16 21:54:20 +05:30
|
|
|
NotifyMergePullRequest(*models.PullRequest, *models.User)
|
2019-11-05 16:34:08 +05:30
|
|
|
NotifyPullRequestSynchronized(doer *models.User, pr *models.PullRequest)
|
2021-01-02 22:34:02 +05:30
|
|
|
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 11:50:25 +05:30
|
|
|
NotifyPullRequestChangeTargetBranch(doer *models.User, pr *models.PullRequest, oldBranch string)
|
2020-05-20 18:17:24 +05:30
|
|
|
NotifyPullRequestPushCommits(doer *models.User, pr *models.PullRequest, comment *models.Comment)
|
2021-02-11 23:02:25 +05:30
|
|
|
NotifyPullRevieweDismiss(doer *models.User, review *models.Review, comment *models.Comment)
|
2018-10-18 16:53:05 +05:30
|
|
|
|
2021-01-02 22:34:02 +05:30
|
|
|
NotifyCreateIssueComment(doer *models.User, repo *models.Repository,
|
|
|
|
issue *models.Issue, comment *models.Comment, mentions []*models.User)
|
2018-10-18 16:53:05 +05:30
|
|
|
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 12:29:26 +05:30
|
|
|
|
2020-10-31 03:29:02 +05:30
|
|
|
NotifyPushCommits(pusher *models.User, repo *models.Repository, opts *repository.PushUpdateOptions, commits *repository.PushCommits)
|
2019-11-06 12:13:03 +05:30
|
|
|
NotifyCreateRef(doer *models.User, repo *models.Repository, refType, refFullName string)
|
|
|
|
NotifyDeleteRef(doer *models.User, repo *models.Repository, refType, refFullName string)
|
2019-11-24 10:46:59 +05:30
|
|
|
|
2020-10-31 03:29:02 +05:30
|
|
|
NotifySyncPushCommits(pusher *models.User, repo *models.Repository, opts *repository.PushUpdateOptions, commits *repository.PushCommits)
|
2019-11-24 10:46:59 +05:30
|
|
|
NotifySyncCreateRef(doer *models.User, repo *models.Repository, refType, refFullName string)
|
|
|
|
NotifySyncDeleteRef(doer *models.User, repo *models.Repository, refType, refFullName string)
|
2021-03-01 06:17:30 +05:30
|
|
|
|
|
|
|
NotifyRepoPendingTransfer(doer, newOwner *models.User, repo *models.Repository)
|
2018-10-18 16:53:05 +05:30
|
|
|
}
|