2018-10-25 21:51:47 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2018-12-18 13:24:55 +08:00
|
|
|
"context"
|
|
|
|
"database/sql"
|
2018-10-25 21:51:47 +08:00
|
|
|
"fmt"
|
2020-11-17 16:29:32 +08:00
|
|
|
"time"
|
2018-10-25 21:51:47 +08:00
|
|
|
|
|
|
|
"github.com/jmoiron/sqlx"
|
2019-03-09 15:46:47 +08:00
|
|
|
"github.com/lib/pq"
|
2018-10-25 21:51:47 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// Queries contains all prepared SQL queries.
|
|
|
|
type Queries struct {
|
2020-07-05 00:55:02 +08:00
|
|
|
GetDashboardCharts *sqlx.Stmt `query:"get-dashboard-charts"`
|
|
|
|
GetDashboardCounts *sqlx.Stmt `query:"get-dashboard-counts"`
|
2018-11-05 13:49:08 +08:00
|
|
|
|
2018-12-18 13:24:55 +08:00
|
|
|
InsertSubscriber *sqlx.Stmt `query:"insert-subscriber"`
|
|
|
|
UpsertSubscriber *sqlx.Stmt `query:"upsert-subscriber"`
|
2020-08-01 19:15:29 +08:00
|
|
|
UpsertBlocklistSubscriber *sqlx.Stmt `query:"upsert-blocklist-subscriber"`
|
2018-12-18 13:24:55 +08:00
|
|
|
GetSubscriber *sqlx.Stmt `query:"get-subscriber"`
|
|
|
|
GetSubscribersByEmails *sqlx.Stmt `query:"get-subscribers-by-emails"`
|
|
|
|
GetSubscriberLists *sqlx.Stmt `query:"get-subscriber-lists"`
|
2019-12-01 20:18:36 +08:00
|
|
|
GetSubscriberListsLazy *sqlx.Stmt `query:"get-subscriber-lists-lazy"`
|
2019-07-21 23:52:26 +08:00
|
|
|
SubscriberExists *sqlx.Stmt `query:"subscriber-exists"`
|
2018-12-18 13:24:55 +08:00
|
|
|
UpdateSubscriber *sqlx.Stmt `query:"update-subscriber"`
|
2020-08-01 19:15:29 +08:00
|
|
|
BlocklistSubscribers *sqlx.Stmt `query:"blocklist-subscribers"`
|
2018-12-18 13:24:55 +08:00
|
|
|
AddSubscribersToLists *sqlx.Stmt `query:"add-subscribers-to-lists"`
|
|
|
|
DeleteSubscriptions *sqlx.Stmt `query:"delete-subscriptions"`
|
2019-12-01 20:18:36 +08:00
|
|
|
ConfirmSubscriptionOptin *sqlx.Stmt `query:"confirm-subscription-optin"`
|
2018-12-18 13:24:55 +08:00
|
|
|
UnsubscribeSubscribersFromLists *sqlx.Stmt `query:"unsubscribe-subscribers-from-lists"`
|
|
|
|
DeleteSubscribers *sqlx.Stmt `query:"delete-subscribers"`
|
|
|
|
Unsubscribe *sqlx.Stmt `query:"unsubscribe"`
|
2019-07-21 21:48:41 +08:00
|
|
|
ExportSubscriberData *sqlx.Stmt `query:"export-subscriber-data"`
|
2018-12-18 13:24:55 +08:00
|
|
|
|
|
|
|
// Non-prepared arbitrary subscriber queries.
|
|
|
|
QuerySubscribers string `query:"query-subscribers"`
|
2021-01-23 20:53:29 +08:00
|
|
|
QuerySubscribersForExport string `query:"query-subscribers-for-export"`
|
2018-12-18 13:24:55 +08:00
|
|
|
QuerySubscribersTpl string `query:"query-subscribers-template"`
|
|
|
|
DeleteSubscribersByQuery string `query:"delete-subscribers-by-query"`
|
|
|
|
AddSubscribersToListsByQuery string `query:"add-subscribers-to-lists-by-query"`
|
2020-08-01 19:15:29 +08:00
|
|
|
BlocklistSubscribersByQuery string `query:"blocklist-subscribers-by-query"`
|
2018-12-18 13:24:55 +08:00
|
|
|
DeleteSubscriptionsByQuery string `query:"delete-subscriptions-by-query"`
|
|
|
|
UnsubscribeSubscribersFromListsByQuery string `query:"unsubscribe-subscribers-from-lists-by-query"`
|
2018-10-25 21:51:47 +08:00
|
|
|
|
2019-05-15 00:36:14 +08:00
|
|
|
CreateList *sqlx.Stmt `query:"create-list"`
|
2020-10-24 22:30:29 +08:00
|
|
|
GetLists string `query:"get-lists"`
|
2019-12-01 20:18:36 +08:00
|
|
|
GetListsByOptin *sqlx.Stmt `query:"get-lists-by-optin"`
|
2019-05-15 00:36:14 +08:00
|
|
|
UpdateList *sqlx.Stmt `query:"update-list"`
|
|
|
|
UpdateListsDate *sqlx.Stmt `query:"update-lists-date"`
|
|
|
|
DeleteLists *sqlx.Stmt `query:"delete-lists"`
|
2018-10-25 21:51:47 +08:00
|
|
|
|
|
|
|
CreateCampaign *sqlx.Stmt `query:"create-campaign"`
|
2020-10-24 22:30:29 +08:00
|
|
|
QueryCampaigns string `query:"query-campaigns"`
|
2019-03-30 15:01:24 +08:00
|
|
|
GetCampaign *sqlx.Stmt `query:"get-campaign"`
|
2018-10-26 13:48:17 +08:00
|
|
|
GetCampaignForPreview *sqlx.Stmt `query:"get-campaign-for-preview"`
|
2018-10-25 21:51:47 +08:00
|
|
|
GetCampaignStats *sqlx.Stmt `query:"get-campaign-stats"`
|
2019-04-01 19:37:24 +08:00
|
|
|
GetCampaignStatus *sqlx.Stmt `query:"get-campaign-status"`
|
2018-10-25 21:51:47 +08:00
|
|
|
NextCampaigns *sqlx.Stmt `query:"next-campaigns"`
|
|
|
|
NextCampaignSubscribers *sqlx.Stmt `query:"next-campaign-subscribers"`
|
|
|
|
GetOneCampaignSubscriber *sqlx.Stmt `query:"get-one-campaign-subscriber"`
|
|
|
|
UpdateCampaign *sqlx.Stmt `query:"update-campaign"`
|
|
|
|
UpdateCampaignStatus *sqlx.Stmt `query:"update-campaign-status"`
|
|
|
|
UpdateCampaignCounts *sqlx.Stmt `query:"update-campaign-counts"`
|
2018-11-02 15:50:32 +08:00
|
|
|
RegisterCampaignView *sqlx.Stmt `query:"register-campaign-view"`
|
2018-10-25 21:51:47 +08:00
|
|
|
DeleteCampaign *sqlx.Stmt `query:"delete-campaign"`
|
|
|
|
|
|
|
|
InsertMedia *sqlx.Stmt `query:"insert-media"`
|
|
|
|
GetMedia *sqlx.Stmt `query:"get-media"`
|
|
|
|
DeleteMedia *sqlx.Stmt `query:"delete-media"`
|
|
|
|
|
|
|
|
CreateTemplate *sqlx.Stmt `query:"create-template"`
|
|
|
|
GetTemplates *sqlx.Stmt `query:"get-templates"`
|
|
|
|
UpdateTemplate *sqlx.Stmt `query:"update-template"`
|
|
|
|
SetDefaultTemplate *sqlx.Stmt `query:"set-default-template"`
|
|
|
|
DeleteTemplate *sqlx.Stmt `query:"delete-template"`
|
|
|
|
|
2018-10-31 20:54:21 +08:00
|
|
|
CreateLink *sqlx.Stmt `query:"create-link"`
|
|
|
|
RegisterLinkClick *sqlx.Stmt `query:"register-link-click"`
|
|
|
|
|
2020-07-08 19:00:14 +08:00
|
|
|
GetSettings *sqlx.Stmt `query:"get-settings"`
|
|
|
|
UpdateSettings *sqlx.Stmt `query:"update-settings"`
|
|
|
|
|
2018-10-25 21:51:47 +08:00
|
|
|
// GetStats *sqlx.Stmt `query:"get-stats"`
|
|
|
|
}
|
|
|
|
|
2019-12-05 19:58:22 +08:00
|
|
|
// dbConf contains database config required for connecting to a DB.
|
|
|
|
type dbConf struct {
|
2020-11-17 16:29:32 +08:00
|
|
|
Host string `koanf:"host"`
|
|
|
|
Port int `koanf:"port"`
|
|
|
|
User string `koanf:"user"`
|
|
|
|
Password string `koanf:"password"`
|
|
|
|
DBName string `koanf:"database"`
|
|
|
|
SSLMode string `koanf:"ssl_mode"`
|
|
|
|
MaxOpen int `koanf:"max_open"`
|
|
|
|
MaxIdle int `koanf:"max_idle"`
|
|
|
|
MaxLifetime time.Duration `koanf:"max_lifetime"`
|
2019-12-05 19:58:22 +08:00
|
|
|
}
|
|
|
|
|
2018-10-25 21:51:47 +08:00
|
|
|
// connectDB initializes a database connection.
|
2019-12-05 19:58:22 +08:00
|
|
|
func connectDB(c dbConf) (*sqlx.DB, error) {
|
2018-10-25 21:51:47 +08:00
|
|
|
db, err := sqlx.Connect("postgres",
|
2019-12-05 19:58:22 +08:00
|
|
|
fmt.Sprintf("host=%s port=%d user=%s password=%s dbname=%s sslmode=%s",
|
|
|
|
c.Host, c.Port, c.User, c.Password, c.DBName, c.SSLMode))
|
2018-10-25 21:51:47 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-12-05 19:58:22 +08:00
|
|
|
db.SetMaxOpenConns(c.MaxOpen)
|
|
|
|
db.SetMaxIdleConns(c.MaxIdle)
|
2020-11-17 16:29:32 +08:00
|
|
|
db.SetConnMaxLifetime(c.MaxLifetime)
|
2018-10-25 21:51:47 +08:00
|
|
|
return db, nil
|
|
|
|
}
|
2018-12-18 13:24:55 +08:00
|
|
|
|
|
|
|
// compileSubscriberQueryTpl takes a arbitrary WHERE expressions
|
|
|
|
// to filter subscribers from the subscribers table and prepares a query
|
|
|
|
// out of it using the raw `query-subscribers-template` query template.
|
|
|
|
// While doing this, a readonly transaction is created and the query is
|
|
|
|
// dry run on it to ensure that it is indeed readonly.
|
|
|
|
func (q *Queries) compileSubscriberQueryTpl(exp string, db *sqlx.DB) (string, error) {
|
|
|
|
tx, err := db.BeginTxx(context.Background(), &sql.TxOptions{ReadOnly: true})
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2019-12-05 23:57:31 +08:00
|
|
|
defer tx.Rollback()
|
2018-12-18 13:24:55 +08:00
|
|
|
|
|
|
|
// Perform the dry run.
|
|
|
|
if exp != "" {
|
|
|
|
exp = " AND " + exp
|
|
|
|
}
|
|
|
|
stmt := fmt.Sprintf(q.QuerySubscribersTpl, exp)
|
|
|
|
if _, err := tx.Exec(stmt, true, pq.Int64Array{}); err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return stmt, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// compileSubscriberQueryTpl takes a arbitrary WHERE expressions and a subscriber
|
2020-08-01 19:15:29 +08:00
|
|
|
// query template that depends on the filter (eg: delete by query, blocklist by query etc.)
|
2018-12-18 13:24:55 +08:00
|
|
|
// combines and executes them.
|
|
|
|
func (q *Queries) execSubscriberQueryTpl(exp, tpl string, listIDs []int64, db *sqlx.DB, args ...interface{}) error {
|
|
|
|
// Perform a dry run.
|
|
|
|
filterExp, err := q.compileSubscriberQueryTpl(exp, db)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(listIDs) == 0 {
|
|
|
|
listIDs = pq.Int64Array{}
|
|
|
|
}
|
|
|
|
// First argument is the boolean indicating if the query is a dry run.
|
|
|
|
a := append([]interface{}{false, pq.Int64Array(listIDs)}, args...)
|
|
|
|
if _, err := db.Exec(fmt.Sprintf(tpl, filterExp), a...); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|