2019-09-23 23:02:49 -06:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2016-07-15 10:36:39 -06:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2019-09-23 23:02:49 -06:00
|
|
|
package mailer
|
2016-07-15 10:36:39 -06:00
|
|
|
|
|
|
|
import (
|
2022-01-19 16:26:57 -07:00
|
|
|
"context"
|
2016-07-15 10:36:39 -06:00
|
|
|
"fmt"
|
|
|
|
|
2019-09-23 23:02:49 -06:00
|
|
|
"code.gitea.io/gitea/models"
|
2022-06-13 03:37:59 -06:00
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2021-12-12 08:48:20 -07:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-09 12:57:58 -07:00
|
|
|
"code.gitea.io/gitea/models/unit"
|
2021-11-24 02:49:20 -07:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2021-08-12 01:26:33 -06:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2016-07-15 10:36:39 -06:00
|
|
|
)
|
|
|
|
|
2022-06-13 03:37:59 -06:00
|
|
|
func fallbackMailSubject(issue *issues_model.Issue) string {
|
2019-05-28 03:41:48 -06:00
|
|
|
return fmt.Sprintf("[%s] %s (#%d)", issue.Repo.FullName(), issue.Title, issue.Index)
|
2016-07-15 10:36:39 -06:00
|
|
|
}
|
|
|
|
|
2019-11-18 01:08:20 -07:00
|
|
|
type mailCommentContext struct {
|
2022-01-19 16:26:57 -07:00
|
|
|
context.Context
|
2022-06-13 03:37:59 -06:00
|
|
|
Issue *issues_model.Issue
|
2021-11-24 02:49:20 -07:00
|
|
|
Doer *user_model.User
|
2019-11-18 01:08:20 -07:00
|
|
|
ActionType models.ActionType
|
|
|
|
Content string
|
2022-06-13 03:37:59 -06:00
|
|
|
Comment *issues_model.Comment
|
2019-11-18 01:08:20 -07:00
|
|
|
}
|
|
|
|
|
2021-04-02 04:25:13 -06:00
|
|
|
const (
|
|
|
|
// MailBatchSize set the batch size used in mailIssueCommentBatch
|
|
|
|
MailBatchSize = 100
|
|
|
|
)
|
|
|
|
|
2016-07-15 10:36:39 -06:00
|
|
|
// mailIssueCommentToParticipants can be used for both new issue creation and comment.
|
2017-03-15 19:34:24 -06:00
|
|
|
// This function sends two list of emails:
|
2021-06-22 22:14:22 -06:00
|
|
|
// 1. Repository watchers (except for WIP pull requests) and users who are participated in comments.
|
2017-03-15 19:34:24 -06:00
|
|
|
// 2. Users who are not in 1. but get mentioned in current issue/comment.
|
2021-11-24 02:49:20 -07:00
|
|
|
func mailIssueCommentToParticipants(ctx *mailCommentContext, mentions []*user_model.User) error {
|
2019-11-18 01:08:20 -07:00
|
|
|
// Required by the mail composer; make sure to load these before calling the async function
|
2022-04-08 03:11:15 -06:00
|
|
|
if err := ctx.Issue.LoadRepo(ctx); err != nil {
|
2019-11-18 01:08:20 -07:00
|
|
|
return fmt.Errorf("LoadRepo(): %v", err)
|
2017-03-15 19:34:24 -06:00
|
|
|
}
|
2019-11-18 01:08:20 -07:00
|
|
|
if err := ctx.Issue.LoadPoster(); err != nil {
|
|
|
|
return fmt.Errorf("LoadPoster(): %v", err)
|
|
|
|
}
|
|
|
|
if err := ctx.Issue.LoadPullRequest(); err != nil {
|
|
|
|
return fmt.Errorf("LoadPullRequest(): %v", err)
|
2017-03-15 19:34:24 -06:00
|
|
|
}
|
|
|
|
|
2019-11-18 01:08:20 -07:00
|
|
|
// Enough room to avoid reallocations
|
|
|
|
unfiltered := make([]int64, 1, 64)
|
|
|
|
|
|
|
|
// =========== Original poster ===========
|
|
|
|
unfiltered[0] = ctx.Issue.PosterID
|
|
|
|
|
|
|
|
// =========== Assignees ===========
|
2022-06-13 03:37:59 -06:00
|
|
|
ids, err := issues_model.GetAssigneeIDsByIssue(ctx.Issue.ID)
|
2017-09-15 18:18:25 -06:00
|
|
|
if err != nil {
|
2019-11-18 01:08:20 -07:00
|
|
|
return fmt.Errorf("GetAssigneeIDsByIssue(%d): %v", ctx.Issue.ID, err)
|
2016-07-15 10:36:39 -06:00
|
|
|
}
|
2019-11-18 01:08:20 -07:00
|
|
|
unfiltered = append(unfiltered, ids...)
|
2016-07-15 10:36:39 -06:00
|
|
|
|
2019-11-18 01:08:20 -07:00
|
|
|
// =========== Participants (i.e. commenters, reviewers) ===========
|
2022-06-13 03:37:59 -06:00
|
|
|
ids, err = issues_model.GetParticipantsIDsByIssueID(ctx.Issue.ID)
|
2018-05-09 10:29:04 -06:00
|
|
|
if err != nil {
|
2019-11-18 01:08:20 -07:00
|
|
|
return fmt.Errorf("GetParticipantsIDsByIssueID(%d): %v", ctx.Issue.ID, err)
|
2018-05-09 10:29:04 -06:00
|
|
|
}
|
2019-11-18 01:08:20 -07:00
|
|
|
unfiltered = append(unfiltered, ids...)
|
2018-05-09 10:29:04 -06:00
|
|
|
|
2019-11-18 01:08:20 -07:00
|
|
|
// =========== Issue watchers ===========
|
2022-06-13 03:37:59 -06:00
|
|
|
ids, err = issues_model.GetIssueWatchersIDs(ctx, ctx.Issue.ID, true)
|
2019-11-18 01:08:20 -07:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("GetIssueWatchersIDs(%d): %v", ctx.Issue.ID, err)
|
2017-06-23 07:43:37 -06:00
|
|
|
}
|
2019-11-18 01:08:20 -07:00
|
|
|
unfiltered = append(unfiltered, ids...)
|
2017-06-23 07:43:37 -06:00
|
|
|
|
2019-11-18 01:08:20 -07:00
|
|
|
// =========== Repo watchers ===========
|
|
|
|
// Make repo watchers last, since it's likely the list with the most users
|
2021-06-22 22:14:22 -06:00
|
|
|
if !(ctx.Issue.IsPull && ctx.Issue.PullRequest.IsWorkInProgress() && ctx.ActionType != models.ActionCreatePullRequest) {
|
2022-03-22 09:22:54 -06:00
|
|
|
ids, err = repo_model.GetRepoWatchersIDs(ctx, ctx.Issue.RepoID)
|
2021-06-22 22:14:22 -06:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("GetRepoWatchersIDs(%d): %v", ctx.Issue.RepoID, err)
|
|
|
|
}
|
|
|
|
unfiltered = append(ids, unfiltered...)
|
2016-07-15 10:36:39 -06:00
|
|
|
}
|
2017-03-15 19:34:24 -06:00
|
|
|
|
2019-11-18 01:08:20 -07:00
|
|
|
visited := make(map[int64]bool, len(unfiltered)+len(mentions)+1)
|
2017-05-24 20:38:56 -06:00
|
|
|
|
2019-11-18 01:08:20 -07:00
|
|
|
// Avoid mailing the doer
|
|
|
|
visited[ctx.Doer.ID] = true
|
2021-01-02 10:04:02 -07:00
|
|
|
|
|
|
|
// =========== Mentions ===========
|
|
|
|
if err = mailIssueCommentBatch(ctx, mentions, visited, true); err != nil {
|
|
|
|
return fmt.Errorf("mailIssueCommentBatch() mentions: %v", err)
|
|
|
|
}
|
|
|
|
|
2020-02-27 03:07:05 -07:00
|
|
|
// Avoid mailing explicit unwatched
|
2022-06-13 03:37:59 -06:00
|
|
|
ids, err = issues_model.GetIssueWatchersIDs(ctx, ctx.Issue.ID, false)
|
2020-02-27 03:07:05 -07:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("GetIssueWatchersIDs(%d): %v", ctx.Issue.ID, err)
|
|
|
|
}
|
|
|
|
for _, i := range ids {
|
|
|
|
visited[i] = true
|
|
|
|
}
|
2019-01-29 15:43:40 -07:00
|
|
|
|
2021-11-24 02:49:20 -07:00
|
|
|
unfilteredUsers, err := user_model.GetMaileableUsersByIDs(unfiltered, false)
|
2021-04-02 04:25:13 -06:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err = mailIssueCommentBatch(ctx, unfilteredUsers, visited, false); err != nil {
|
2019-11-18 01:08:20 -07:00
|
|
|
return fmt.Errorf("mailIssueCommentBatch(): %v", err)
|
2018-08-23 22:41:26 -06:00
|
|
|
}
|
2016-07-15 10:36:39 -06:00
|
|
|
|
2019-11-18 01:08:20 -07:00
|
|
|
return nil
|
|
|
|
}
|
2018-08-23 22:41:26 -06:00
|
|
|
|
2021-11-24 02:49:20 -07:00
|
|
|
func mailIssueCommentBatch(ctx *mailCommentContext, users []*user_model.User, visited map[int64]bool, fromMention bool) error {
|
2021-11-09 12:57:58 -07:00
|
|
|
checkUnit := unit.TypeIssues
|
2021-04-02 04:25:13 -06:00
|
|
|
if ctx.Issue.IsPull {
|
2021-11-09 12:57:58 -07:00
|
|
|
checkUnit = unit.TypePullRequests
|
2021-04-02 04:25:13 -06:00
|
|
|
}
|
|
|
|
|
2021-11-24 02:49:20 -07:00
|
|
|
langMap := make(map[string][]*user_model.User)
|
2021-04-02 04:25:13 -06:00
|
|
|
for _, user := range users {
|
2022-03-19 10:20:03 -06:00
|
|
|
if !user.IsActive {
|
|
|
|
// Exclude deactivated users
|
|
|
|
continue
|
|
|
|
}
|
2021-04-02 04:25:13 -06:00
|
|
|
// At this point we exclude:
|
|
|
|
// user that don't have all mails enabled or users only get mail on mention and this is one ...
|
2021-11-24 02:49:20 -07:00
|
|
|
if !(user.EmailNotificationsPreference == user_model.EmailNotificationsEnabled ||
|
|
|
|
fromMention && user.EmailNotificationsPreference == user_model.EmailNotificationsOnMention) {
|
2021-04-02 04:25:13 -06:00
|
|
|
continue
|
2019-11-18 01:08:20 -07:00
|
|
|
}
|
2020-12-03 13:25:49 -07:00
|
|
|
|
2021-04-02 04:25:13 -06:00
|
|
|
// if we have already visited this user we exclude them
|
|
|
|
if _, ok := visited[user.ID]; ok {
|
|
|
|
continue
|
2021-01-09 10:34:08 -07:00
|
|
|
}
|
2021-04-02 04:25:13 -06:00
|
|
|
|
|
|
|
// now mark them as visited
|
|
|
|
visited[user.ID] = true
|
|
|
|
|
|
|
|
// test if this user is allowed to see the issue/pull
|
2022-06-06 02:01:49 -06:00
|
|
|
if !models.CheckRepoUnitUser(ctx, ctx.Issue.Repo, user, checkUnit) {
|
2021-04-02 04:25:13 -06:00
|
|
|
continue
|
2020-12-03 13:25:49 -07:00
|
|
|
}
|
|
|
|
|
2021-05-22 00:47:16 -06:00
|
|
|
langMap[user.Language] = append(langMap[user.Language], user)
|
2021-04-02 04:25:13 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
for lang, receivers := range langMap {
|
|
|
|
// because we know that the len(receivers) > 0 and we don't care about the order particularly
|
|
|
|
// working backwards from the last (possibly) incomplete batch. If len(receivers) can be 0 this
|
|
|
|
// starting condition will need to be changed slightly
|
|
|
|
for i := ((len(receivers) - 1) / MailBatchSize) * MailBatchSize; i >= 0; i -= MailBatchSize {
|
2021-04-19 16:25:08 -06:00
|
|
|
msgs, err := composeIssueCommentMessages(ctx, lang, receivers[i:], fromMention, "issue comments")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
SendAsyncs(msgs)
|
2021-04-02 04:25:13 -06:00
|
|
|
receivers = receivers[:i]
|
2019-11-18 01:08:20 -07:00
|
|
|
}
|
2018-08-23 22:41:26 -06:00
|
|
|
}
|
2021-04-02 04:25:13 -06:00
|
|
|
|
2016-07-15 10:36:39 -06:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// MailParticipants sends new issue thread created emails to repository watchers
|
|
|
|
// and mentioned people.
|
2022-06-13 03:37:59 -06:00
|
|
|
func MailParticipants(issue *issues_model.Issue, doer *user_model.User, opType models.ActionType, mentions []*user_model.User) error {
|
2021-08-12 01:26:33 -06:00
|
|
|
if setting.MailService == nil {
|
|
|
|
// No mail service configured
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-05-30 03:38:38 -06:00
|
|
|
content := issue.Content
|
|
|
|
if opType == models.ActionCloseIssue || opType == models.ActionClosePullRequest ||
|
|
|
|
opType == models.ActionReopenIssue || opType == models.ActionReopenPullRequest ||
|
|
|
|
opType == models.ActionMergePullRequest {
|
|
|
|
content = ""
|
|
|
|
}
|
2021-04-02 04:25:13 -06:00
|
|
|
if err := mailIssueCommentToParticipants(
|
2019-11-18 01:08:20 -07:00
|
|
|
&mailCommentContext{
|
2022-03-22 09:22:54 -06:00
|
|
|
Context: context.TODO(), // TODO: use a correct context
|
2019-11-18 01:08:20 -07:00
|
|
|
Issue: issue,
|
|
|
|
Doer: doer,
|
|
|
|
ActionType: opType,
|
2021-05-30 03:38:38 -06:00
|
|
|
Content: content,
|
2019-11-18 01:08:20 -07:00
|
|
|
Comment: nil,
|
2021-04-02 04:25:13 -06:00
|
|
|
}, mentions); err != nil {
|
2019-11-07 06:34:28 -07:00
|
|
|
log.Error("mailIssueCommentToParticipants: %v", err)
|
2016-07-15 10:36:39 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|