mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 15:54:25 +00:00
3dcb3e9073
* Second attempt at preventing zombies * Ensure that the pipes are closed in ssh.go * Ensure that a cancellable context is passed up in cmd/* http requests * Make cmd.fail return properly so defers are obeyed * Ensure that something is sent to stdout in case of blocks here Signed-off-by: Andrew Thornton <art27@cantab.net> * placate lint Signed-off-by: Andrew Thornton <art27@cantab.net> * placate lint 2 Signed-off-by: Andrew Thornton <art27@cantab.net> * placate lint 3 Signed-off-by: Andrew Thornton <art27@cantab.net> * fixup Signed-off-by: Andrew Thornton <art27@cantab.net> * Apply suggestions from code review Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: Lauris BH <lauris@nix.lv>
61 lines
1.6 KiB
Go
61 lines
1.6 KiB
Go
// 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 (
|
|
"context"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"net/http"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
jsoniter "github.com/json-iterator/go"
|
|
)
|
|
|
|
// 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
|
|
func SendEmail(ctx context.Context, subject, message string, to []string) (int, string) {
|
|
reqURL := setting.LocalURL + "api/internal/mail/send"
|
|
|
|
req := newInternalRequest(ctx, reqURL, "POST")
|
|
req = req.Header("Content-Type", "application/json")
|
|
json := jsoniter.ConfigCompatibleWithStandardLibrary
|
|
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()
|
|
|
|
body, err := ioutil.ReadAll(resp.Body)
|
|
if err != nil {
|
|
return http.StatusInternalServerError, fmt.Sprintf("Response body error: %v", err.Error())
|
|
}
|
|
|
|
var users = fmt.Sprintf("%d", len(to))
|
|
if len(to) == 0 {
|
|
users = "all"
|
|
}
|
|
|
|
return http.StatusOK, fmt.Sprintf("Sent %s email(s) to %s users", body, users)
|
|
}
|