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
|
|
|
|
|
|
|
NotifyNewIssue(*models.Issue)
|
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)
|
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)
|
|
|
|
NotifyIssueChangeLabels(doer *models.User, issue *models.Issue,
|
|
|
|
addedLabels []*models.Label, removedLabels []*models.Label)
|
|
|
|
|
|
|
|
NotifyNewPullRequest(*models.PullRequest)
|
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)
|
2018-10-18 16:53:05 +05:30
|
|
|
NotifyPullRequestReview(*models.PullRequest, *models.Review, *models.Comment)
|
2019-12-16 11:50:25 +05:30
|
|
|
NotifyPullRequestChangeTargetBranch(doer *models.User, pr *models.PullRequest, oldBranch string)
|
2018-10-18 16:53:05 +05:30
|
|
|
|
|
|
|
NotifyCreateIssueComment(*models.User, *models.Repository,
|
|
|
|
*models.Issue, *models.Comment)
|
|
|
|
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-01-10 15:04:21 +05:30
|
|
|
NotifyPushCommits(pusher *models.User, repo *models.Repository, refName, oldCommitID, newCommitID string, 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-01-10 15:04:21 +05:30
|
|
|
NotifySyncPushCommits(pusher *models.User, repo *models.Repository, refName, oldCommitID, newCommitID string, 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)
|
2018-10-18 16:53:05 +05:30
|
|
|
}
|