6aa3f8bc29
* Send email to assigned user * Only send mail if enabled * Mail also when assigned through API * Need to refactor functions from models to issue service * Refer to issue index rather than ID * Disable email notifications completly at initalization if global disable * Check of user enbled mail shall be in mail notification function only * Initialize notifications from routers init function. * Use the assigned comment when sending assigned mail * Refactor so that assignees always added as separate step when new issue/pr. * Check error from AddAssignees * Check if user can be assiged to issue or pull request * Missing return * Refactor of CanBeAssigned check. CanBeAssigned shall have same check as UI. * Clarify function names (toggle rather than update/change), and clean up. * Fix review comments. * Flash error if assignees was not added when creating issue/pr * Generate error if assignee users doesn't exist
43 lines
1.8 KiB
Go
43 lines
1.8 KiB
Go
// 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"
|
|
"code.gitea.io/gitea/modules/git"
|
|
)
|
|
|
|
// 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)
|
|
|
|
NotifyNewIssue(*models.Issue)
|
|
NotifyIssueChangeStatus(*models.User, *models.Issue, bool)
|
|
NotifyIssueChangeMilestone(doer *models.User, issue *models.Issue)
|
|
NotifyIssueChangeAssignee(doer *models.User, issue *models.Issue, assignee *models.User, removed bool, comment *models.Comment)
|
|
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)
|
|
NotifyMergePullRequest(*models.PullRequest, *models.User, *git.Repository)
|
|
NotifyPullRequestReview(*models.PullRequest, *models.Review, *models.Comment)
|
|
|
|
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)
|
|
}
|