2020-10-25 02:08:14 +05:30
|
|
|
// 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 (
|
2021-07-14 20:13:13 +05:30
|
|
|
"context"
|
2020-10-25 02:08:14 +05:30
|
|
|
"fmt"
|
2021-09-22 11:08:34 +05:30
|
|
|
"io"
|
2020-10-25 02:08:14 +05:30
|
|
|
"net/http"
|
|
|
|
|
2021-07-24 21:33:58 +05:30
|
|
|
"code.gitea.io/gitea/modules/json"
|
2020-10-25 02:08:14 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Email structure holds a data for sending general emails
|
|
|
|
type Email struct {
|
|
|
|
Subject string
|
|
|
|
Message string
|
|
|
|
To []string
|
|
|
|
}
|
|
|
|
|
|
|
|
// SendEmail calls the internal SendEmail function
|
|
|
|
//
|
|
|
|
// It accepts a list of usernames.
|
|
|
|
// If DB contains these users it will send the email to them.
|
|
|
|
//
|
|
|
|
// If to list == nil its supposed to send an email to every
|
|
|
|
// user present in DB
|
2021-07-14 20:13:13 +05:30
|
|
|
func SendEmail(ctx context.Context, subject, message string, to []string) (int, string) {
|
2020-10-25 02:08:14 +05:30
|
|
|
reqURL := setting.LocalURL + "api/internal/mail/send"
|
|
|
|
|
2021-07-14 20:13:13 +05:30
|
|
|
req := newInternalRequest(ctx, reqURL, "POST")
|
2020-10-25 02:08:14 +05:30
|
|
|
req = req.Header("Content-Type", "application/json")
|
|
|
|
jsonBytes, _ := json.Marshal(Email{
|
|
|
|
Subject: subject,
|
|
|
|
Message: message,
|
|
|
|
To: to,
|
|
|
|
})
|
|
|
|
req.Body(jsonBytes)
|
|
|
|
resp, err := req.Response()
|
|
|
|
if err != nil {
|
|
|
|
return http.StatusInternalServerError, fmt.Sprintf("Unable to contact gitea: %v", err.Error())
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
2021-09-22 11:08:34 +05:30
|
|
|
body, err := io.ReadAll(resp.Body)
|
2020-10-25 02:08:14 +05:30
|
|
|
if err != nil {
|
|
|
|
return http.StatusInternalServerError, fmt.Sprintf("Response body error: %v", err.Error())
|
|
|
|
}
|
|
|
|
|
2022-01-20 23:16:10 +05:30
|
|
|
users := fmt.Sprintf("%d", len(to))
|
2020-10-26 22:12:27 +05:30
|
|
|
if len(to) == 0 {
|
|
|
|
users = "all"
|
|
|
|
}
|
|
|
|
|
|
|
|
return http.StatusOK, fmt.Sprintf("Sent %s email(s) to %s users", body, users)
|
2020-10-25 02:08:14 +05:30
|
|
|
}
|