* Add config option to hide issue events Adds a config option `HIDE_ISSUE_EVENTS` to hide most issue events (changed labels, milestones, projects...) on the issue detail page. If this is true, only the following events (comment types) are shown: * plain comments * closed/reopned/merged * reviews * Make configurable using a list * Add docs * Add missing newline * Fix merge issues * Allow changes per user settings * Fix lint * Rm old docs * Apply suggestions from code review * Use bitsets * Rm comment * fmt * Fix lint * Use variable/constant to provide key * fmt * fix lint * refactor * Add a prefix for user setting key * Add license comment * Add license comment * Update services/forms/user_form_hidden_comments.go Co-authored-by: Gusted <williamzijl7@hotmail.com> * check len == 0 Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: Gusted <williamzijl7@hotmail.com> Co-authored-by: 6543 <6543@obermui.de>
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			63 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 (
 | 
						|
	"context"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/models"
 | 
						|
	user_model "code.gitea.io/gitea/models/user"
 | 
						|
	"code.gitea.io/gitea/modules/log"
 | 
						|
	"code.gitea.io/gitea/modules/setting"
 | 
						|
)
 | 
						|
 | 
						|
// MailParticipantsComment sends new comment emails to repository watchers and mentioned people.
 | 
						|
func MailParticipantsComment(ctx context.Context, c *models.Comment, opType models.ActionType, issue *models.Issue, mentions []*user_model.User) error {
 | 
						|
	if setting.MailService == nil {
 | 
						|
		// No mail service configured
 | 
						|
		return nil
 | 
						|
	}
 | 
						|
 | 
						|
	content := c.Content
 | 
						|
	if c.Type == models.CommentTypePullRequestPush {
 | 
						|
		content = ""
 | 
						|
	}
 | 
						|
	if err := mailIssueCommentToParticipants(
 | 
						|
		&mailCommentContext{
 | 
						|
			Context:    ctx,
 | 
						|
			Issue:      issue,
 | 
						|
			Doer:       c.Poster,
 | 
						|
			ActionType: opType,
 | 
						|
			Content:    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(ctx context.Context, pr *models.PullRequest, c *models.Comment, mentions []*user_model.User) (err error) {
 | 
						|
	if setting.MailService == nil {
 | 
						|
		// No mail service configured
 | 
						|
		return nil
 | 
						|
	}
 | 
						|
 | 
						|
	visited := make(map[int64]bool, len(mentions)+1)
 | 
						|
	visited[c.Poster.ID] = true
 | 
						|
	if err = mailIssueCommentBatch(
 | 
						|
		&mailCommentContext{
 | 
						|
			Context:    ctx,
 | 
						|
			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
 | 
						|
}
 |