2018-10-25 15:51:47 +02:00
|
|
|
package runner
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"html/template"
|
|
|
|
"log"
|
2018-10-31 13:54:21 +01:00
|
|
|
"sync"
|
2018-10-25 15:51:47 +02:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/knadh/listmonk/messenger"
|
|
|
|
"github.com/knadh/listmonk/models"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
batchSize = 10000
|
|
|
|
|
|
|
|
// BaseTPL is the name of the base template.
|
|
|
|
BaseTPL = "base"
|
|
|
|
|
|
|
|
// ContentTpl is the name of the compiled message.
|
|
|
|
ContentTpl = "content"
|
|
|
|
)
|
|
|
|
|
|
|
|
// DataSource represents a data backend, such as a database,
|
|
|
|
// that provides subscriber and campaign records.
|
|
|
|
type DataSource interface {
|
|
|
|
NextCampaigns(excludeIDs []int64) ([]*models.Campaign, error)
|
|
|
|
NextSubscribers(campID, limit int) ([]*models.Subscriber, error)
|
|
|
|
GetCampaign(campID int) (*models.Campaign, error)
|
|
|
|
PauseCampaign(campID int) error
|
|
|
|
CancelCampaign(campID int) error
|
|
|
|
FinishCampaign(campID int) error
|
2018-10-31 13:54:21 +01:00
|
|
|
CreateLink(url string) (string, error)
|
2018-10-25 15:51:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Runner handles the scheduling, processing, and queuing of campaigns
|
|
|
|
// and message pushes.
|
|
|
|
type Runner struct {
|
|
|
|
cfg Config
|
|
|
|
src DataSource
|
|
|
|
messengers map[string]messenger.Messenger
|
|
|
|
logger *log.Logger
|
|
|
|
|
|
|
|
// Campaigns that are currently running.
|
|
|
|
camps map[int]*models.Campaign
|
|
|
|
|
2018-10-31 13:54:21 +01:00
|
|
|
// Links generated using Track() are cached here so as to not query
|
|
|
|
// the database for the link UUID for every message sent. This has to
|
|
|
|
// be locked as it may be used externally when previewing campaigns.
|
|
|
|
links map[string]string
|
|
|
|
linksMutex sync.RWMutex
|
|
|
|
|
|
|
|
msgQueue chan *Message
|
2018-10-25 15:51:47 +02:00
|
|
|
subFetchQueue chan *models.Campaign
|
|
|
|
}
|
|
|
|
|
|
|
|
// Message represents an active subscriber that's being processed.
|
|
|
|
type Message struct {
|
|
|
|
Campaign *models.Campaign
|
|
|
|
Subscriber *models.Subscriber
|
|
|
|
UnsubscribeURL string
|
2018-10-31 13:54:21 +01:00
|
|
|
Body []byte
|
|
|
|
to string
|
2018-10-25 15:51:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Config has parameters for configuring the runner.
|
|
|
|
type Config struct {
|
|
|
|
Concurrency int
|
2018-10-31 13:54:21 +01:00
|
|
|
LinkTrackURL string
|
2018-10-25 15:51:47 +02:00
|
|
|
UnsubscribeURL string
|
|
|
|
}
|
|
|
|
|
|
|
|
// New returns a new instance of Mailer.
|
|
|
|
func New(cfg Config, src DataSource, l *log.Logger) *Runner {
|
|
|
|
r := Runner{
|
|
|
|
cfg: cfg,
|
|
|
|
messengers: make(map[string]messenger.Messenger),
|
|
|
|
src: src,
|
|
|
|
camps: make(map[int]*models.Campaign, 0),
|
2018-10-31 13:54:21 +01:00
|
|
|
links: make(map[string]string, 0),
|
2018-10-25 15:51:47 +02:00
|
|
|
logger: l,
|
|
|
|
subFetchQueue: make(chan *models.Campaign, 100),
|
2018-10-31 13:54:21 +01:00
|
|
|
msgQueue: make(chan *Message, cfg.Concurrency),
|
2018-10-25 15:51:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return &r
|
|
|
|
}
|
|
|
|
|
2018-10-31 13:54:21 +01:00
|
|
|
// NewMessage creates and returns a Message that is made available
|
|
|
|
// to message templates while they're compiled.
|
|
|
|
func (r *Runner) NewMessage(c *models.Campaign, s *models.Subscriber) *Message {
|
|
|
|
return &Message{
|
|
|
|
to: s.Email,
|
|
|
|
Campaign: c,
|
|
|
|
Subscriber: s,
|
|
|
|
UnsubscribeURL: fmt.Sprintf(r.cfg.UnsubscribeURL, c.UUID, s.UUID),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-25 15:51:47 +02:00
|
|
|
// AddMessenger adds a Messenger messaging backend to the runner process.
|
|
|
|
func (r *Runner) AddMessenger(msg messenger.Messenger) error {
|
|
|
|
id := msg.Name()
|
|
|
|
if _, ok := r.messengers[id]; ok {
|
|
|
|
return fmt.Errorf("messenger '%s' is already loaded", id)
|
|
|
|
}
|
|
|
|
r.messengers[id] = msg
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetMessengerNames returns the list of registered messengers.
|
|
|
|
func (r *Runner) GetMessengerNames() []string {
|
|
|
|
var names []string
|
|
|
|
for n := range r.messengers {
|
|
|
|
names = append(names, n)
|
|
|
|
}
|
|
|
|
|
|
|
|
return names
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasMessenger checks if a given messenger is registered.
|
|
|
|
func (r *Runner) HasMessenger(id string) bool {
|
|
|
|
_, ok := r.messengers[id]
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run is a blocking function (and hence should be invoked as a goroutine)
|
|
|
|
// that scans the source db at regular intervals for pending campaigns,
|
|
|
|
// and queues them for processing. The process queue fetches batches of
|
|
|
|
// subscribers and pushes messages to them for each queued campaign
|
|
|
|
// until all subscribers are exhausted, at which point, a campaign is marked
|
|
|
|
// as "finished".
|
|
|
|
func (r *Runner) Run(tick time.Duration) {
|
|
|
|
var (
|
|
|
|
tScanCampaigns = time.NewTicker(tick)
|
|
|
|
)
|
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
// Fetch all 'running campaigns that aren't being processed.
|
|
|
|
case <-tScanCampaigns.C:
|
|
|
|
campaigns, err := r.src.NextCampaigns(r.getPendingCampaignIDs())
|
|
|
|
if err != nil {
|
|
|
|
r.logger.Printf("error fetching campaigns: %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, c := range campaigns {
|
|
|
|
if err := r.addCampaign(c); err != nil {
|
|
|
|
r.logger.Printf("error processing campaign (%s): %v", c.Name, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
r.logger.Printf("start processing campaign (%s)", c.Name)
|
|
|
|
r.subFetchQueue <- c
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fetch next set of subscribers for the incoming campaign ID
|
|
|
|
// and process them.
|
|
|
|
case c := <-r.subFetchQueue:
|
|
|
|
has, err := r.nextSubscribers(c, batchSize)
|
|
|
|
if err != nil {
|
|
|
|
r.logger.Printf("error processing campaign batch (%s): %v", c.Name, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if has {
|
|
|
|
// There are more subscribers to fetch.
|
|
|
|
r.subFetchQueue <- c
|
|
|
|
} else {
|
|
|
|
// No subscribers.
|
|
|
|
if err := r.processExhaustedCampaign(c); err != nil {
|
|
|
|
r.logger.Printf("error processing campaign (%s): %v", c.Name, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SpawnWorkers spawns workers goroutines that push out messages.
|
|
|
|
func (r *Runner) SpawnWorkers() {
|
|
|
|
for i := 0; i < r.cfg.Concurrency; i++ {
|
2018-10-31 13:54:21 +01:00
|
|
|
go func(ch chan *Message) {
|
2018-10-25 15:51:47 +02:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case m := <-ch:
|
|
|
|
r.messengers[m.Campaign.MessengerID].Push(
|
|
|
|
m.Campaign.FromEmail,
|
|
|
|
m.Subscriber.Email,
|
|
|
|
m.Campaign.Subject,
|
2018-10-31 13:54:21 +01:00
|
|
|
m.Body)
|
2018-10-25 15:51:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}(r.msgQueue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-31 13:54:21 +01:00
|
|
|
// TemplateFuncs returns the template functions to be applied into
|
|
|
|
// compiled campaign templates.
|
|
|
|
func (r *Runner) TemplateFuncs(c *models.Campaign) template.FuncMap {
|
|
|
|
return template.FuncMap{
|
|
|
|
"Track": func(url, campUUID, subUUID string) string {
|
|
|
|
return r.trackLink(url, campUUID, subUUID)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-25 15:51:47 +02:00
|
|
|
// addCampaign adds a campaign to the process queue.
|
|
|
|
func (r *Runner) addCampaign(c *models.Campaign) error {
|
|
|
|
|
|
|
|
// Validate messenger.
|
|
|
|
if _, ok := r.messengers[c.MessengerID]; !ok {
|
|
|
|
r.src.CancelCampaign(c.ID)
|
|
|
|
return fmt.Errorf("unknown messenger %s on campaign %s", c.MessengerID, c.Name)
|
|
|
|
}
|
|
|
|
|
2018-10-31 13:54:21 +01:00
|
|
|
// Load the template.
|
|
|
|
if err := c.CompileTemplate(r.TemplateFuncs(c)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-10-25 15:51:47 +02:00
|
|
|
// Add the campaign to the active map.
|
|
|
|
r.camps[c.ID] = c
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// getPendingCampaignIDs returns the IDs of campaigns currently being processed.
|
|
|
|
func (r *Runner) getPendingCampaignIDs() []int64 {
|
|
|
|
// Needs to return an empty slice in case there are no campaigns.
|
|
|
|
ids := make([]int64, 0)
|
|
|
|
for _, c := range r.camps {
|
|
|
|
ids = append(ids, int64(c.ID))
|
|
|
|
}
|
|
|
|
|
|
|
|
return ids
|
|
|
|
}
|
|
|
|
|
|
|
|
// nextSubscribers processes the next batch of subscribers in a given campaign.
|
|
|
|
// If returns a bool indicating whether there any subscribers were processed
|
|
|
|
// in the current batch or not. This can happen when all the subscribers
|
|
|
|
// have been processed, or if a campaign has been paused or cancelled abruptly.
|
|
|
|
func (r *Runner) nextSubscribers(c *models.Campaign, batchSize int) (bool, error) {
|
|
|
|
// Fetch a batch of subscribers.
|
|
|
|
subs, err := r.src.NextSubscribers(c.ID, batchSize)
|
|
|
|
if err != nil {
|
|
|
|
return false, fmt.Errorf("error fetching campaign subscribers (%s): %v", c.Name, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// There are no subscribers.
|
|
|
|
if len(subs) == 0 {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Push messages.
|
|
|
|
for _, s := range subs {
|
2018-10-31 13:54:21 +01:00
|
|
|
m := r.NewMessage(c, s)
|
|
|
|
if err := m.Render(); err != nil {
|
|
|
|
r.logger.Printf("error rendering message (%s) (%s): %v", c.Name, s.Email, err)
|
2018-10-25 15:51:47 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send the message.
|
2018-10-31 13:54:21 +01:00
|
|
|
r.msgQueue <- m
|
2018-10-25 15:51:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Runner) processExhaustedCampaign(c *models.Campaign) error {
|
|
|
|
cm, err := r.src.GetCampaign(c.ID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// If a running campaign has exhausted subscribers, it's finished.
|
|
|
|
// Otherwise, it's paused or cancelled.
|
|
|
|
if cm.Status == models.CampaignStatusRunning {
|
|
|
|
if err := r.src.FinishCampaign(c.ID); err != nil {
|
|
|
|
r.logger.Printf("error finishing campaign (%s): %v", c.Name, err)
|
|
|
|
} else {
|
|
|
|
r.logger.Printf("campaign (%s) finished", c.Name)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
r.logger.Printf("stop processing campaign (%s)", c.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
delete(r.camps, c.ID)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-10-31 13:54:21 +01:00
|
|
|
// Render takes a Message, executes its pre-compiled Campaign.Tpl
|
|
|
|
// and applies the resultant bytes to Message.body to be used in messages.
|
|
|
|
func (m *Message) Render() error {
|
|
|
|
out := bytes.Buffer{}
|
|
|
|
if err := m.Campaign.Tpl.ExecuteTemplate(&out, models.BaseTpl, m); err != nil {
|
|
|
|
return err
|
2018-10-25 15:51:47 +02:00
|
|
|
}
|
2018-10-31 13:54:21 +01:00
|
|
|
m.Body = out.Bytes()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// trackLink register a URL and return its UUID to be used in message templates
|
|
|
|
// for tracking links.
|
|
|
|
func (r *Runner) trackLink(url, campUUID, subUUID string) string {
|
|
|
|
r.linksMutex.RLock()
|
|
|
|
if uu, ok := r.links[url]; ok {
|
|
|
|
return uu
|
|
|
|
}
|
|
|
|
r.linksMutex.RUnlock()
|
|
|
|
|
|
|
|
// Register link.
|
|
|
|
uu, err := r.src.CreateLink(url)
|
|
|
|
if err != nil {
|
|
|
|
r.logger.Printf("error registering tracking for link '%s': %v", url, err)
|
|
|
|
|
|
|
|
// If the registration fails, fail over to the original URL.
|
|
|
|
return url
|
|
|
|
}
|
|
|
|
|
|
|
|
r.linksMutex.Lock()
|
|
|
|
r.links[url] = uu
|
|
|
|
r.linksMutex.Unlock()
|
2018-10-25 15:51:47 +02:00
|
|
|
|
2018-10-31 13:54:21 +01:00
|
|
|
return fmt.Sprintf(r.cfg.LinkTrackURL, uu, campUUID, subUUID)
|
2018-10-25 15:51:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// CompileMessageTemplate takes a base template body string and a child (message) template
|
|
|
|
// body string, compiles both and inserts the child template as the named template "content"
|
|
|
|
// and returns the resultant template.
|
|
|
|
func CompileMessageTemplate(baseBody, childBody string) (*template.Template, error) {
|
|
|
|
// Compile the base template.
|
|
|
|
baseTPL, err := template.New(BaseTPL).Parse(baseBody)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error compiling base template: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compile the campaign message.
|
|
|
|
msgTpl, err := template.New(ContentTpl).Parse(childBody)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error compiling message: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
out, err := baseTPL.AddParseTree(ContentTpl, msgTpl.Tree)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error inserting child template: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return out, nil
|
|
|
|
}
|