Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
package smtpsrv
import (
"context"
"fmt"
"io"
"net/mail"
"strings"
"time"
"github.com/emersion/go-smtp"
"github.com/mnako/letters"
"github.com/target/goalert/alert"
"github.com/target/goalert/permission"
"github.com/target/goalert/retry"
"github.com/target/goalert/util/log"
"github.com/target/goalert/validation/validate"
)
// Session implements an SMTP session that creates alerts.
type Session struct {
cfg Config
from string
dedup string
authCtx []context.Context
}
func (s *Session) isValidDomain(d string) bool {
if strings.EqualFold(d, s.cfg.Domain) {
return true
}
for _, v := range s.cfg.AllowedDomains {
if strings.EqualFold(v, d) {
return true
}
}
return false
}
// AuthPlain is called when a client attempts to authenticate using the PLAIN
// auth mechanism. It always returns an error, indicating that PLAIN auth is
// not supported.
func (s *Session) AuthPlain(username, password string) error { return smtp.ErrAuthUnsupported }
// Mail is called when a new SMTP message is received (MAIL FROM). It checks
// that the sender is valid and stores it in the session.
func (s *Session) Mail(from string, opts *smtp.MailOptions) error {
addr, err := mail.ParseAddress(from)
if err != nil {
return &smtp.SMTPError{
Code: 501,
EnhancedCode: smtp.EnhancedCode{5, 5, 2},
Message: "Syntax error in sender address",
}
}
s.from = addr.String()
return nil
}
// Rcpt is called when a new SMTP message is received (RCPT TO). It checks
// that the recipient is valid and stores it in the session.
//
// It also checks that the recipient is authorized to create alerts.
func (s *Session) Rcpt(recipient string, opts *smtp.RcptOptions) error {
addr, err := mail.ParseAddress(recipient)
if err != nil {
return &smtp.SMTPError{
Code: 501,
EnhancedCode: smtp.EnhancedCode{5, 5, 2},
Message: "Syntax error in recipient address",
}
}
id, domain, ok := strings.Cut(addr.Address, "@")
if !ok {
return &smtp.SMTPError{
Code: 501,
EnhancedCode: smtp.EnhancedCode{5, 5, 2},
Message: "Syntax error in recipient address",
}
}
if !s.isValidDomain(domain) {
return &smtp.SMTPError{
Code: 550,
EnhancedCode: smtp.EnhancedCode{5, 7, 1},
Message: "Recipient domain not handled here",
}
}
id, s.dedup, _ = strings.Cut(id, "+")
err = validate.UUID("recipient", id)
if err != nil {
return &smtp.SMTPError{
Code: 501,
EnhancedCode: smtp.EnhancedCode{5, 5, 2},
Message: "Syntax error in recipient address",
}
}
if len(s.authCtx) >= s.cfg.MaxRecipients {
return &smtp.SMTPError{
Code: 452,
EnhancedCode: smtp.EnhancedCode{4, 5, 3},
Message: "Too many recipients",
}
}
ctx, err := s.cfg.AuthorizeFunc(s.cfg.BackgroundContext(), id)
if err != nil {
if permission.IsUnauthorized(err) {
return &smtp.SMTPError{
Code: 550,
EnhancedCode: smtp.EnhancedCode{5, 1, 1},
Message: "Invalid API key",
}
}
log.Log(ctx, err) // log unexpected error
return &smtp.SMTPError{
Code: 451,
EnhancedCode: smtp.EnhancedCode{4, 3, 0},
Message: "Temporary local error, please try again",
}
}
s.authCtx = append(s.authCtx, ctx)
return nil
}
// Data is called when a new SMTP message is received.
func (s *Session) Data(r io.Reader) error {
if len(s.authCtx) == 0 {
return &smtp.SMTPError{
Code: 503,
EnhancedCode: smtp.EnhancedCode{5, 5, 1},
Message: "Need RCPT TO command before DATA",
}
}
email, err := letters.ParseEmail(r)
if err != nil {
return &smtp.SMTPError{
Code: 554,
EnhancedCode: smtp.EnhancedCode{5, 6, 0},
Message: "Malformed email message",
}
}
body := email.Text
summary := validate.SanitizeText(email.Headers.Subject, alert.MaxSummaryLength)
details := fmt.Sprintf("From: %s\n\n%s", s.from, body)
details = validate.SanitizeText(details, alert.MaxDetailsLength)
var dedup *alert.DedupID
if s.dedup != "" {
dedup = alert.NewUserDedup(s.dedup)
}
for _, authCtx := range s.authCtx {
newAlert := &alert.Alert{
Summary: summary,
Details: details,
ServiceID: permission.ServiceID(authCtx),
Status: alert.StatusTriggered,
Source: alert.SourceEmail,
Dedup: dedup,
}
err = retry.DoTemporaryError(func(_ int) error {
return s.cfg.CreateAlertFunc(authCtx, newAlert)
},
retry.Log(authCtx),
retry.Limit(12),
retry.FibBackoff(time.Second),
)
if err != nil {
return &smtp.SMTPError{
Code: 451,
EnhancedCode: smtp.EnhancedCode{4, 3, 0},
Message: "Temporary local error, please try again",
}
}
}
return nil
}
// Reset resets the session state.
func (s *Session) Reset() {
s.dedup = ""
s.from = ""
s.authCtx = nil
}
// Logout is called when the client requests to log out.
func (s *Session) Logout() error { return nil }