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