2019-01-13 14:42:55 +00:00
// Copyright 2019 The Gitea Authors. All rights reserved.
2022-11-27 18:20:29 +00:00
// SPDX-License-Identifier: MIT
2019-01-13 14:42:55 +00:00
2023-09-05 09:26:59 +00:00
package mailer
2019-01-13 14:42:55 +00:00
import (
2022-11-19 08:12:33 +00:00
"context"
2019-10-25 14:46:37 +00:00
"fmt"
2022-08-25 02:31:57 +00:00
activities_model "code.gitea.io/gitea/models/activities"
2022-06-13 09:37:59 +00:00
issues_model "code.gitea.io/gitea/models/issues"
2021-12-10 01:27:50 +00:00
repo_model "code.gitea.io/gitea/models/repo"
2021-11-24 09:49:20 +00:00
user_model "code.gitea.io/gitea/models/user"
2019-01-13 14:42:55 +00:00
"code.gitea.io/gitea/modules/log"
2023-09-05 18:37:47 +00:00
notify_service "code.gitea.io/gitea/services/notify"
2019-01-13 14:42:55 +00:00
)
type mailNotifier struct {
2023-09-05 18:37:47 +00:00
notify_service . NullNotifier
2019-01-13 14:42:55 +00:00
}
2023-09-05 18:37:47 +00:00
var _ notify_service . Notifier = & mailNotifier { }
2019-01-13 14:42:55 +00:00
// NewNotifier create a new mailNotifier notifier
2023-09-05 18:37:47 +00:00
func NewNotifier ( ) notify_service . Notifier {
2019-01-13 14:42:55 +00:00
return & mailNotifier { }
}
2023-09-05 18:37:47 +00:00
func ( m * mailNotifier ) CreateIssueComment ( ctx context . Context , doer * user_model . User , repo * repo_model . Repository ,
2022-06-13 09:37:59 +00:00
issue * issues_model . Issue , comment * issues_model . Comment , mentions [ ] * user_model . User ,
2022-02-23 20:16:07 +00:00
) {
2022-08-25 02:31:57 +00:00
var act activities_model . ActionType
2022-06-13 09:37:59 +00:00
if comment . Type == issues_model . CommentTypeClose {
2022-08-25 02:31:57 +00:00
act = activities_model . ActionCloseIssue
2022-06-13 09:37:59 +00:00
} else if comment . Type == issues_model . CommentTypeReopen {
2022-08-25 02:31:57 +00:00
act = activities_model . ActionReopenIssue
2022-06-13 09:37:59 +00:00
} else if comment . Type == issues_model . CommentTypeComment {
2022-08-25 02:31:57 +00:00
act = activities_model . ActionCommentIssue
2022-06-13 09:37:59 +00:00
} else if comment . Type == issues_model . CommentTypeCode {
2022-08-25 02:31:57 +00:00
act = activities_model . ActionCommentIssue
2022-06-13 09:37:59 +00:00
} else if comment . Type == issues_model . CommentTypePullRequestPush {
2020-05-20 12:47:24 +00:00
act = 0
2019-01-13 14:42:55 +00:00
}
2023-09-05 09:26:59 +00:00
if err := MailParticipantsComment ( ctx , comment , act , issue , mentions ) ; err != nil {
2019-11-15 12:59:21 +00:00
log . Error ( "MailParticipantsComment: %v" , err )
2019-01-13 14:42:55 +00:00
}
}
2023-09-05 18:37:47 +00:00
func ( m * mailNotifier ) NewIssue ( ctx context . Context , issue * issues_model . Issue , mentions [ ] * user_model . User ) {
2023-09-05 09:26:59 +00:00
if err := MailParticipants ( ctx , issue , issue . Poster , activities_model . ActionCreateIssue , mentions ) ; err != nil {
2019-04-02 07:48:31 +00:00
log . Error ( "MailParticipants: %v" , err )
2019-01-13 14:42:55 +00:00
}
}
2023-09-05 18:37:47 +00:00
func ( m * mailNotifier ) IssueChangeStatus ( ctx context . Context , doer * user_model . User , commitID string , issue * issues_model . Issue , actionComment * issues_model . Comment , isClosed bool ) {
2022-08-25 02:31:57 +00:00
var actionType activities_model . ActionType
2019-04-11 21:59:01 +00:00
if issue . IsPull {
if isClosed {
2022-08-25 02:31:57 +00:00
actionType = activities_model . ActionClosePullRequest
2019-04-11 21:59:01 +00:00
} else {
2022-08-25 02:31:57 +00:00
actionType = activities_model . ActionReopenPullRequest
2019-04-11 21:59:01 +00:00
}
} else {
if isClosed {
2022-08-25 02:31:57 +00:00
actionType = activities_model . ActionCloseIssue
2019-04-11 21:59:01 +00:00
} else {
2022-08-25 02:31:57 +00:00
actionType = activities_model . ActionReopenIssue
2019-04-11 21:59:01 +00:00
}
}
2023-09-05 09:26:59 +00:00
if err := MailParticipants ( ctx , issue , doer , actionType , nil ) ; err != nil {
2019-04-02 07:48:31 +00:00
log . Error ( "MailParticipants: %v" , err )
2019-01-13 14:42:55 +00:00
}
}
2023-09-05 18:37:47 +00:00
func ( m * mailNotifier ) IssueChangeTitle ( ctx context . Context , doer * user_model . User , issue * issues_model . Issue , oldTitle string ) {
2022-11-19 08:12:33 +00:00
if err := issue . LoadPullRequest ( ctx ) ; err != nil {
2021-06-23 04:14:22 +00:00
log . Error ( "issue.LoadPullRequest: %v" , err )
return
}
2023-10-11 04:24:07 +00:00
if issue . IsPull && issues_model . HasWorkInProgressPrefix ( oldTitle ) && ! issue . PullRequest . IsWorkInProgress ( ctx ) {
2023-09-05 09:26:59 +00:00
if err := MailParticipants ( ctx , issue , doer , activities_model . ActionPullRequestReadyForReview , nil ) ; err != nil {
2021-06-23 04:14:22 +00:00
log . Error ( "MailParticipants: %v" , err )
}
}
}
2023-09-05 18:37:47 +00:00
func ( m * mailNotifier ) NewPullRequest ( ctx context . Context , pr * issues_model . PullRequest , mentions [ ] * user_model . User ) {
2023-09-05 09:26:59 +00:00
if err := MailParticipants ( ctx , pr . Issue , pr . Issue . Poster , activities_model . ActionCreatePullRequest , mentions ) ; err != nil {
2019-04-02 07:48:31 +00:00
log . Error ( "MailParticipants: %v" , err )
2019-01-13 14:42:55 +00:00
}
}
2023-09-05 18:37:47 +00:00
func ( m * mailNotifier ) PullRequestReview ( ctx context . Context , pr * issues_model . PullRequest , r * issues_model . Review , comment * issues_model . Comment , mentions [ ] * user_model . User ) {
2022-08-25 02:31:57 +00:00
var act activities_model . ActionType
2022-06-13 09:37:59 +00:00
if comment . Type == issues_model . CommentTypeClose {
2022-08-25 02:31:57 +00:00
act = activities_model . ActionCloseIssue
2022-06-13 09:37:59 +00:00
} else if comment . Type == issues_model . CommentTypeReopen {
2022-08-25 02:31:57 +00:00
act = activities_model . ActionReopenIssue
2022-06-13 09:37:59 +00:00
} else if comment . Type == issues_model . CommentTypeComment {
2022-08-25 02:31:57 +00:00
act = activities_model . ActionCommentPull
2019-01-13 14:42:55 +00:00
}
2023-09-05 09:26:59 +00:00
if err := MailParticipantsComment ( ctx , comment , act , pr . Issue , mentions ) ; err != nil {
2019-11-15 12:59:21 +00:00
log . Error ( "MailParticipantsComment: %v" , err )
2019-01-13 14:42:55 +00:00
}
}
2019-10-25 14:46:37 +00:00
2023-09-05 18:37:47 +00:00
func ( m * mailNotifier ) PullRequestCodeComment ( ctx context . Context , pr * issues_model . PullRequest , comment * issues_model . Comment , mentions [ ] * user_model . User ) {
2023-09-05 09:26:59 +00:00
if err := MailMentionsComment ( ctx , pr , comment , mentions ) ; err != nil {
2021-01-02 17:04:02 +00:00
log . Error ( "MailMentionsComment: %v" , err )
}
}
2023-09-05 18:37:47 +00:00
func ( m * mailNotifier ) IssueChangeAssignee ( ctx context . Context , doer * user_model . User , issue * issues_model . Issue , assignee * user_model . User , removed bool , comment * issues_model . Comment ) {
2019-10-25 14:46:37 +00:00
// mail only sent to added assignees and not self-assignee
2024-02-04 13:29:09 +00:00
if ! removed && doer . ID != assignee . ID && assignee . EmailNotificationsPreference != user_model . EmailNotificationsDisabled {
2019-10-25 14:46:37 +00:00
ct := fmt . Sprintf ( "Assigned #%d." , issue . Index )
2023-09-05 09:26:59 +00:00
if err := SendIssueAssignedMail ( ctx , issue , doer , ct , comment , [ ] * user_model . User { assignee } ) ; err != nil {
2021-04-19 22:25:08 +00:00
log . Error ( "Error in SendIssueAssignedMail for issue[%d] to assignee[%d]: %v" , issue . ID , assignee . ID , err )
}
2019-10-25 14:46:37 +00:00
}
}
2019-11-21 17:08:42 +00:00
2023-09-05 18:37:47 +00:00
func ( m * mailNotifier ) PullRequestReviewRequest ( ctx context . Context , doer * user_model . User , issue * issues_model . Issue , reviewer * user_model . User , isRequest bool , comment * issues_model . Comment ) {
2024-02-04 13:29:09 +00:00
if isRequest && doer . ID != reviewer . ID && reviewer . EmailNotificationsPreference != user_model . EmailNotificationsDisabled {
2020-11-28 11:06:59 +00:00
ct := fmt . Sprintf ( "Requested to review %s." , issue . HTMLURL ( ) )
2023-09-05 09:26:59 +00:00
if err := SendIssueAssignedMail ( ctx , issue , doer , ct , comment , [ ] * user_model . User { reviewer } ) ; err != nil {
2021-04-19 22:25:08 +00:00
log . Error ( "Error in SendIssueAssignedMail for issue[%d] to reviewer[%d]: %v" , issue . ID , reviewer . ID , err )
}
2020-04-06 16:33:34 +00:00
}
}
2023-09-05 18:37:47 +00:00
func ( m * mailNotifier ) MergePullRequest ( ctx context . Context , doer * user_model . User , pr * issues_model . PullRequest ) {
2022-11-19 08:12:33 +00:00
if err := pr . LoadIssue ( ctx ) ; err != nil {
log . Error ( "LoadIssue: %v" , err )
2019-11-21 17:08:42 +00:00
return
}
2023-09-05 09:26:59 +00:00
if err := MailParticipants ( ctx , pr . Issue , doer , activities_model . ActionMergePullRequest , nil ) ; err != nil {
2019-11-21 17:08:42 +00:00
log . Error ( "MailParticipants: %v" , err )
}
}
2020-05-20 12:47:24 +00:00
2023-09-05 18:37:47 +00:00
func ( m * mailNotifier ) AutoMergePullRequest ( ctx context . Context , doer * user_model . User , pr * issues_model . PullRequest ) {
2022-11-19 08:12:33 +00:00
if err := pr . LoadIssue ( ctx ) ; err != nil {
2022-11-03 15:49:00 +00:00
log . Error ( "pr.LoadIssue: %v" , err )
return
}
2023-09-05 09:26:59 +00:00
if err := MailParticipants ( ctx , pr . Issue , doer , activities_model . ActionAutoMergePullRequest , nil ) ; err != nil {
2022-11-03 15:49:00 +00:00
log . Error ( "MailParticipants: %v" , err )
}
}
2023-09-05 18:37:47 +00:00
func ( m * mailNotifier ) PullRequestPushCommits ( ctx context . Context , doer * user_model . User , pr * issues_model . PullRequest , comment * issues_model . Comment ) {
2020-05-20 12:47:24 +00:00
var err error
2022-11-19 08:12:33 +00:00
if err = comment . LoadIssue ( ctx ) ; err != nil {
2020-05-20 12:47:24 +00:00
log . Error ( "comment.LoadIssue: %v" , err )
return
}
2022-04-08 09:11:15 +00:00
if err = comment . Issue . LoadRepo ( ctx ) ; err != nil {
2020-05-20 12:47:24 +00:00
log . Error ( "comment.Issue.LoadRepo: %v" , err )
return
}
2022-11-19 08:12:33 +00:00
if err = comment . Issue . LoadPullRequest ( ctx ) ; err != nil {
2020-05-20 12:47:24 +00:00
log . Error ( "comment.Issue.LoadPullRequest: %v" , err )
return
}
2022-11-19 08:12:33 +00:00
if err = comment . Issue . PullRequest . LoadBaseRepo ( ctx ) ; err != nil {
2020-05-20 12:47:24 +00:00
log . Error ( "comment.Issue.PullRequest.LoadBaseRepo: %v" , err )
return
}
2022-01-19 23:26:57 +00:00
if err := comment . LoadPushCommits ( ctx ) ; err != nil {
2020-05-20 12:47:24 +00:00
log . Error ( "comment.LoadPushCommits: %v" , err )
}
2023-09-05 18:37:47 +00:00
m . CreateIssueComment ( ctx , doer , comment . Issue . Repo , comment . Issue , comment , nil )
2020-05-20 12:47:24 +00:00
}
2020-08-23 15:03:18 +00:00
2023-09-05 18:37:47 +00:00
func ( m * mailNotifier ) PullReviewDismiss ( ctx context . Context , doer * user_model . User , review * issues_model . Review , comment * issues_model . Comment ) {
2023-09-13 19:48:36 +00:00
if err := comment . Review . LoadReviewer ( ctx ) ; err != nil {
log . Error ( "Error in PullReviewDismiss while loading reviewer for issue[%d], review[%d] and reviewer[%d]: %v" , review . Issue . ID , comment . Review . ID , comment . Review . ReviewerID , err )
}
2023-09-05 09:26:59 +00:00
if err := MailParticipantsComment ( ctx , comment , activities_model . ActionPullReviewDismissed , review . Issue , nil ) ; err != nil {
2021-02-11 17:32:25 +00:00
log . Error ( "MailParticipantsComment: %v" , err )
}
}
2023-09-05 18:37:47 +00:00
func ( m * mailNotifier ) NewRelease ( ctx context . Context , rel * repo_model . Release ) {
2022-11-19 08:12:33 +00:00
if err := rel . LoadAttributes ( ctx ) ; err != nil {
log . Error ( "LoadAttributes: %v" , err )
2020-08-23 15:03:18 +00:00
return
}
if rel . IsDraft || rel . IsPrerelease {
return
}
2023-09-05 09:26:59 +00:00
MailNewRelease ( ctx , rel )
2020-08-23 15:03:18 +00:00
}
2021-03-01 00:47:30 +00:00
2023-09-05 18:37:47 +00:00
func ( m * mailNotifier ) RepoPendingTransfer ( ctx context . Context , doer , newOwner * user_model . User , repo * repo_model . Repository ) {
2023-09-05 09:26:59 +00:00
if err := SendRepoTransferNotifyMail ( ctx , doer , newOwner , repo ) ; err != nil {
2022-11-19 08:12:33 +00:00
log . Error ( "SendRepoTransferNotifyMail: %v" , err )
2021-03-01 00:47:30 +00:00
}
}