mailsrv/services/sender.go
2023-09-09 14:44:20 +02:00

156 lines
3.7 KiB
Go

package services
import (
"fmt"
cfg "mailsrv/config"
"mailsrv/mail"
"mailsrv/runtime"
"os"
"os/signal"
"path"
"strings"
"syscall"
"time"
"net/smtp"
"github.com/rs/zerolog/log"
)
const (
TickerInterval time.Duration = 10 * time.Second
JSONSuffix string = ".json"
ErrorSuffix string = ".err"
)
type Sender struct {
smtpConfig cfg.SMTPConfig
// fetch this directory to collect `.json` e-mail format
outboxPath string
queue *runtime.Queue
}
func NewSender(config cfg.SMTPConfig, outboxPath string) Sender {
return Sender{
smtpConfig: config,
outboxPath: outboxPath,
queue: runtime.NewQueue(),
}
}
func (s Sender) SendMail(email mail.Email) error {
auth := smtp.PlainAuth("", s.smtpConfig.User, s.smtpConfig.Password, s.smtpConfig.Url)
log.Debug().Msg("SMTP authentication succeed")
if err := smtp.SendMail(s.smtpConfig.GetFullUrl(), auth, email.Sender, email.Receivers, email.Generate()); err != nil {
log.Err(err).Msg("error while sending email")
return err
}
log.Debug().Msg("mail send successfully")
return nil
}
// watchOutbox reads the `outbox` directory every `TickInterval` and put JSON format e-mail in the queue
func (s Sender) watchOutbox() {
log.Info().Str("outbox", s.outboxPath).Msg("start watching outbox directory")
ticker := time.NewTicker(TickerInterval)
go func() {
for _ = range ticker.C {
log.Debug().Str("action", "retrieving json e-mail format...").Str("path", s.outboxPath)
files, err := os.ReadDir(s.outboxPath)
if err != nil && !os.IsExist(err) {
log.Err(err).Msg("outbox directory does not exist")
s.queue.Shutdown()
}
for _, file := range files {
filename := file.Name()
if strings.HasSuffix(filename, JSONSuffix) {
s.queue.Add(path.Join(s.outboxPath, filename))
continue
}
log.Debug().Str("filename", filename).Msg("incorrect suffix")
}
}
}()
}
// processNextEmail loops over the queue and send email
func (s Sender) processNextEmail() bool {
item, quit := s.queue.Get()
if quit {
return false
}
defer s.queue.Done(item)
path, ok := item.(string)
if !ok {
log.Error().Any("item", item).Msg("unable to cast queue item into mail.Email")
return true
}
email, err := mail.FromJSON(path)
if err != nil {
log.Err(err).Str("path", path).Msg("unable to parse JSON email")
// if JSON parsing failed the `path` is renamed with an error suffix to avoid enqueued it again
newPath := fmt.Sprintf("%s%s", path, ErrorSuffix)
if err := os.Rename(path, newPath); err != nil {
log.Err(err).Str("path", path).Str("new path", newPath).Msg("unable to rename bad JSON email path")
s.queue.Shutdown()
}
return true
}
// whatever the return, the email will be not enqueued again
s.SendMail(email)
if err := os.Remove(path); err != nil {
// this is a fatal error, can't send same e-mail indefinitely
if !os.IsExist(err) {
log.Err(err).Str("path", path).Msg("unable to remove the JSON email")
s.queue.Shutdown()
}
}
return true
}
// run starts processing the queue
func (s Sender) run() <-chan struct{} {
queueCh := make(chan struct{})
go func() {
for s.processNextEmail() {
}
queueCh <- struct{}{}
}()
return queueCh
}
// Run launches the queue processing and the outbox watcher
// catches `SIGINT` and `SIGTERM` to properly stopped the queue
func (s Sender) Run() {
log.Info().Msg("sender service is running")
sigCh := make(chan os.Signal, 1)
signal.Notify(sigCh, os.Interrupt, syscall.SIGTERM)
s.watchOutbox()
queueCh := s.run()
select {
case <-sigCh:
log.Warn().Msg("stop signal received, stopping e-mail queue...")
s.queue.Shutdown()
case <-queueCh:
log.Info().Msg("e-mail queue stopped successfully")
}
log.Info().Msg("sender service stopped successfully")
}