2026-02-18 07:07:15 +00:00
|
|
|
package sync
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
2026-02-18 08:50:49 +00:00
|
|
|
"fmt"
|
2026-02-18 07:07:15 +00:00
|
|
|
"net/http"
|
|
|
|
|
|
2026-02-18 08:50:49 +00:00
|
|
|
"github.com/Gleipnir-Technology/nidus-sync/comms/email"
|
2026-02-18 08:28:19 +00:00
|
|
|
"github.com/Gleipnir-Technology/nidus-sync/comms/text"
|
|
|
|
|
"github.com/Gleipnir-Technology/nidus-sync/config"
|
2026-03-03 17:08:58 +00:00
|
|
|
"github.com/Gleipnir-Technology/nidus-sync/html"
|
|
|
|
|
nhttp "github.com/Gleipnir-Technology/nidus-sync/http"
|
2026-03-12 23:49:16 +00:00
|
|
|
"github.com/Gleipnir-Technology/nidus-sync/platform"
|
2026-02-18 08:02:32 +00:00
|
|
|
"github.com/rs/zerolog/log"
|
2026-02-18 07:07:15 +00:00
|
|
|
)
|
|
|
|
|
|
2026-02-18 08:50:49 +00:00
|
|
|
type contentSudo struct {
|
|
|
|
|
ForwardEmailRMOAddress string
|
|
|
|
|
ForwardEmailNidusAddress string
|
|
|
|
|
}
|
2026-02-18 07:07:15 +00:00
|
|
|
|
2026-03-12 23:49:16 +00:00
|
|
|
func getSudo(ctx context.Context, r *http.Request, user platform.User) (*html.Response[contentSudo], *nhttp.ErrorWithStatus) {
|
|
|
|
|
if !user.HasRoot() {
|
2026-03-03 17:08:58 +00:00
|
|
|
return nil, &nhttp.ErrorWithStatus{
|
2026-02-18 07:07:15 +00:00
|
|
|
Message: "You have to be a root user to access this",
|
|
|
|
|
Status: http.StatusForbidden,
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-02-18 08:50:49 +00:00
|
|
|
content := contentSudo{
|
|
|
|
|
ForwardEmailRMOAddress: config.ForwardEmailRMOAddress,
|
|
|
|
|
ForwardEmailNidusAddress: config.ForwardEmailNidusAddress,
|
|
|
|
|
}
|
2026-03-03 17:08:58 +00:00
|
|
|
return html.NewResponse("sync/sudo.html", content), nil
|
2026-02-18 07:07:15 +00:00
|
|
|
}
|
2026-02-18 08:02:32 +00:00
|
|
|
|
2026-02-18 08:50:49 +00:00
|
|
|
type FormEmail struct {
|
|
|
|
|
Body string `schema:"emailBody"`
|
|
|
|
|
From string `schema:"emailFrom"`
|
|
|
|
|
Subject string `schema:"emailSubject"`
|
|
|
|
|
To string `schema:"emailTo"`
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-12 23:49:16 +00:00
|
|
|
func postSudoEmail(ctx context.Context, r *http.Request, u platform.User, e FormEmail) (string, *nhttp.ErrorWithStatus) {
|
|
|
|
|
if !u.HasRoot() {
|
2026-03-03 17:08:58 +00:00
|
|
|
return "", &nhttp.ErrorWithStatus{
|
2026-02-18 08:50:49 +00:00
|
|
|
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 {
|
2026-02-18 21:38:16 +00:00
|
|
|
log.Info().Str("id", resp.ID).Str("to", e.To).Msg("Sent Email")
|
2026-02-18 08:50:49 +00:00
|
|
|
}
|
|
|
|
|
return "/sudo", nil
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-18 08:02:32 +00:00
|
|
|
type FormSMS struct {
|
|
|
|
|
Message string `schema:"smsMessage"`
|
|
|
|
|
Phone string `schema:"smsPhone"`
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-12 23:49:16 +00:00
|
|
|
func postSudoSMS(ctx context.Context, r *http.Request, u platform.User, sms FormSMS) (string, *nhttp.ErrorWithStatus) {
|
|
|
|
|
if !u.HasRoot() {
|
2026-03-03 17:08:58 +00:00
|
|
|
return "", &nhttp.ErrorWithStatus{
|
2026-02-18 08:09:53 +00:00
|
|
|
Message: "You must have sudo powers to do this",
|
|
|
|
|
Status: http.StatusForbidden,
|
|
|
|
|
}
|
2026-02-18 08:02:32 +00:00
|
|
|
}
|
2026-02-18 08:28:19 +00:00
|
|
|
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")
|
|
|
|
|
}
|
2026-02-18 08:09:53 +00:00
|
|
|
return "/sudo", nil
|
2026-02-18 08:02:32 +00:00
|
|
|
}
|
2026-03-13 17:33:39 +00:00
|
|
|
|
|
|
|
|
type FormSSE struct {
|
|
|
|
|
OrganizationID int32 `schema:"organizationID"`
|
2026-03-13 18:31:43 +00:00
|
|
|
Resource string `schema:"resource"`
|
|
|
|
|
Type string `schema:"type"`
|
|
|
|
|
URIPath string `schema:"uriPath"`
|
2026-03-13 17:33:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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,
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-03-13 18:31:43 +00:00
|
|
|
platform.SudoEvent(sse.OrganizationID, sse.Resource, sse.Type, sse.URIPath)
|
2026-03-13 17:33:39 +00:00
|
|
|
return "/sudo", nil
|
|
|
|
|
}
|