2016-07-15 18:36:39 +02:00
|
|
|
// Copyright 2016 The Gogs 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 models
|
|
|
|
|
|
|
|
import (
|
2016-12-06 18:58:31 +01:00
|
|
|
"bytes"
|
2016-07-15 18:36:39 +02:00
|
|
|
"fmt"
|
|
|
|
"html/template"
|
|
|
|
"path"
|
|
|
|
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/mailer"
|
|
|
|
"code.gitea.io/gitea/modules/markdown"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2016-12-06 18:58:31 +01:00
|
|
|
"gopkg.in/gomail.v2"
|
|
|
|
"gopkg.in/macaron.v1"
|
2016-07-15 18:36:39 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2016-11-25 09:11:12 +01:00
|
|
|
mailAuthActivate base.TplName = "auth/activate"
|
|
|
|
mailAuthActivateEmail base.TplName = "auth/activate_email"
|
|
|
|
mailAuthResetPassword base.TplName = "auth/reset_passwd"
|
|
|
|
mailAuthRegisterNotify base.TplName = "auth/register_notify"
|
2016-07-15 18:36:39 +02:00
|
|
|
|
2016-11-25 09:11:12 +01:00
|
|
|
mailIssueComment base.TplName = "issue/comment"
|
|
|
|
mailIssueMention base.TplName = "issue/mention"
|
2016-07-15 18:36:39 +02:00
|
|
|
|
2016-11-25 09:11:12 +01:00
|
|
|
mailNotifyCollaborator base.TplName = "notify/collaborator"
|
2016-07-15 18:36:39 +02:00
|
|
|
)
|
|
|
|
|
2016-12-06 18:58:31 +01:00
|
|
|
var templates *template.Template
|
2016-07-15 18:36:39 +02:00
|
|
|
|
2016-11-25 09:11:12 +01:00
|
|
|
// InitMailRender initializes the macaron mail renderer
|
2016-12-06 18:58:31 +01:00
|
|
|
func InitMailRender(tmpls *template.Template) {
|
|
|
|
templates = tmpls
|
2016-07-15 18:36:39 +02:00
|
|
|
}
|
|
|
|
|
2016-11-25 09:11:12 +01:00
|
|
|
// SendTestMail sends a test mail
|
2016-07-15 18:36:39 +02:00
|
|
|
func SendTestMail(email string) error {
|
2016-12-25 14:55:22 +01:00
|
|
|
return gomail.Send(mailer.Sender, mailer.NewMessage([]string{email}, "Gitea Test Email!", "Gitea Test Email!").Message)
|
2016-07-15 18:36:39 +02:00
|
|
|
}
|
|
|
|
|
2016-11-25 09:11:12 +01:00
|
|
|
// SendUserMail sends a mail to the user
|
2016-07-15 18:36:39 +02:00
|
|
|
func SendUserMail(c *macaron.Context, u *User, tpl base.TplName, code, subject, info string) {
|
|
|
|
data := map[string]interface{}{
|
|
|
|
"Username": u.DisplayName(),
|
|
|
|
"ActiveCodeLives": setting.Service.ActiveCodeLives / 60,
|
|
|
|
"ResetPwdCodeLives": setting.Service.ResetPwdCodeLives / 60,
|
|
|
|
"Code": code,
|
|
|
|
}
|
2016-12-06 18:58:31 +01:00
|
|
|
|
|
|
|
var content bytes.Buffer
|
|
|
|
|
|
|
|
if err := templates.ExecuteTemplate(&content, string(tpl), data); err != nil {
|
|
|
|
log.Error(3, "Template: %v", err)
|
2016-07-15 18:36:39 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-06 18:58:31 +01:00
|
|
|
msg := mailer.NewMessage([]string{u.Email}, subject, content.String())
|
2016-07-23 19:08:22 +02:00
|
|
|
msg.Info = fmt.Sprintf("UID: %d, %s", u.ID, info)
|
2016-07-15 18:36:39 +02:00
|
|
|
|
|
|
|
mailer.SendAsync(msg)
|
|
|
|
}
|
|
|
|
|
2016-11-25 09:11:12 +01:00
|
|
|
// SendActivateAccountMail sends an activation mail to the user
|
2016-07-15 18:36:39 +02:00
|
|
|
func SendActivateAccountMail(c *macaron.Context, u *User) {
|
2016-11-25 09:11:12 +01:00
|
|
|
SendUserMail(c, u, mailAuthActivate, u.GenerateActivateCode(), c.Tr("mail.activate_account"), "activate account")
|
2016-07-15 18:36:39 +02:00
|
|
|
}
|
|
|
|
|
2016-11-25 09:11:12 +01:00
|
|
|
// SendResetPasswordMail sends a password reset mail to the user
|
2016-07-15 18:36:39 +02:00
|
|
|
func SendResetPasswordMail(c *macaron.Context, u *User) {
|
2016-11-25 09:11:12 +01:00
|
|
|
SendUserMail(c, u, mailAuthResetPassword, u.GenerateActivateCode(), c.Tr("mail.reset_password"), "reset password")
|
2016-07-15 18:36:39 +02:00
|
|
|
}
|
|
|
|
|
2016-11-25 09:11:12 +01:00
|
|
|
// SendActivateEmailMail sends confirmation email.
|
2016-07-15 18:36:39 +02:00
|
|
|
func SendActivateEmailMail(c *macaron.Context, u *User, email *EmailAddress) {
|
|
|
|
data := map[string]interface{}{
|
|
|
|
"Username": u.DisplayName(),
|
|
|
|
"ActiveCodeLives": setting.Service.ActiveCodeLives / 60,
|
|
|
|
"Code": u.GenerateEmailActivateCode(email.Email),
|
|
|
|
"Email": email.Email,
|
|
|
|
}
|
2016-12-06 18:58:31 +01:00
|
|
|
|
|
|
|
var content bytes.Buffer
|
|
|
|
|
|
|
|
if err := templates.ExecuteTemplate(&content, string(mailAuthActivateEmail), data); err != nil {
|
|
|
|
log.Error(3, "Template: %v", err)
|
2016-07-15 18:36:39 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-06 18:58:31 +01:00
|
|
|
msg := mailer.NewMessage([]string{email.Email}, c.Tr("mail.activate_email"), content.String())
|
2016-07-23 19:08:22 +02:00
|
|
|
msg.Info = fmt.Sprintf("UID: %d, activate email", u.ID)
|
2016-07-15 18:36:39 +02:00
|
|
|
|
|
|
|
mailer.SendAsync(msg)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SendRegisterNotifyMail triggers a notify e-mail by admin created a account.
|
|
|
|
func SendRegisterNotifyMail(c *macaron.Context, u *User) {
|
|
|
|
data := map[string]interface{}{
|
|
|
|
"Username": u.DisplayName(),
|
|
|
|
}
|
2016-12-06 18:58:31 +01:00
|
|
|
|
|
|
|
var content bytes.Buffer
|
|
|
|
|
|
|
|
if err := templates.ExecuteTemplate(&content, string(mailAuthRegisterNotify), data); err != nil {
|
|
|
|
log.Error(3, "Template: %v", err)
|
2016-07-15 18:36:39 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-06 18:58:31 +01:00
|
|
|
msg := mailer.NewMessage([]string{u.Email}, c.Tr("mail.register_notify"), content.String())
|
2016-07-23 19:08:22 +02:00
|
|
|
msg.Info = fmt.Sprintf("UID: %d, registration notify", u.ID)
|
2016-07-15 18:36:39 +02:00
|
|
|
|
|
|
|
mailer.SendAsync(msg)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SendCollaboratorMail sends mail notification to new collaborator.
|
|
|
|
func SendCollaboratorMail(u, doer *User, repo *Repository) {
|
|
|
|
repoName := path.Join(repo.Owner.Name, repo.Name)
|
|
|
|
subject := fmt.Sprintf("%s added you to %s", doer.DisplayName(), repoName)
|
|
|
|
|
|
|
|
data := map[string]interface{}{
|
|
|
|
"Subject": subject,
|
|
|
|
"RepoName": repoName,
|
2016-08-16 19:19:09 +02:00
|
|
|
"Link": repo.HTMLURL(),
|
2016-07-15 18:36:39 +02:00
|
|
|
}
|
2016-12-06 18:58:31 +01:00
|
|
|
|
|
|
|
var content bytes.Buffer
|
|
|
|
|
|
|
|
if err := templates.ExecuteTemplate(&content, string(mailNotifyCollaborator), data); err != nil {
|
|
|
|
log.Error(3, "Template: %v", err)
|
2016-07-15 18:36:39 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-06 18:58:31 +01:00
|
|
|
msg := mailer.NewMessage([]string{u.Email}, subject, content.String())
|
2016-07-23 19:08:22 +02:00
|
|
|
msg.Info = fmt.Sprintf("UID: %d, add collaborator", u.ID)
|
2016-07-15 18:36:39 +02:00
|
|
|
|
|
|
|
mailer.SendAsync(msg)
|
|
|
|
}
|
|
|
|
|
|
|
|
func composeTplData(subject, body, link string) map[string]interface{} {
|
|
|
|
data := make(map[string]interface{}, 10)
|
|
|
|
data["Subject"] = subject
|
|
|
|
data["Body"] = body
|
|
|
|
data["Link"] = link
|
|
|
|
return data
|
|
|
|
}
|
|
|
|
|
|
|
|
func composeIssueMessage(issue *Issue, doer *User, tplName base.TplName, tos []string, info string) *mailer.Message {
|
2016-11-25 09:11:12 +01:00
|
|
|
subject := issue.mailSubject()
|
2016-08-16 19:19:09 +02:00
|
|
|
body := string(markdown.RenderSpecialLink([]byte(issue.Content), issue.Repo.HTMLURL(), issue.Repo.ComposeMetas()))
|
|
|
|
data := composeTplData(subject, body, issue.HTMLURL())
|
2016-07-15 18:36:39 +02:00
|
|
|
data["Doer"] = doer
|
2016-12-06 18:58:31 +01:00
|
|
|
|
|
|
|
var content bytes.Buffer
|
|
|
|
|
|
|
|
if err := templates.ExecuteTemplate(&content, string(tplName), data); err != nil {
|
|
|
|
log.Error(3, "Template: %v", err)
|
2016-07-15 18:36:39 +02:00
|
|
|
}
|
2016-12-06 18:58:31 +01:00
|
|
|
|
|
|
|
msg := mailer.NewMessageFrom(tos, fmt.Sprintf(`"%s" <%s>`, doer.DisplayName(), setting.MailService.FromEmail), subject, content.String())
|
2016-07-15 18:36:39 +02:00
|
|
|
msg.Info = fmt.Sprintf("Subject: %s, %s", subject, info)
|
|
|
|
return msg
|
|
|
|
}
|
|
|
|
|
|
|
|
// SendIssueCommentMail composes and sends issue comment emails to target receivers.
|
|
|
|
func SendIssueCommentMail(issue *Issue, doer *User, tos []string) {
|
|
|
|
if len(tos) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-11-25 09:11:12 +01:00
|
|
|
mailer.SendAsync(composeIssueMessage(issue, doer, mailIssueComment, tos, "issue comment"))
|
2016-07-15 18:36:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// SendIssueMentionMail composes and sends issue mention emails to target receivers.
|
|
|
|
func SendIssueMentionMail(issue *Issue, doer *User, tos []string) {
|
|
|
|
if len(tos) == 0 {
|
|
|
|
return
|
|
|
|
}
|
2016-11-25 09:11:12 +01:00
|
|
|
mailer.SendAsync(composeIssueMessage(issue, doer, mailIssueMention, tos, "issue mention"))
|
2016-07-15 18:36:39 +02:00
|
|
|
}
|