Deleted files: api/compliance.go, api/debug.go, rmo/compliance.go, rmo/email.go, rmo/mock.go, platform/publicreport/address.go Removed unused functions/types from: api/api.go, api/configuration.go, api/district.go, api/publicreport.go, api/sudo.go, api/types.go, comms/text/twilio.go, comms/text/voipms.go, h3utils/h3.go, html/embed.go, html/form.go, middleware/terminal.go, minio/client.go, platform/csv/csv.go, platform/csv/flyover.go, platform/file/base.go, platform/file/upload.go, platform/geocode/address.go, platform/types/service_request.go
84 lines
2.3 KiB
Go
84 lines
2.3 KiB
Go
package api
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/Gleipnir-Technology/nidus-sync/comms/email"
|
|
"github.com/Gleipnir-Technology/nidus-sync/comms/text"
|
|
"github.com/Gleipnir-Technology/nidus-sync/config"
|
|
nhttp "github.com/Gleipnir-Technology/nidus-sync/http"
|
|
"github.com/Gleipnir-Technology/nidus-sync/platform"
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
type FormEmail struct {
|
|
Body string `schema:"emailBody"`
|
|
From string `schema:"emailFrom"`
|
|
Subject string `schema:"emailSubject"`
|
|
To string `schema:"emailTo"`
|
|
}
|
|
|
|
func postSudoEmail(ctx context.Context, r *http.Request, u platform.User, e FormEmail) (string, *nhttp.ErrorWithStatus) {
|
|
if !u.HasRoot() {
|
|
return "", &nhttp.ErrorWithStatus{
|
|
Message: "You must have sudo powers to do this",
|
|
Status: http.StatusForbidden,
|
|
}
|
|
}
|
|
request := email.Request{
|
|
From: e.From,
|
|
HTML: fmt.Sprintf("<html><p>%s</p></html>", e.Body),
|
|
Sender: e.From,
|
|
Subject: e.Subject,
|
|
To: e.To,
|
|
Text: e.Body,
|
|
}
|
|
resp, err := email.Send(ctx, request)
|
|
if err != nil {
|
|
log.Warn().Err(err).Msg("Failed to send email")
|
|
} else {
|
|
log.Info().Str("id", resp.ID).Str("to", e.To).Msg("Sent Email")
|
|
}
|
|
return "/sudo", nil
|
|
}
|
|
|
|
type FormSMS struct {
|
|
Message string `schema:"smsMessage"`
|
|
Phone string `schema:"smsPhone"`
|
|
}
|
|
|
|
func postSudoSMS(ctx context.Context, r *http.Request, u platform.User, sms FormSMS) (string, *nhttp.ErrorWithStatus) {
|
|
if !u.HasRoot() {
|
|
return "", &nhttp.ErrorWithStatus{
|
|
Message: "You must have sudo powers to do this",
|
|
Status: http.StatusForbidden,
|
|
}
|
|
}
|
|
id, err := text.SendText(ctx, config.VoipMSNumber, sms.Phone, sms.Message)
|
|
if err != nil {
|
|
log.Warn().Err(err).Msg("Failed to send SMS")
|
|
} else {
|
|
log.Info().Str("id", id).Msg("Sent SMS")
|
|
}
|
|
return "/sudo", nil
|
|
}
|
|
|
|
type FormSSE struct {
|
|
OrganizationID int32 `schema:"organizationID"`
|
|
Resource string `schema:"resource"`
|
|
Type string `schema:"type"`
|
|
URIPath string `schema:"uriPath"`
|
|
}
|
|
|
|
func postSudoSSE(ctx context.Context, r *http.Request, u platform.User, sse FormSSE) (string, *nhttp.ErrorWithStatus) {
|
|
if !u.HasRoot() {
|
|
return "", &nhttp.ErrorWithStatus{
|
|
Message: "You must have sudo powers to do this",
|
|
Status: http.StatusForbidden,
|
|
}
|
|
}
|
|
platform.SudoEvent(sse.OrganizationID, sse.Resource, sse.Type, sse.URIPath)
|
|
return "/sudo", nil
|
|
}
|