2020-10-24 14:38:14 -06:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-10-24 14:38:14 -06:00
|
|
|
|
|
|
|
package private
|
|
|
|
|
|
|
|
import (
|
2022-10-31 09:51:14 -06:00
|
|
|
stdCtx "context"
|
2020-10-24 14:38:14 -06:00
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
|
2022-08-15 22:05:15 -06:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-11-24 02:49:20 -07:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2021-01-26 08:36:53 -07:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2021-07-24 10:03:58 -06:00
|
|
|
"code.gitea.io/gitea/modules/json"
|
2020-10-24 14:38:14 -06:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/private"
|
2020-10-26 10:42:27 -06:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2020-10-24 14:38:14 -06:00
|
|
|
"code.gitea.io/gitea/services/mailer"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SendEmail pushes messages to mail queue
|
|
|
|
//
|
|
|
|
// It doesn't wait before each message will be processed
|
2021-01-26 08:36:53 -07:00
|
|
|
func SendEmail(ctx *context.PrivateContext) {
|
2020-10-26 10:42:27 -06:00
|
|
|
if setting.MailService == nil {
|
2021-06-23 13:38:19 -06:00
|
|
|
ctx.JSON(http.StatusInternalServerError, private.Response{
|
|
|
|
Err: "Mail service is not enabled.",
|
2020-10-26 10:42:27 -06:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var mail private.Email
|
2021-01-26 08:36:53 -07:00
|
|
|
rd := ctx.Req.Body
|
2020-10-26 10:42:27 -06:00
|
|
|
defer rd.Close()
|
2021-07-24 10:03:58 -06:00
|
|
|
|
2020-10-26 10:42:27 -06:00
|
|
|
if err := json.NewDecoder(rd).Decode(&mail); err != nil {
|
|
|
|
log.Error("%v", err)
|
2021-06-23 13:38:19 -06:00
|
|
|
ctx.JSON(http.StatusInternalServerError, private.Response{
|
|
|
|
Err: err.Error(),
|
2020-10-26 10:42:27 -06:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-10-24 14:38:14 -06:00
|
|
|
var emails []string
|
|
|
|
if len(mail.To) > 0 {
|
|
|
|
for _, uname := range mail.To {
|
2022-05-20 08:08:52 -06:00
|
|
|
user, err := user_model.GetUserByName(ctx, uname)
|
2020-10-24 14:38:14 -06:00
|
|
|
if err != nil {
|
|
|
|
err := fmt.Sprintf("Failed to get user information: %v", err)
|
|
|
|
log.Error(err)
|
2021-06-23 13:38:19 -06:00
|
|
|
ctx.JSON(http.StatusInternalServerError, private.Response{
|
|
|
|
Err: err,
|
2020-10-24 14:38:14 -06:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-10-26 10:42:27 -06:00
|
|
|
if user != nil && len(user.Email) > 0 {
|
2020-10-24 14:38:14 -06:00
|
|
|
emails = append(emails, user.Email)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2022-10-31 09:51:14 -06:00
|
|
|
err := db.Iterate(ctx, nil, func(ctx stdCtx.Context, user *user_model.User) error {
|
2022-03-19 06:45:44 -06:00
|
|
|
if len(user.Email) > 0 && user.IsActive {
|
2020-10-26 10:42:27 -06:00
|
|
|
emails = append(emails, user.Email)
|
|
|
|
}
|
2020-10-24 14:38:14 -06:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
err := fmt.Sprintf("Failed to find users: %v", err)
|
|
|
|
log.Error(err)
|
2021-06-23 13:38:19 -06:00
|
|
|
ctx.JSON(http.StatusInternalServerError, private.Response{
|
|
|
|
Err: err,
|
2020-10-24 14:38:14 -06:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sendEmail(ctx, mail.Subject, mail.Message, emails)
|
|
|
|
}
|
|
|
|
|
2021-01-26 08:36:53 -07:00
|
|
|
func sendEmail(ctx *context.PrivateContext, subject, message string, to []string) {
|
2020-10-24 14:38:14 -06:00
|
|
|
for _, email := range to {
|
2023-01-22 07:23:52 -07:00
|
|
|
msg := mailer.NewMessage(email, subject, message)
|
2020-10-24 14:38:14 -06:00
|
|
|
mailer.SendAsync(msg)
|
|
|
|
}
|
|
|
|
|
|
|
|
wasSent := strconv.Itoa(len(to))
|
|
|
|
|
2021-12-14 23:59:57 -07:00
|
|
|
ctx.PlainText(http.StatusOK, wasSent)
|
2020-10-24 14:38:14 -06:00
|
|
|
}
|