2018-10-18 05:23:05 -06:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2016-12-30 09:44:54 -07:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package notification
|
|
|
|
|
|
|
|
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"
|
2019-11-03 13:59:09 -07:00
|
|
|
"code.gitea.io/gitea/modules/notification/action"
|
2018-10-18 05:23:05 -06:00
|
|
|
"code.gitea.io/gitea/modules/notification/base"
|
2019-01-17 07:23:22 -07:00
|
|
|
"code.gitea.io/gitea/modules/notification/indexer"
|
2019-01-13 07:42:55 -07:00
|
|
|
"code.gitea.io/gitea/modules/notification/mail"
|
2018-10-18 05:23:05 -06:00
|
|
|
"code.gitea.io/gitea/modules/notification/ui"
|
2019-10-14 23:03:05 -06:00
|
|
|
"code.gitea.io/gitea/modules/notification/webhook"
|
2020-01-10 02:34:21 -07:00
|
|
|
"code.gitea.io/gitea/modules/repository"
|
2019-10-25 08:46:37 -06:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2016-12-30 09:44:54 -07:00
|
|
|
)
|
|
|
|
|
2022-01-20 10:46:10 -07:00
|
|
|
var notifiers []base.Notifier
|
2018-10-18 05:23:05 -06:00
|
|
|
|
|
|
|
// RegisterNotifier providers method to receive notify messages
|
|
|
|
func RegisterNotifier(notifier base.Notifier) {
|
|
|
|
go notifier.Run()
|
|
|
|
notifiers = append(notifiers, notifier)
|
|
|
|
}
|
|
|
|
|
2019-10-25 08:46:37 -06:00
|
|
|
// NewContext registers notification handlers
|
|
|
|
func NewContext() {
|
2018-10-18 05:23:05 -06:00
|
|
|
RegisterNotifier(ui.NewNotifier())
|
2019-10-25 08:46:37 -06:00
|
|
|
if setting.Service.EnableNotifyMail {
|
|
|
|
RegisterNotifier(mail.NewNotifier())
|
|
|
|
}
|
2019-01-17 07:23:22 -07:00
|
|
|
RegisterNotifier(indexer.NewNotifier())
|
2019-10-14 23:03:05 -06:00
|
|
|
RegisterNotifier(webhook.NewNotifier())
|
2019-11-03 13:59:09 -07:00
|
|
|
RegisterNotifier(action.NewNotifier())
|
2018-10-18 05:23:05 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyCreateIssueComment notifies issue comment related message to notifiers
|
2021-12-09 18:27:50 -07:00
|
|
|
func 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,
|
2022-02-23 13:16:07 -07:00
|
|
|
) {
|
2018-10-18 05:23:05 -06:00
|
|
|
for _, notifier := range notifiers {
|
2021-01-02 10:04:02 -07:00
|
|
|
notifier.NotifyCreateIssueComment(doer, repo, issue, comment, mentions)
|
2016-12-30 09:44:54 -07:00
|
|
|
}
|
2018-10-18 05:23:05 -06:00
|
|
|
}
|
2016-12-30 09:44:54 -07:00
|
|
|
|
2018-10-18 05:23:05 -06:00
|
|
|
// NotifyNewIssue notifies new issue to notifiers
|
2022-06-13 03:37:59 -06:00
|
|
|
func NotifyNewIssue(issue *issues_model.Issue, mentions []*user_model.User) {
|
2018-10-18 05:23:05 -06:00
|
|
|
for _, notifier := range notifiers {
|
2021-01-02 10:04:02 -07:00
|
|
|
notifier.NotifyNewIssue(issue, mentions)
|
2016-12-30 09:44:54 -07:00
|
|
|
}
|
2018-10-18 05:23:05 -06:00
|
|
|
}
|
2016-12-30 09:44:54 -07:00
|
|
|
|
2018-10-18 05:23:05 -06:00
|
|
|
// NotifyIssueChangeStatus notifies close or reopen issue to notifiers
|
2022-06-13 03:37:59 -06:00
|
|
|
func NotifyIssueChangeStatus(doer *user_model.User, issue *issues_model.Issue, actionComment *issues_model.Comment, closeOrReopen bool) {
|
2018-10-18 05:23:05 -06:00
|
|
|
for _, notifier := range notifiers {
|
2019-12-15 14:57:34 -07:00
|
|
|
notifier.NotifyIssueChangeStatus(doer, issue, actionComment, closeOrReopen)
|
2016-12-30 09:44:54 -07:00
|
|
|
}
|
2018-10-18 05:23:05 -06:00
|
|
|
}
|
2016-12-30 09:44:54 -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 NotifyDeleteIssue(doer *user_model.User, issue *issues_model.Issue) {
|
2022-02-28 17:20:15 -07:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyDeleteIssue(doer, issue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-18 05:23:05 -06:00
|
|
|
// NotifyMergePullRequest notifies merge pull request to notifiers
|
2022-06-13 03:37:59 -06:00
|
|
|
func NotifyMergePullRequest(pr *issues_model.PullRequest, doer *user_model.User) {
|
2018-10-18 05:23:05 -06:00
|
|
|
for _, notifier := range notifiers {
|
2020-01-16 09:24:20 -07:00
|
|
|
notifier.NotifyMergePullRequest(pr, doer)
|
2018-10-18 05:23:05 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyNewPullRequest notifies new pull request to notifiers
|
2022-06-13 03:37:59 -06:00
|
|
|
func NotifyNewPullRequest(pr *issues_model.PullRequest, mentions []*user_model.User) {
|
2018-10-18 05:23:05 -06:00
|
|
|
for _, notifier := range notifiers {
|
2021-01-02 10:04:02 -07:00
|
|
|
notifier.NotifyNewPullRequest(pr, mentions)
|
2018-10-18 05:23:05 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-05 04:04:08 -07:00
|
|
|
// NotifyPullRequestSynchronized notifies Synchronized pull request
|
2022-06-13 03:37:59 -06:00
|
|
|
func NotifyPullRequestSynchronized(doer *user_model.User, pr *issues_model.PullRequest) {
|
2019-11-05 04:04:08 -07:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyPullRequestSynchronized(doer, pr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-18 05:23:05 -06:00
|
|
|
// NotifyPullRequestReview notifies new pull request review
|
2022-06-13 03:37:59 -06:00
|
|
|
func NotifyPullRequestReview(pr *issues_model.PullRequest, review *issues_model.Review, comment *issues_model.Comment, mentions []*user_model.User) {
|
2018-10-18 05:23:05 -06:00
|
|
|
for _, notifier := range notifiers {
|
2021-01-02 10:04:02 -07:00
|
|
|
notifier.NotifyPullRequestReview(pr, review, comment, mentions)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyPullRequestCodeComment notifies new pull request code comment
|
2022-06-13 03:37:59 -06:00
|
|
|
func NotifyPullRequestCodeComment(pr *issues_model.PullRequest, comment *issues_model.Comment, mentions []*user_model.User) {
|
2021-01-02 10:04:02 -07:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyPullRequestCodeComment(pr, comment, mentions)
|
2018-10-18 05:23:05 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-15 23:20:25 -07:00
|
|
|
// NotifyPullRequestChangeTargetBranch notifies when a pull request's target branch was changed
|
2022-06-13 03:37:59 -06:00
|
|
|
func NotifyPullRequestChangeTargetBranch(doer *user_model.User, pr *issues_model.PullRequest, oldBranch string) {
|
2019-12-15 23:20:25 -07:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyPullRequestChangeTargetBranch(doer, pr, oldBranch)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 NotifyPullRequestPushCommits(doer *user_model.User, pr *issues_model.PullRequest, comment *issues_model.Comment) {
|
2020-05-20 06:47:24 -06:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyPullRequestPushCommits(doer, pr, comment)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 NotifyPullRevieweDismiss(doer *user_model.User, review *issues_model.Review, comment *issues_model.Comment) {
|
2021-02-11 10:32:25 -07:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyPullRevieweDismiss(doer, review, comment)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-18 05:23:05 -06:00
|
|
|
// NotifyUpdateComment notifies update comment to notifiers
|
2022-06-13 03:37:59 -06:00
|
|
|
func NotifyUpdateComment(doer *user_model.User, c *issues_model.Comment, oldContent string) {
|
2018-10-18 05:23:05 -06:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyUpdateComment(doer, c, oldContent)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyDeleteComment notifies delete comment to notifiers
|
2022-06-13 03:37:59 -06:00
|
|
|
func NotifyDeleteComment(doer *user_model.User, c *issues_model.Comment) {
|
2018-10-18 05:23:05 -06:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyDeleteComment(doer, c)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyNewRelease notifies new release to notifiers
|
|
|
|
func NotifyNewRelease(rel *models.Release) {
|
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyNewRelease(rel)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyUpdateRelease notifies update release to notifiers
|
2021-11-24 02:49:20 -07:00
|
|
|
func NotifyUpdateRelease(doer *user_model.User, rel *models.Release) {
|
2018-10-18 05:23:05 -06:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyUpdateRelease(doer, rel)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyDeleteRelease notifies delete release to notifiers
|
2021-11-24 02:49:20 -07:00
|
|
|
func NotifyDeleteRelease(doer *user_model.User, rel *models.Release) {
|
2018-10-18 05:23:05 -06:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyDeleteRelease(doer, rel)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyIssueChangeMilestone notifies change milestone to notifiers
|
2022-06-13 03:37:59 -06:00
|
|
|
func NotifyIssueChangeMilestone(doer *user_model.User, issue *issues_model.Issue, oldMilestoneID int64) {
|
2018-10-18 05:23:05 -06:00
|
|
|
for _, notifier := range notifiers {
|
2019-11-01 21:33:20 -06:00
|
|
|
notifier.NotifyIssueChangeMilestone(doer, issue, oldMilestoneID)
|
2018-10-18 05:23:05 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyIssueChangeContent notifies change content to notifiers
|
2022-06-13 03:37:59 -06:00
|
|
|
func NotifyIssueChangeContent(doer *user_model.User, issue *issues_model.Issue, oldContent string) {
|
2018-10-18 05:23:05 -06:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyIssueChangeContent(doer, issue, oldContent)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyIssueChangeAssignee notifies change content to notifiers
|
2022-06-13 03:37:59 -06:00
|
|
|
func NotifyIssueChangeAssignee(doer *user_model.User, issue *issues_model.Issue, assignee *user_model.User, removed bool, comment *issues_model.Comment) {
|
2018-10-18 05:23:05 -06:00
|
|
|
for _, notifier := range notifiers {
|
2019-10-25 08:46:37 -06:00
|
|
|
notifier.NotifyIssueChangeAssignee(doer, issue, assignee, removed, comment)
|
2018-10-18 05:23:05 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-30 14:24:08 -06:00
|
|
|
// NotifyPullReviewRequest notifies Request Review change
|
2022-06-13 03:37:59 -06:00
|
|
|
func 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
|
|
|
for _, notifier := range notifiers {
|
2020-04-30 14:24:08 -06:00
|
|
|
notifier.NotifyPullReviewRequest(doer, issue, reviewer, isRequest, comment)
|
2020-04-06 10:33:34 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-18 05:23:05 -06:00
|
|
|
// NotifyIssueClearLabels notifies clear labels to notifiers
|
2022-06-13 03:37:59 -06:00
|
|
|
func NotifyIssueClearLabels(doer *user_model.User, issue *issues_model.Issue) {
|
2018-10-18 05:23:05 -06:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyIssueClearLabels(doer, issue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyIssueChangeTitle notifies change title to notifiers
|
2022-06-13 03:37:59 -06:00
|
|
|
func NotifyIssueChangeTitle(doer *user_model.User, issue *issues_model.Issue, oldTitle string) {
|
2018-10-18 05:23:05 -06:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyIssueChangeTitle(doer, issue, oldTitle)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-08 10:29:51 -06:00
|
|
|
// NotifyIssueChangeRef notifies change reference to notifiers
|
2022-06-13 03:37:59 -06:00
|
|
|
func NotifyIssueChangeRef(doer *user_model.User, issue *issues_model.Issue, oldRef string) {
|
2020-09-08 10:29:51 -06:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyIssueChangeRef(doer, issue, oldRef)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-18 05:23:05 -06:00
|
|
|
// NotifyIssueChangeLabels notifies change labels to notifiers
|
2022-06-13 03:37:59 -06:00
|
|
|
func NotifyIssueChangeLabels(doer *user_model.User, issue *issues_model.Issue,
|
|
|
|
addedLabels, removedLabels []*issues_model.Label,
|
2022-02-23 13:16:07 -07:00
|
|
|
) {
|
2018-10-18 05:23:05 -06:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyIssueChangeLabels(doer, issue, addedLabels, removedLabels)
|
|
|
|
}
|
2016-12-30 09:44:54 -07:00
|
|
|
}
|
|
|
|
|
2018-10-18 05:23:05 -06:00
|
|
|
// NotifyCreateRepository notifies create repository to notifiers
|
2021-12-19 21:41:31 -07:00
|
|
|
func NotifyCreateRepository(doer, u *user_model.User, repo *repo_model.Repository) {
|
2018-10-18 05:23:05 -06:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyCreateRepository(doer, u, repo)
|
2016-12-30 09:44:54 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-18 05:23:05 -06:00
|
|
|
// NotifyMigrateRepository notifies create repository to notifiers
|
2021-12-19 21:41:31 -07:00
|
|
|
func NotifyMigrateRepository(doer, u *user_model.User, repo *repo_model.Repository) {
|
2018-10-18 05:23:05 -06:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyMigrateRepository(doer, u, repo)
|
2016-12-30 09:44:54 -07:00
|
|
|
}
|
|
|
|
}
|
2019-11-03 00:59:26 -06:00
|
|
|
|
2019-11-15 01:06:11 -07:00
|
|
|
// NotifyTransferRepository notifies create repository to notifiers
|
2021-12-09 18:27:50 -07:00
|
|
|
func NotifyTransferRepository(doer *user_model.User, repo *repo_model.Repository, newOwnerName string) {
|
2019-11-15 01:06:11 -07:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyTransferRepository(doer, repo, newOwnerName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyDeleteRepository notifies delete repository to notifiers
|
2021-12-09 18:27:50 -07:00
|
|
|
func NotifyDeleteRepository(doer *user_model.User, repo *repo_model.Repository) {
|
2019-11-15 01:06:11 -07:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyDeleteRepository(doer, repo)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyForkRepository notifies fork repository to notifiers
|
2021-12-09 18:27:50 -07:00
|
|
|
func NotifyForkRepository(doer *user_model.User, oldRepo, repo *repo_model.Repository) {
|
2019-11-15 01:06:11 -07:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyForkRepository(doer, oldRepo, repo)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyRenameRepository notifies repository renamed
|
2021-12-09 18:27:50 -07:00
|
|
|
func NotifyRenameRepository(doer *user_model.User, repo *repo_model.Repository, oldName string) {
|
2019-11-15 01:06:11 -07:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyRenameRepository(doer, repo, oldName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-03 00:59:26 -06:00
|
|
|
// NotifyPushCommits notifies commits pushed to notifiers
|
2021-12-09 18:27:50 -07:00
|
|
|
func NotifyPushCommits(pusher *user_model.User, repo *repo_model.Repository, opts *repository.PushUpdateOptions, commits *repository.PushCommits) {
|
2019-11-03 00:59:26 -06:00
|
|
|
for _, notifier := range notifiers {
|
2020-10-30 15:59:02 -06:00
|
|
|
notifier.NotifyPushCommits(pusher, repo, opts, commits)
|
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 NotifyCreateRef(pusher *user_model.User, repo *repo_model.Repository, refType, refFullName, refID string) {
|
2019-11-05 23:43:03 -07:00
|
|
|
for _, notifier := range notifiers {
|
2022-01-19 16:26:57 -07:00
|
|
|
notifier.NotifyCreateRef(pusher, repo, refType, refFullName, refID)
|
2019-11-05 23:43:03 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyDeleteRef notifies branch or tag deletion to notifiers
|
2021-12-09 18:27:50 -07:00
|
|
|
func NotifyDeleteRef(pusher *user_model.User, repo *repo_model.Repository, refType, refFullName string) {
|
2019-11-05 23:43:03 -07:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyDeleteRef(pusher, repo, refType, refFullName)
|
|
|
|
}
|
|
|
|
}
|
2019-11-23 22:16:59 -07:00
|
|
|
|
|
|
|
// NotifySyncPushCommits notifies commits pushed to notifiers
|
2021-12-09 18:27:50 -07:00
|
|
|
func NotifySyncPushCommits(pusher *user_model.User, repo *repo_model.Repository, opts *repository.PushUpdateOptions, commits *repository.PushCommits) {
|
2019-11-23 22:16:59 -07:00
|
|
|
for _, notifier := range notifiers {
|
2020-10-30 15:59:02 -06:00
|
|
|
notifier.NotifySyncPushCommits(pusher, repo, opts, commits)
|
2019-11-23 22:16:59 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifySyncCreateRef notifies branch or tag creation to notifiers
|
2022-01-19 16:26:57 -07:00
|
|
|
func NotifySyncCreateRef(pusher *user_model.User, repo *repo_model.Repository, refType, refFullName, refID string) {
|
2019-11-23 22:16:59 -07:00
|
|
|
for _, notifier := range notifiers {
|
2022-01-19 16:26:57 -07:00
|
|
|
notifier.NotifySyncCreateRef(pusher, repo, refType, refFullName, refID)
|
2019-11-23 22:16:59 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifySyncDeleteRef notifies branch or tag deletion to notifiers
|
2021-12-09 18:27:50 -07:00
|
|
|
func NotifySyncDeleteRef(pusher *user_model.User, repo *repo_model.Repository, refType, refFullName string) {
|
2019-11-23 22:16:59 -07:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifySyncDeleteRef(pusher, repo, refType, refFullName)
|
|
|
|
}
|
|
|
|
}
|
2021-02-28 17:47:30 -07:00
|
|
|
|
|
|
|
// NotifyRepoPendingTransfer notifies creation of pending transfer to notifiers
|
2021-12-09 18:27:50 -07:00
|
|
|
func NotifyRepoPendingTransfer(doer, newOwner *user_model.User, repo *repo_model.Repository) {
|
2021-02-28 17:47:30 -07:00
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyRepoPendingTransfer(doer, newOwner, repo)
|
|
|
|
}
|
|
|
|
}
|
2022-03-30 02:42:47 -06:00
|
|
|
|
|
|
|
// NotifyPackageCreate notifies creation of a package to notifiers
|
|
|
|
func NotifyPackageCreate(doer *user_model.User, pd *packages_model.PackageDescriptor) {
|
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyPackageCreate(doer, pd)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyPackageDelete notifies deletion of a package to notifiers
|
|
|
|
func NotifyPackageDelete(doer *user_model.User, pd *packages_model.PackageDescriptor) {
|
|
|
|
for _, notifier := range notifiers {
|
|
|
|
notifier.NotifyPackageDelete(doer, pd)
|
|
|
|
}
|
|
|
|
}
|