2019-01-13 07:42:55 -07:00
|
|
|
// Copyright 2019 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"
|
2022-06-13 03:37:59 -06:00
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2022-03-30 02:42:47 -06:00
|
|
|
packages_model "code.gitea.io/gitea/models/packages"
|
2021-12-09 18:27:50 -07:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-24 02:49:20 -07:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2020-01-10 02:34:21 -07:00
|
|
|
"code.gitea.io/gitea/modules/repository"
|
2019-01-13 07:42:55 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
// NullNotifier implements a blank notifier
|
2022-01-20 10:46:10 -07:00
|
|
|
type NullNotifier struct{}
|
2019-01-13 07:42:55 -07:00
|
|
|
|
2022-01-20 10:46:10 -07:00
|
|
|
var _ Notifier = &NullNotifier{}
|
2019-01-13 07:42:55 -07:00
|
|
|
|
|
|
|
// Run places a place holder function
|
|
|
|
func (*NullNotifier) Run() {
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyCreateIssueComment places a place holder function
|
2021-12-09 18:27:50 -07:00
|
|
|
func (*NullNotifier) NotifyCreateIssueComment(doer *user_model.User, repo *repo_model.Repository,
|
2022-06-13 03:37:59 -06:00
|
|
|
issue *issues_model.Issue, comment *issues_model.Comment, mentions []*user_model.User) {
|
2019-01-13 07:42:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyNewIssue places a place holder function
|
2022-06-13 03:37:59 -06:00
|
|
|
func (*NullNotifier) NotifyNewIssue(issue *issues_model.Issue, mentions []*user_model.User) {
|
2019-01-13 07:42:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyIssueChangeStatus places a place holder function
|
2022-06-13 03:37:59 -06:00
|
|
|
func (*NullNotifier) NotifyIssueChangeStatus(doer *user_model.User, issue *issues_model.Issue, actionComment *issues_model.Comment, isClosed bool) {
|
2019-01-13 07:42:55 -07:00
|
|
|
}
|
|
|
|
|
2022-02-28 17:20:15 -07:00
|
|
|
// NotifyDeleteIssue notify when some issue deleted
|
2022-06-13 03:37:59 -06:00
|
|
|
func (*NullNotifier) NotifyDeleteIssue(doer *user_model.User, issue *issues_model.Issue) {
|
2022-02-28 17:20:15 -07:00
|
|
|
}
|
|
|
|
|
2019-01-13 07:42:55 -07:00
|
|
|
// NotifyNewPullRequest places a place holder function
|
2022-06-13 03:37:59 -06:00
|
|
|
func (*NullNotifier) NotifyNewPullRequest(pr *issues_model.PullRequest, mentions []*user_model.User) {
|
2019-01-13 07:42:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyPullRequestReview places a place holder function
|
2022-06-13 03:37:59 -06:00
|
|
|
func (*NullNotifier) NotifyPullRequestReview(pr *issues_model.PullRequest, r *issues_model.Review, comment *issues_model.Comment, mentions []*user_model.User) {
|
2021-01-02 10:04:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyPullRequestCodeComment places a place holder function
|
2022-06-13 03:37:59 -06:00
|
|
|
func (*NullNotifier) NotifyPullRequestCodeComment(pr *issues_model.PullRequest, comment *issues_model.Comment, mentions []*user_model.User) {
|
2019-01-13 07:42:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyMergePullRequest places a place holder function
|
2022-06-13 03:37:59 -06:00
|
|
|
func (*NullNotifier) NotifyMergePullRequest(pr *issues_model.PullRequest, doer *user_model.User) {
|
2019-01-13 07:42:55 -07:00
|
|
|
}
|
|
|
|
|
2019-11-05 04:04:08 -07:00
|
|
|
// NotifyPullRequestSynchronized places a place holder function
|
2022-06-13 03:37:59 -06:00
|
|
|
func (*NullNotifier) NotifyPullRequestSynchronized(doer *user_model.User, pr *issues_model.PullRequest) {
|
2019-11-05 04:04:08 -07:00
|
|
|
}
|
|
|
|
|
2019-12-15 23:20:25 -07:00
|
|
|
// NotifyPullRequestChangeTargetBranch places a place holder function
|
2022-06-13 03:37:59 -06:00
|
|
|
func (*NullNotifier) NotifyPullRequestChangeTargetBranch(doer *user_model.User, pr *issues_model.PullRequest, oldBranch string) {
|
2019-12-15 23:20:25 -07:00
|
|
|
}
|
|
|
|
|
2020-05-20 06:47:24 -06:00
|
|
|
// NotifyPullRequestPushCommits notifies when push commits to pull request's head branch
|
2022-06-13 03:37:59 -06:00
|
|
|
func (*NullNotifier) NotifyPullRequestPushCommits(doer *user_model.User, pr *issues_model.PullRequest, comment *issues_model.Comment) {
|
2020-05-20 06:47:24 -06:00
|
|
|
}
|
|
|
|
|
2021-02-11 10:32:25 -07:00
|
|
|
// NotifyPullRevieweDismiss notifies when a review was dismissed by repo admin
|
2022-06-13 03:37:59 -06:00
|
|
|
func (*NullNotifier) NotifyPullRevieweDismiss(doer *user_model.User, review *issues_model.Review, comment *issues_model.Comment) {
|
2021-02-11 10:32:25 -07:00
|
|
|
}
|
|
|
|
|
2019-01-13 07:42:55 -07:00
|
|
|
// NotifyUpdateComment places a place holder function
|
2022-06-13 03:37:59 -06:00
|
|
|
func (*NullNotifier) NotifyUpdateComment(doer *user_model.User, c *issues_model.Comment, oldContent string) {
|
2019-01-13 07:42:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyDeleteComment places a place holder function
|
2022-06-13 03:37:59 -06:00
|
|
|
func (*NullNotifier) NotifyDeleteComment(doer *user_model.User, c *issues_model.Comment) {
|
2019-01-13 07:42:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyNewRelease places a place holder function
|
|
|
|
func (*NullNotifier) NotifyNewRelease(rel *models.Release) {
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyUpdateRelease places a place holder function
|
2021-11-24 02:49:20 -07:00
|
|
|
func (*NullNotifier) NotifyUpdateRelease(doer *user_model.User, rel *models.Release) {
|
2019-01-13 07:42:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyDeleteRelease places a place holder function
|
2021-11-24 02:49:20 -07:00
|
|
|
func (*NullNotifier) NotifyDeleteRelease(doer *user_model.User, rel *models.Release) {
|
2019-01-13 07:42:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyIssueChangeMilestone places a place holder function
|
2022-06-13 03:37:59 -06:00
|
|
|
func (*NullNotifier) NotifyIssueChangeMilestone(doer *user_model.User, issue *issues_model.Issue, oldMilestoneID int64) {
|
2019-01-13 07:42:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyIssueChangeContent places a place holder function
|
2022-06-13 03:37:59 -06:00
|
|
|
func (*NullNotifier) NotifyIssueChangeContent(doer *user_model.User, issue *issues_model.Issue, oldContent string) {
|
2019-01-13 07:42:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyIssueChangeAssignee places a place holder function
|
2022-06-13 03:37:59 -06:00
|
|
|
func (*NullNotifier) NotifyIssueChangeAssignee(doer *user_model.User, issue *issues_model.Issue, assignee *user_model.User, removed bool, comment *issues_model.Comment) {
|
2019-01-13 07:42:55 -07:00
|
|
|
}
|
|
|
|
|
2020-04-30 14:24:08 -06:00
|
|
|
// NotifyPullReviewRequest places a place holder function
|
2022-06-13 03:37:59 -06:00
|
|
|
func (*NullNotifier) NotifyPullReviewRequest(doer *user_model.User, issue *issues_model.Issue, reviewer *user_model.User, isRequest bool, comment *issues_model.Comment) {
|
2020-04-06 10:33:34 -06:00
|
|
|
}
|
|
|
|
|
2019-01-13 07:42:55 -07:00
|
|
|
// NotifyIssueClearLabels places a place holder function
|
2022-06-13 03:37:59 -06:00
|
|
|
func (*NullNotifier) NotifyIssueClearLabels(doer *user_model.User, issue *issues_model.Issue) {
|
2019-01-13 07:42:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyIssueChangeTitle places a place holder function
|
2022-06-13 03:37:59 -06:00
|
|
|
func (*NullNotifier) NotifyIssueChangeTitle(doer *user_model.User, issue *issues_model.Issue, oldTitle string) {
|
2019-01-13 07:42:55 -07:00
|
|
|
}
|
|
|
|
|
2020-09-08 10:29:51 -06:00
|
|
|
// NotifyIssueChangeRef places a place holder function
|
2022-06-13 03:37:59 -06:00
|
|
|
func (*NullNotifier) NotifyIssueChangeRef(doer *user_model.User, issue *issues_model.Issue, oldTitle string) {
|
2020-09-08 10:29:51 -06:00
|
|
|
}
|
|
|
|
|
2019-01-13 07:42:55 -07:00
|
|
|
// NotifyIssueChangeLabels places a place holder function
|
2022-06-13 03:37:59 -06:00
|
|
|
func (*NullNotifier) NotifyIssueChangeLabels(doer *user_model.User, issue *issues_model.Issue,
|
|
|
|
addedLabels, removedLabels []*issues_model.Label) {
|
2019-01-13 07:42:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyCreateRepository places a place holder function
|
2021-12-19 21:41:31 -07:00
|
|
|
func (*NullNotifier) NotifyCreateRepository(doer, u *user_model.User, repo *repo_model.Repository) {
|
2019-01-13 07:42:55 -07:00
|
|
|
}
|
|
|
|
|
2019-11-15 01:06:11 -07:00
|
|
|
// NotifyDeleteRepository places a place holder function
|
2021-12-09 18:27:50 -07:00
|
|
|
func (*NullNotifier) NotifyDeleteRepository(doer *user_model.User, repo *repo_model.Repository) {
|
2019-11-15 01:06:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyForkRepository places a place holder function
|
2021-12-09 18:27:50 -07:00
|
|
|
func (*NullNotifier) NotifyForkRepository(doer *user_model.User, oldRepo, repo *repo_model.Repository) {
|
2019-11-15 01:06:11 -07:00
|
|
|
}
|
|
|
|
|
2019-01-13 07:42:55 -07:00
|
|
|
// NotifyMigrateRepository places a place holder function
|
2021-12-19 21:41:31 -07:00
|
|
|
func (*NullNotifier) NotifyMigrateRepository(doer, u *user_model.User, repo *repo_model.Repository) {
|
2019-01-13 07:42:55 -07:00
|
|
|
}
|
2019-11-03 00:59:26 -06:00
|
|
|
|
|
|
|
// NotifyPushCommits notifies commits pushed to notifiers
|
2021-12-09 18:27:50 -07:00
|
|
|
func (*NullNotifier) NotifyPushCommits(pusher *user_model.User, repo *repo_model.Repository, opts *repository.PushUpdateOptions, commits *repository.PushCommits) {
|
2019-11-03 00:59:26 -06:00
|
|
|
}
|
2019-11-05 23:43:03 -07:00
|
|
|
|
|
|
|
// NotifyCreateRef notifies branch or tag creation to notifiers
|
2022-01-19 16:26:57 -07:00
|
|
|
func (*NullNotifier) NotifyCreateRef(doer *user_model.User, repo *repo_model.Repository, refType, refFullName, refID string) {
|
2019-11-05 23:43:03 -07:00
|
|
|
}
|
|
|
|
|
2021-07-08 05:38:13 -06:00
|
|
|
// NotifyDeleteRef notifies branch or tag deletion to notifiers
|
2021-12-09 18:27:50 -07:00
|
|
|
func (*NullNotifier) NotifyDeleteRef(doer *user_model.User, repo *repo_model.Repository, refType, refFullName string) {
|
2019-11-05 23:43:03 -07:00
|
|
|
}
|
2019-11-15 01:06:11 -07:00
|
|
|
|
|
|
|
// NotifyRenameRepository places a place holder function
|
2021-12-09 18:27:50 -07:00
|
|
|
func (*NullNotifier) NotifyRenameRepository(doer *user_model.User, repo *repo_model.Repository, oldRepoName string) {
|
2019-11-15 01:06:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyTransferRepository places a place holder function
|
2021-12-09 18:27:50 -07:00
|
|
|
func (*NullNotifier) NotifyTransferRepository(doer *user_model.User, repo *repo_model.Repository, oldOwnerName string) {
|
2019-11-15 01:06:11 -07:00
|
|
|
}
|
2019-11-23 22:16:59 -07:00
|
|
|
|
|
|
|
// NotifySyncPushCommits places a place holder function
|
2021-12-09 18:27:50 -07:00
|
|
|
func (*NullNotifier) NotifySyncPushCommits(pusher *user_model.User, repo *repo_model.Repository, opts *repository.PushUpdateOptions, commits *repository.PushCommits) {
|
2019-11-23 22:16:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotifySyncCreateRef places a place holder function
|
2022-01-19 16:26:57 -07:00
|
|
|
func (*NullNotifier) NotifySyncCreateRef(doer *user_model.User, repo *repo_model.Repository, refType, refFullName, refID string) {
|
2019-11-23 22:16:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotifySyncDeleteRef places a place holder function
|
2021-12-09 18:27:50 -07:00
|
|
|
func (*NullNotifier) NotifySyncDeleteRef(doer *user_model.User, repo *repo_model.Repository, refType, refFullName string) {
|
2019-11-23 22:16:59 -07:00
|
|
|
}
|
2021-02-28 17:47:30 -07:00
|
|
|
|
|
|
|
// NotifyRepoPendingTransfer places a place holder function
|
2021-12-09 18:27:50 -07:00
|
|
|
func (*NullNotifier) NotifyRepoPendingTransfer(doer, newOwner *user_model.User, repo *repo_model.Repository) {
|
2021-02-28 17:47:30 -07:00
|
|
|
}
|
2022-03-30 02:42:47 -06:00
|
|
|
|
|
|
|
// NotifyPackageCreate places a place holder function
|
|
|
|
func (*NullNotifier) NotifyPackageCreate(doer *user_model.User, pd *packages_model.PackageDescriptor) {
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyPackageDelete places a place holder function
|
|
|
|
func (*NullNotifier) NotifyPackageDelete(doer *user_model.User, pd *packages_model.PackageDescriptor) {
|
|
|
|
}
|