Fixes #14187: mention handling extracted from email notification code Fixes #14013: add notification for mentions in pull request code comments Fixes #13450: Not receiving any emails with setting "Only Email on Mention"
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.7 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 {
 | |
| 	return mailParticipantsComment(c, opType, issue, mentions)
 | |
| }
 | |
| 
 | |
| func mailParticipantsComment(c *models.Comment, opType models.ActionType, issue *models.Issue, mentions []*models.User) (err error) {
 | |
| 	mentionedIDs := make([]int64, len(mentions))
 | |
| 	for i, u := range mentions {
 | |
| 		mentionedIDs[i] = u.ID
 | |
| 	}
 | |
| 	if err = mailIssueCommentToParticipants(
 | |
| 		&mailCommentContext{
 | |
| 			Issue:      issue,
 | |
| 			Doer:       c.Poster,
 | |
| 			ActionType: opType,
 | |
| 			Content:    c.Content,
 | |
| 			Comment:    c,
 | |
| 		}, mentionedIDs); 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) {
 | |
| 	mentionedIDs := make([]int64, len(mentions))
 | |
| 	for i, u := range mentions {
 | |
| 		mentionedIDs[i] = u.ID
 | |
| 	}
 | |
| 	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,
 | |
| 		}, mentionedIDs, visited, true); err != nil {
 | |
| 		log.Error("mailIssueCommentBatch: %v", err)
 | |
| 	}
 | |
| 	return nil
 | |
| }
 |