mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
80d6c6d7de
* Unexport SendUserMail * Instead of "[]*models.User" or "[]string" lists infent "[]*MailRecipient" for mailer * adopt * code format * TODOs for "i18n" * clean * no fallback for lang -> just use english * lint * exec testComposeIssueCommentMessage per lang and use only emails * rm MailRecipient * Dont reload from users from db if you alredy have in ram * nits * minimize diff Signed-off-by: 6543 <6543@obermui.de> * localize subjects * linter ... * Tr extend * start tmpl edit ... * Apply suggestions from code review * use translation.Locale * improve mailIssueCommentBatch Signed-off-by: Andrew Thornton <art27@cantab.net> * add i18n to datas Signed-off-by: Andrew Thornton <art27@cantab.net> * a comment Co-authored-by: Andrew Thornton <art27@cantab.net>
43 lines
1.3 KiB
Go
43 lines
1.3 KiB
Go
// 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 mailer
|
|
|
|
import (
|
|
"code.gitea.io/gitea/models"
|
|
"code.gitea.io/gitea/modules/log"
|
|
)
|
|
|
|
// MailParticipantsComment sends new comment emails to repository watchers and mentioned people.
|
|
func MailParticipantsComment(c *models.Comment, opType models.ActionType, issue *models.Issue, mentions []*models.User) error {
|
|
if err := mailIssueCommentToParticipants(
|
|
&mailCommentContext{
|
|
Issue: issue,
|
|
Doer: c.Poster,
|
|
ActionType: opType,
|
|
Content: c.Content,
|
|
Comment: c,
|
|
}, mentions); err != nil {
|
|
log.Error("mailIssueCommentToParticipants: %v", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// MailMentionsComment sends email to users mentioned in a code comment
|
|
func MailMentionsComment(pr *models.PullRequest, c *models.Comment, mentions []*models.User) (err error) {
|
|
visited := make(map[int64]bool, len(mentions)+1)
|
|
visited[c.Poster.ID] = true
|
|
if err = mailIssueCommentBatch(
|
|
&mailCommentContext{
|
|
Issue: pr.Issue,
|
|
Doer: c.Poster,
|
|
ActionType: models.ActionCommentPull,
|
|
Content: c.Content,
|
|
Comment: c,
|
|
}, mentions, visited, true); err != nil {
|
|
log.Error("mailIssueCommentBatch: %v", err)
|
|
}
|
|
return nil
|
|
}
|