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 ui
|
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/models"
|
2021-12-12 21:18:20 +05:30
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-12-10 06:57:50 +05:30
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-24 15:19:20 +05:30
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2020-02-16 05:59:43 +05:30
|
|
|
"code.gitea.io/gitea/modules/graceful"
|
2018-10-18 16:53:05 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/notification/base"
|
2020-02-16 05:59:43 +05:30
|
|
|
"code.gitea.io/gitea/modules/queue"
|
2018-10-18 16:53:05 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
|
|
|
notificationService struct {
|
2019-01-13 20:12:55 +05:30
|
|
|
base.NullNotifier
|
2020-02-16 05:59:43 +05:30
|
|
|
issueQueue queue.Queue
|
2018-10-18 16:53:05 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
issueNotificationOpts struct {
|
2020-02-18 14:22:57 +05:30
|
|
|
IssueID int64
|
|
|
|
CommentID int64
|
|
|
|
NotificationAuthorID int64
|
2020-04-06 22:03:34 +05:30
|
|
|
ReceiverID int64 // 0 -- ALL Watcher
|
2018-10-18 16:53:05 +05:30
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
_ base.Notifier = ¬ificationService{}
|
|
|
|
)
|
|
|
|
|
|
|
|
// NewNotifier create a new notificationService notifier
|
|
|
|
func NewNotifier() base.Notifier {
|
2020-02-16 05:59:43 +05:30
|
|
|
ns := ¬ificationService{}
|
|
|
|
ns.issueQueue = queue.CreateQueue("notification-service", ns.handle, issueNotificationOpts{})
|
|
|
|
return ns
|
2018-10-18 16:53:05 +05:30
|
|
|
}
|
|
|
|
|
2020-02-16 05:59:43 +05:30
|
|
|
func (ns *notificationService) handle(data ...queue.Data) {
|
|
|
|
for _, datum := range data {
|
|
|
|
opts := datum.(issueNotificationOpts)
|
2020-04-06 22:03:34 +05:30
|
|
|
if err := models.CreateOrUpdateIssueNotifications(opts.IssueID, opts.CommentID, opts.NotificationAuthorID, opts.ReceiverID); err != nil {
|
2019-06-13 01:11:28 +05:30
|
|
|
log.Error("Was unable to create issue notification: %v", err)
|
2018-10-18 16:53:05 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-16 05:59:43 +05:30
|
|
|
func (ns *notificationService) Run() {
|
|
|
|
graceful.GetManager().RunWithShutdownFns(ns.issueQueue.Run)
|
|
|
|
}
|
|
|
|
|
2021-12-10 06:57:50 +05:30
|
|
|
func (ns *notificationService) NotifyCreateIssueComment(doer *user_model.User, repo *repo_model.Repository,
|
2021-11-24 15:19:20 +05:30
|
|
|
issue *models.Issue, comment *models.Comment, mentions []*user_model.User) {
|
2019-11-12 14:03:34 +05:30
|
|
|
var opts = issueNotificationOpts{
|
2020-02-18 14:22:57 +05:30
|
|
|
IssueID: issue.ID,
|
|
|
|
NotificationAuthorID: doer.ID,
|
2019-11-12 14:03:34 +05:30
|
|
|
}
|
|
|
|
if comment != nil {
|
2020-02-18 14:22:57 +05:30
|
|
|
opts.CommentID = comment.ID
|
2018-10-18 16:53:05 +05:30
|
|
|
}
|
2020-02-16 05:59:43 +05:30
|
|
|
_ = ns.issueQueue.Push(opts)
|
2021-01-02 22:34:02 +05:30
|
|
|
for _, mention := range mentions {
|
|
|
|
var opts = issueNotificationOpts{
|
|
|
|
IssueID: issue.ID,
|
|
|
|
NotificationAuthorID: doer.ID,
|
|
|
|
ReceiverID: mention.ID,
|
|
|
|
}
|
|
|
|
if comment != nil {
|
|
|
|
opts.CommentID = comment.ID
|
|
|
|
}
|
|
|
|
_ = ns.issueQueue.Push(opts)
|
|
|
|
}
|
2018-10-18 16:53:05 +05:30
|
|
|
}
|
|
|
|
|
2021-11-24 15:19:20 +05:30
|
|
|
func (ns *notificationService) NotifyNewIssue(issue *models.Issue, mentions []*user_model.User) {
|
2020-02-16 05:59:43 +05:30
|
|
|
_ = ns.issueQueue.Push(issueNotificationOpts{
|
2020-02-18 14:22:57 +05:30
|
|
|
IssueID: issue.ID,
|
|
|
|
NotificationAuthorID: issue.Poster.ID,
|
2020-02-16 05:59:43 +05:30
|
|
|
})
|
2021-01-02 22:34:02 +05:30
|
|
|
for _, mention := range mentions {
|
|
|
|
_ = ns.issueQueue.Push(issueNotificationOpts{
|
|
|
|
IssueID: issue.ID,
|
|
|
|
NotificationAuthorID: issue.Poster.ID,
|
|
|
|
ReceiverID: mention.ID,
|
|
|
|
})
|
|
|
|
}
|
2018-10-18 16:53:05 +05:30
|
|
|
}
|
|
|
|
|
2021-11-24 15:19:20 +05:30
|
|
|
func (ns *notificationService) NotifyIssueChangeStatus(doer *user_model.User, issue *models.Issue, actionComment *models.Comment, isClosed bool) {
|
2020-02-16 05:59:43 +05:30
|
|
|
_ = ns.issueQueue.Push(issueNotificationOpts{
|
2020-02-18 14:22:57 +05:30
|
|
|
IssueID: issue.ID,
|
|
|
|
NotificationAuthorID: doer.ID,
|
2020-02-16 05:59:43 +05:30
|
|
|
})
|
2018-10-18 16:53:05 +05:30
|
|
|
}
|
|
|
|
|
2021-11-24 15:19:20 +05:30
|
|
|
func (ns *notificationService) NotifyIssueChangeTitle(doer *user_model.User, issue *models.Issue, oldTitle string) {
|
2021-06-23 09:44:22 +05:30
|
|
|
if err := issue.LoadPullRequest(); err != nil {
|
|
|
|
log.Error("issue.LoadPullRequest: %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if issue.IsPull && models.HasWorkInProgressPrefix(oldTitle) && !issue.PullRequest.IsWorkInProgress() {
|
|
|
|
_ = ns.issueQueue.Push(issueNotificationOpts{
|
|
|
|
IssueID: issue.ID,
|
|
|
|
NotificationAuthorID: doer.ID,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-24 15:19:20 +05:30
|
|
|
func (ns *notificationService) NotifyMergePullRequest(pr *models.PullRequest, doer *user_model.User) {
|
2020-02-16 05:59:43 +05:30
|
|
|
_ = ns.issueQueue.Push(issueNotificationOpts{
|
2020-02-18 14:22:57 +05:30
|
|
|
IssueID: pr.Issue.ID,
|
|
|
|
NotificationAuthorID: doer.ID,
|
2020-02-16 05:59:43 +05:30
|
|
|
})
|
2018-10-18 16:53:05 +05:30
|
|
|
}
|
|
|
|
|
2021-11-24 15:19:20 +05:30
|
|
|
func (ns *notificationService) NotifyNewPullRequest(pr *models.PullRequest, mentions []*user_model.User) {
|
2020-02-16 05:59:43 +05:30
|
|
|
if err := pr.LoadIssue(); err != nil {
|
|
|
|
log.Error("Unable to load issue: %d for pr: %d: Error: %v", pr.IssueID, pr.ID, err)
|
|
|
|
return
|
|
|
|
}
|
2021-06-23 09:44:22 +05:30
|
|
|
toNotify := make(map[int64]struct{}, 32)
|
2021-12-12 21:18:20 +05:30
|
|
|
repoWatchers, err := repo_model.GetRepoWatchersIDs(db.DefaultContext, pr.Issue.RepoID)
|
2021-06-23 09:44:22 +05:30
|
|
|
if err != nil {
|
|
|
|
log.Error("GetRepoWatchersIDs: %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
for _, id := range repoWatchers {
|
|
|
|
toNotify[id] = struct{}{}
|
|
|
|
}
|
|
|
|
issueParticipants, err := models.GetParticipantsIDsByIssueID(pr.IssueID)
|
|
|
|
if err != nil {
|
|
|
|
log.Error("GetParticipantsIDsByIssueID: %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
for _, id := range issueParticipants {
|
|
|
|
toNotify[id] = struct{}{}
|
|
|
|
}
|
|
|
|
delete(toNotify, pr.Issue.PosterID)
|
2021-01-02 22:34:02 +05:30
|
|
|
for _, mention := range mentions {
|
2021-06-23 09:44:22 +05:30
|
|
|
toNotify[mention.ID] = struct{}{}
|
|
|
|
}
|
|
|
|
for receiverID := range toNotify {
|
2021-01-02 22:34:02 +05:30
|
|
|
_ = ns.issueQueue.Push(issueNotificationOpts{
|
|
|
|
IssueID: pr.Issue.ID,
|
|
|
|
NotificationAuthorID: pr.Issue.PosterID,
|
2021-06-23 09:44:22 +05:30
|
|
|
ReceiverID: receiverID,
|
2021-01-02 22:34:02 +05:30
|
|
|
})
|
|
|
|
}
|
2018-10-18 16:53:05 +05:30
|
|
|
}
|
|
|
|
|
2021-11-24 15:19:20 +05:30
|
|
|
func (ns *notificationService) NotifyPullRequestReview(pr *models.PullRequest, r *models.Review, c *models.Comment, mentions []*user_model.User) {
|
2019-11-12 14:03:34 +05:30
|
|
|
var opts = issueNotificationOpts{
|
2020-02-18 14:22:57 +05:30
|
|
|
IssueID: pr.Issue.ID,
|
|
|
|
NotificationAuthorID: r.Reviewer.ID,
|
2019-11-12 14:03:34 +05:30
|
|
|
}
|
|
|
|
if c != nil {
|
2020-02-18 14:22:57 +05:30
|
|
|
opts.CommentID = c.ID
|
2018-10-18 16:53:05 +05:30
|
|
|
}
|
2020-02-16 05:59:43 +05:30
|
|
|
_ = ns.issueQueue.Push(opts)
|
2021-01-02 22:34:02 +05:30
|
|
|
for _, mention := range mentions {
|
|
|
|
var opts = issueNotificationOpts{
|
|
|
|
IssueID: pr.Issue.ID,
|
|
|
|
NotificationAuthorID: r.Reviewer.ID,
|
|
|
|
ReceiverID: mention.ID,
|
|
|
|
}
|
|
|
|
if c != nil {
|
|
|
|
opts.CommentID = c.ID
|
|
|
|
}
|
|
|
|
_ = ns.issueQueue.Push(opts)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-24 15:19:20 +05:30
|
|
|
func (ns *notificationService) NotifyPullRequestCodeComment(pr *models.PullRequest, c *models.Comment, mentions []*user_model.User) {
|
2021-01-02 22:34:02 +05:30
|
|
|
for _, mention := range mentions {
|
|
|
|
_ = ns.issueQueue.Push(issueNotificationOpts{
|
|
|
|
IssueID: pr.Issue.ID,
|
|
|
|
NotificationAuthorID: c.Poster.ID,
|
|
|
|
CommentID: c.ID,
|
|
|
|
ReceiverID: mention.ID,
|
|
|
|
})
|
|
|
|
}
|
2018-10-18 16:53:05 +05:30
|
|
|
}
|
2020-04-06 22:03:34 +05:30
|
|
|
|
2021-11-24 15:19:20 +05:30
|
|
|
func (ns *notificationService) NotifyPullRequestPushCommits(doer *user_model.User, pr *models.PullRequest, comment *models.Comment) {
|
2020-05-20 18:17:24 +05:30
|
|
|
var opts = issueNotificationOpts{
|
|
|
|
IssueID: pr.IssueID,
|
|
|
|
NotificationAuthorID: doer.ID,
|
|
|
|
CommentID: comment.ID,
|
|
|
|
}
|
|
|
|
_ = ns.issueQueue.Push(opts)
|
|
|
|
}
|
|
|
|
|
2021-11-24 15:19:20 +05:30
|
|
|
func (ns *notificationService) NotifyPullRevieweDismiss(doer *user_model.User, review *models.Review, comment *models.Comment) {
|
2021-02-11 23:02:25 +05:30
|
|
|
var opts = issueNotificationOpts{
|
|
|
|
IssueID: review.IssueID,
|
|
|
|
NotificationAuthorID: doer.ID,
|
|
|
|
CommentID: comment.ID,
|
|
|
|
}
|
|
|
|
_ = ns.issueQueue.Push(opts)
|
|
|
|
}
|
|
|
|
|
2021-11-24 15:19:20 +05:30
|
|
|
func (ns *notificationService) NotifyIssueChangeAssignee(doer *user_model.User, issue *models.Issue, assignee *user_model.User, removed bool, comment *models.Comment) {
|
2020-04-06 22:03:34 +05:30
|
|
|
if !removed {
|
|
|
|
var opts = issueNotificationOpts{
|
|
|
|
IssueID: issue.ID,
|
|
|
|
NotificationAuthorID: doer.ID,
|
|
|
|
ReceiverID: assignee.ID,
|
|
|
|
}
|
|
|
|
|
|
|
|
if comment != nil {
|
|
|
|
opts.CommentID = comment.ID
|
|
|
|
}
|
|
|
|
|
|
|
|
_ = ns.issueQueue.Push(opts)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-24 15:19:20 +05:30
|
|
|
func (ns *notificationService) NotifyPullReviewRequest(doer *user_model.User, issue *models.Issue, reviewer *user_model.User, isRequest bool, comment *models.Comment) {
|
2020-04-06 22:03:34 +05:30
|
|
|
if isRequest {
|
|
|
|
var opts = issueNotificationOpts{
|
|
|
|
IssueID: issue.ID,
|
|
|
|
NotificationAuthorID: doer.ID,
|
|
|
|
ReceiverID: reviewer.ID,
|
|
|
|
}
|
|
|
|
|
|
|
|
if comment != nil {
|
|
|
|
opts.CommentID = comment.ID
|
|
|
|
}
|
|
|
|
|
|
|
|
_ = ns.issueQueue.Push(opts)
|
|
|
|
}
|
|
|
|
}
|
2021-03-01 06:17:30 +05:30
|
|
|
|
2021-12-10 06:57:50 +05:30
|
|
|
func (ns *notificationService) NotifyRepoPendingTransfer(doer, newOwner *user_model.User, repo *repo_model.Repository) {
|
2021-03-01 06:17:30 +05:30
|
|
|
if err := models.CreateRepoTransferNotification(doer, newOwner, repo); err != nil {
|
|
|
|
log.Error("NotifyRepoPendingTransfer: %v", err)
|
|
|
|
}
|
|
|
|
}
|