Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. // Copyright 2016 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package models
  5. import (
  6. "bytes"
  7. "fmt"
  8. "html/template"
  9. "path"
  10. "code.gitea.io/gitea/modules/base"
  11. "code.gitea.io/gitea/modules/log"
  12. "code.gitea.io/gitea/modules/mailer"
  13. "code.gitea.io/gitea/modules/markup"
  14. "code.gitea.io/gitea/modules/markup/markdown"
  15. "code.gitea.io/gitea/modules/setting"
  16. "gopkg.in/gomail.v2"
  17. "gopkg.in/macaron.v1"
  18. )
  19. const (
  20. mailAuthActivate base.TplName = "auth/activate"
  21. mailAuthActivateEmail base.TplName = "auth/activate_email"
  22. mailAuthResetPassword base.TplName = "auth/reset_passwd"
  23. mailAuthRegisterNotify base.TplName = "auth/register_notify"
  24. mailIssueComment base.TplName = "issue/comment"
  25. mailIssueMention base.TplName = "issue/mention"
  26. mailNotifyCollaborator base.TplName = "notify/collaborator"
  27. )
  28. var templates *template.Template
  29. // InitMailRender initializes the macaron mail renderer
  30. func InitMailRender(tmpls *template.Template) {
  31. templates = tmpls
  32. }
  33. // SendTestMail sends a test mail
  34. func SendTestMail(email string) error {
  35. return gomail.Send(mailer.Sender, mailer.NewMessage([]string{email}, "Gitea Test Email!", "Gitea Test Email!").Message)
  36. }
  37. // SendUserMail sends a mail to the user
  38. func SendUserMail(c *macaron.Context, u *User, tpl base.TplName, code, subject, info string) {
  39. data := map[string]interface{}{
  40. "DisplayName": u.DisplayName(),
  41. "ActiveCodeLives": base.MinutesToFriendly(setting.Service.ActiveCodeLives, c.Locale.Language()),
  42. "ResetPwdCodeLives": base.MinutesToFriendly(setting.Service.ResetPwdCodeLives, c.Locale.Language()),
  43. "Code": code,
  44. }
  45. var content bytes.Buffer
  46. if err := templates.ExecuteTemplate(&content, string(tpl), data); err != nil {
  47. log.Error("Template: %v", err)
  48. return
  49. }
  50. msg := mailer.NewMessage([]string{u.Email}, subject, content.String())
  51. msg.Info = fmt.Sprintf("UID: %d, %s", u.ID, info)
  52. mailer.SendAsync(msg)
  53. }
  54. // SendActivateAccountMail sends an activation mail to the user (new user registration)
  55. func SendActivateAccountMail(c *macaron.Context, u *User) {
  56. SendUserMail(c, u, mailAuthActivate, u.GenerateActivateCode(), c.Tr("mail.activate_account"), "activate account")
  57. }
  58. // SendResetPasswordMail sends a password reset mail to the user
  59. func SendResetPasswordMail(c *macaron.Context, u *User) {
  60. SendUserMail(c, u, mailAuthResetPassword, u.GenerateActivateCode(), c.Tr("mail.reset_password"), "recover account")
  61. }
  62. // SendActivateEmailMail sends confirmation email to confirm new email address
  63. func SendActivateEmailMail(c *macaron.Context, u *User, email *EmailAddress) {
  64. data := map[string]interface{}{
  65. "DisplayName": u.DisplayName(),
  66. "ActiveCodeLives": base.MinutesToFriendly(setting.Service.ActiveCodeLives, c.Locale.Language()),
  67. "Code": u.GenerateEmailActivateCode(email.Email),
  68. "Email": email.Email,
  69. }
  70. var content bytes.Buffer
  71. if err := templates.ExecuteTemplate(&content, string(mailAuthActivateEmail), data); err != nil {
  72. log.Error("Template: %v", err)
  73. return
  74. }
  75. msg := mailer.NewMessage([]string{email.Email}, c.Tr("mail.activate_email"), content.String())
  76. msg.Info = fmt.Sprintf("UID: %d, activate email", u.ID)
  77. mailer.SendAsync(msg)
  78. }
  79. // SendRegisterNotifyMail triggers a notify e-mail by admin created a account.
  80. func SendRegisterNotifyMail(c *macaron.Context, u *User) {
  81. data := map[string]interface{}{
  82. "DisplayName": u.DisplayName(),
  83. "Username": u.Name,
  84. }
  85. var content bytes.Buffer
  86. if err := templates.ExecuteTemplate(&content, string(mailAuthRegisterNotify), data); err != nil {
  87. log.Error("Template: %v", err)
  88. return
  89. }
  90. msg := mailer.NewMessage([]string{u.Email}, c.Tr("mail.register_notify"), content.String())
  91. msg.Info = fmt.Sprintf("UID: %d, registration notify", u.ID)
  92. mailer.SendAsync(msg)
  93. }
  94. // SendCollaboratorMail sends mail notification to new collaborator.
  95. func SendCollaboratorMail(u, doer *User, repo *Repository) {
  96. repoName := path.Join(repo.Owner.Name, repo.Name)
  97. subject := fmt.Sprintf("%s added you to %s", doer.DisplayName(), repoName)
  98. data := map[string]interface{}{
  99. "Subject": subject,
  100. "RepoName": repoName,
  101. "Link": repo.HTMLURL(),
  102. }
  103. var content bytes.Buffer
  104. if err := templates.ExecuteTemplate(&content, string(mailNotifyCollaborator), data); err != nil {
  105. log.Error("Template: %v", err)
  106. return
  107. }
  108. msg := mailer.NewMessage([]string{u.Email}, subject, content.String())
  109. msg.Info = fmt.Sprintf("UID: %d, add collaborator", u.ID)
  110. mailer.SendAsync(msg)
  111. }
  112. func composeTplData(subject, body, link string) map[string]interface{} {
  113. data := make(map[string]interface{}, 10)
  114. data["Subject"] = subject
  115. data["Body"] = body
  116. data["Link"] = link
  117. return data
  118. }
  119. func composeIssueCommentMessage(issue *Issue, doer *User, content string, comment *Comment, tplName base.TplName, tos []string, info string) *mailer.Message {
  120. subject := issue.mailSubject()
  121. issue.LoadRepo()
  122. body := string(markup.RenderByType(markdown.MarkupName, []byte(content), issue.Repo.HTMLURL(), issue.Repo.ComposeMetas()))
  123. data := make(map[string]interface{}, 10)
  124. if comment != nil {
  125. data = composeTplData(subject, body, issue.HTMLURL()+"#"+comment.HashTag())
  126. } else {
  127. data = composeTplData(subject, body, issue.HTMLURL())
  128. }
  129. data["Doer"] = doer
  130. var mailBody bytes.Buffer
  131. if err := templates.ExecuteTemplate(&mailBody, string(tplName), data); err != nil {
  132. log.Error("Template: %v", err)
  133. }
  134. msg := mailer.NewMessageFrom(tos, doer.DisplayName(), setting.MailService.FromEmail, subject, mailBody.String())
  135. msg.Info = fmt.Sprintf("Subject: %s, %s", subject, info)
  136. return msg
  137. }
  138. // SendIssueCommentMail composes and sends issue comment emails to target receivers.
  139. func SendIssueCommentMail(issue *Issue, doer *User, content string, comment *Comment, tos []string) {
  140. if len(tos) == 0 {
  141. return
  142. }
  143. mailer.SendAsync(composeIssueCommentMessage(issue, doer, content, comment, mailIssueComment, tos, "issue comment"))
  144. }
  145. // SendIssueMentionMail composes and sends issue mention emails to target receivers.
  146. func SendIssueMentionMail(issue *Issue, doer *User, content string, comment *Comment, tos []string) {
  147. if len(tos) == 0 {
  148. return
  149. }
  150. mailer.SendAsync(composeIssueCommentMessage(issue, doer, content, comment, mailIssueMention, tos, "issue mention"))
  151. }