2020-08-23 15:03:18 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-08-23 15:03:18 +00:00
|
|
|
|
|
|
|
package mailer
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2022-01-19 23:26:57 +00:00
|
|
|
"context"
|
2020-08-23 15:03:18 +00:00
|
|
|
|
2021-12-12 15:48:20 +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"
|
2020-08-23 15:03:18 +00:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
2021-04-19 22:25:08 +00:00
|
|
|
"code.gitea.io/gitea/modules/markup"
|
2020-08-23 15:03:18 +00:00
|
|
|
"code.gitea.io/gitea/modules/markup/markdown"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2021-06-23 12:33:21 +00:00
|
|
|
"code.gitea.io/gitea/modules/templates"
|
2021-04-02 10:25:13 +00:00
|
|
|
"code.gitea.io/gitea/modules/translation"
|
2020-08-23 15:03:18 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
tplNewReleaseMail base.TplName = "release"
|
|
|
|
)
|
|
|
|
|
2022-10-19 12:40:28 +00:00
|
|
|
// MailNewRelease send new release notify to all repo watchers.
|
2022-08-25 02:31:57 +00:00
|
|
|
func MailNewRelease(ctx context.Context, rel *repo_model.Release) {
|
2021-08-12 07:26:33 +00:00
|
|
|
if setting.MailService == nil {
|
|
|
|
// No mail service configured
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-22 15:22:54 +00:00
|
|
|
watcherIDList, err := repo_model.GetRepoWatchersIDs(ctx, rel.RepoID)
|
2020-08-23 15:03:18 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Error("GetRepoWatchersIDs(%d): %v", rel.RepoID, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-11-19 08:12:33 +00:00
|
|
|
recipients, err := user_model.GetMaileableUsersByIDs(ctx, watcherIDList, false)
|
2020-08-23 15:03:18 +00:00
|
|
|
if err != nil {
|
2021-11-24 09:49:20 +00:00
|
|
|
log.Error("user_model.GetMaileableUsersByIDs: %v", err)
|
2020-08-23 15:03:18 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-04-02 10:25:13 +00:00
|
|
|
langMap := make(map[string][]string)
|
|
|
|
for _, user := range recipients {
|
|
|
|
if user.ID != rel.PublisherID {
|
|
|
|
langMap[user.Language] = append(langMap[user.Language], user.Email)
|
2020-08-23 15:03:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-02 10:25:13 +00:00
|
|
|
for lang, tos := range langMap {
|
2022-01-19 23:26:57 +00:00
|
|
|
mailNewRelease(ctx, lang, tos, rel)
|
2021-04-02 10:25:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-25 02:31:57 +00:00
|
|
|
func mailNewRelease(ctx context.Context, lang string, tos []string, rel *repo_model.Release) {
|
2021-04-02 10:25:13 +00:00
|
|
|
locale := translation.NewLocale(lang)
|
|
|
|
|
2021-04-19 22:25:08 +00:00
|
|
|
var err error
|
|
|
|
rel.RenderedNote, err = markdown.RenderString(&markup.RenderContext{
|
2022-01-19 23:26:57 +00:00
|
|
|
Ctx: ctx,
|
2021-04-19 22:25:08 +00:00
|
|
|
URLPrefix: rel.Repo.Link(),
|
|
|
|
Metas: rel.Repo.ComposeMetas(),
|
|
|
|
}, rel.Note)
|
|
|
|
if err != nil {
|
|
|
|
log.Error("markdown.RenderString(%d): %v", rel.RepoID, err)
|
|
|
|
return
|
|
|
|
}
|
2020-08-23 15:03:18 +00:00
|
|
|
|
2021-04-02 10:25:13 +00:00
|
|
|
subject := locale.Tr("mail.release.new.subject", rel.TagName, rel.Repo.FullName())
|
2020-08-23 15:03:18 +00:00
|
|
|
mailMeta := map[string]interface{}{
|
2021-04-02 10:25:13 +00:00
|
|
|
"Release": rel,
|
|
|
|
"Subject": subject,
|
|
|
|
"Language": locale.Language(),
|
2021-06-23 12:33:21 +00:00
|
|
|
// helper
|
2022-06-27 20:58:46 +00:00
|
|
|
"locale": locale,
|
2022-03-23 12:34:20 +00:00
|
|
|
"Str2html": templates.Str2html,
|
|
|
|
"DotEscape": templates.DotEscape,
|
2020-08-23 15:03:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var mailBody bytes.Buffer
|
|
|
|
|
2021-04-02 10:25:13 +00:00
|
|
|
if err := bodyTemplates.ExecuteTemplate(&mailBody, string(tplNewReleaseMail), mailMeta); err != nil {
|
2020-08-23 15:03:18 +00:00
|
|
|
log.Error("ExecuteTemplate [%s]: %v", string(tplNewReleaseMail)+"/body", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-04-02 10:25:13 +00:00
|
|
|
msgs := make([]*Message, 0, len(tos))
|
2020-08-23 15:03:18 +00:00
|
|
|
publisherName := rel.Publisher.DisplayName()
|
|
|
|
relURL := "<" + rel.HTMLURL() + ">"
|
|
|
|
for _, to := range tos {
|
2023-01-22 14:23:52 +00:00
|
|
|
msg := NewMessageFrom(to, publisherName, setting.MailService.FromEmail, subject, mailBody.String())
|
2020-08-23 15:03:18 +00:00
|
|
|
msg.Info = subject
|
|
|
|
msg.SetHeader("Message-ID", relURL)
|
|
|
|
msgs = append(msgs, msg)
|
|
|
|
}
|
|
|
|
|
|
|
|
SendAsyncs(msgs)
|
|
|
|
}
|