Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.6 KiB
67 lines
1.6 KiB
// Copyright 2020 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 private |
|
|
|
import ( |
|
"fmt" |
|
"net/http" |
|
"strconv" |
|
|
|
"code.gitea.io/gitea/models" |
|
"code.gitea.io/gitea/modules/log" |
|
"code.gitea.io/gitea/modules/private" |
|
"code.gitea.io/gitea/services/mailer" |
|
"gitea.com/macaron/macaron" |
|
) |
|
|
|
// SendEmail pushes messages to mail queue |
|
// |
|
// It doesn't wait before each message will be processed |
|
func SendEmail(ctx *macaron.Context, mail private.Email) { |
|
var emails []string |
|
if len(mail.To) > 0 { |
|
for _, uname := range mail.To { |
|
user, err := models.GetUserByName(uname) |
|
if err != nil { |
|
err := fmt.Sprintf("Failed to get user information: %v", err) |
|
log.Error(err) |
|
ctx.JSON(http.StatusInternalServerError, map[string]interface{}{ |
|
"err": err, |
|
}) |
|
return |
|
} |
|
|
|
if user != nil { |
|
emails = append(emails, user.Email) |
|
} |
|
} |
|
} else { |
|
err := models.IterateUser(func(user *models.User) error { |
|
emails = append(emails, user.Email) |
|
return nil |
|
}) |
|
if err != nil { |
|
err := fmt.Sprintf("Failed to find users: %v", err) |
|
log.Error(err) |
|
ctx.JSON(http.StatusInternalServerError, map[string]interface{}{ |
|
"err": err, |
|
}) |
|
return |
|
} |
|
} |
|
|
|
sendEmail(ctx, mail.Subject, mail.Message, emails) |
|
} |
|
|
|
func sendEmail(ctx *macaron.Context, subject, message string, to []string) { |
|
for _, email := range to { |
|
msg := mailer.NewMessage([]string{email}, subject, message) |
|
mailer.SendAsync(msg) |
|
} |
|
|
|
wasSent := strconv.Itoa(len(to)) |
|
|
|
ctx.PlainText(http.StatusOK, []byte(wasSent)) |
|
}
|
|
|