listmonk/install.go

146 lines
3.5 KiB
Go
Raw Normal View History

2018-10-25 15:51:47 +02:00
package main
import (
"errors"
2018-10-25 15:51:47 +02:00
"fmt"
"io/ioutil"
"os"
"strings"
"time"
2018-10-25 15:51:47 +02:00
"github.com/jmoiron/sqlx"
"github.com/knadh/goyesql"
"github.com/knadh/listmonk/models"
"github.com/lib/pq"
uuid "github.com/satori/go.uuid"
2018-10-25 15:51:47 +02:00
)
// install runs the first time setup of creating and
// migrating the database and creating the super user.
func install(app *App, qMap goyesql.Queries) {
fmt.Println("")
fmt.Println("** First time installation **")
fmt.Printf("** IMPORTANT: This will wipe existing listmonk tables and types in the DB '%s' **",
2019-06-26 13:23:23 +02:00
ko.String("db.database"))
fmt.Println("")
2018-10-25 15:51:47 +02:00
var ok string
fmt.Print("Continue (y/n)? ")
if _, err := fmt.Scanf("%s", &ok); err != nil {
logger.Fatalf("Error reading value from terminal: %v", err)
2018-10-25 15:51:47 +02:00
}
if strings.ToLower(ok) != "y" {
fmt.Println("Installation cancelled.")
return
2018-10-25 15:51:47 +02:00
}
// Migrate the tables.
err := installMigrate(app.DB, app)
2018-10-25 15:51:47 +02:00
if err != nil {
logger.Fatalf("Error migrating DB schema: %v", err)
}
// Load the queries.
var q Queries
if err := scanQueriesToStruct(&q, qMap, app.DB.Unsafe()); err != nil {
logger.Fatalf("error loading SQL queries: %v", err)
}
// Sample list.
var listID int
if err := q.CreateList.Get(&listID,
uuid.NewV4().String(),
"Default list",
models.ListTypePublic,
pq.StringArray{"test"},
); err != nil {
logger.Fatalf("Error creating superadmin user: %v", err)
}
// Sample subscriber.
if _, err := q.UpsertSubscriber.Exec(
uuid.NewV4(),
"john@example.com",
"John Doe",
`{"type": "known", "good": true, "city": "Bengaluru"}`,
2018-10-25 15:51:47 +02:00
pq.Int64Array{int64(listID)},
); err != nil {
logger.Fatalf("Error creating subscriber: %v", err)
}
// Default template.
tplBody, err := ioutil.ReadFile("email-templates/default.tpl")
2018-10-25 15:51:47 +02:00
if err != nil {
tplBody = []byte(tplTag)
2018-10-25 15:51:47 +02:00
}
var tplID int
if err := q.CreateTemplate.Get(&tplID,
"Default template",
string(tplBody),
); err != nil {
logger.Fatalf("error creating default template: %v", err)
2018-10-25 15:51:47 +02:00
}
if _, err := q.SetDefaultTemplate.Exec(tplID); err != nil {
logger.Fatalf("error setting default template: %v", err)
}
// Sample campaign.
sendAt := time.Now()
sendAt.Add(time.Minute * 43200)
if _, err := q.CreateCampaign.Exec(uuid.NewV4(),
"Test campaign",
"Welcome to listmonk",
"No Reply <noreply@yoursite.com>",
`<h3>Hi {{ .Subscriber.FirstName }}!</h3>
This is a test e-mail campaign. Your second name is {{ .Subscriber.LastName }} and you are from {{ .Subscriber.Attribs.city }}.`,
"richtext",
sendAt,
pq.StringArray{"test-campaign"},
"email",
1,
pq.Int64Array{1},
); err != nil {
logger.Fatalf("error creating sample campaign: %v", err)
2018-10-25 15:51:47 +02:00
}
logger.Printf("Setup complete")
2019-07-15 17:06:08 +02:00
logger.Printf(`Run the program and access the dashboard at %s`, ko.String("app.address"))
2018-10-25 15:51:47 +02:00
}
// installMigrate executes the SQL schema and creates the necessary tables and types.
func installMigrate(db *sqlx.DB, app *App) error {
q, err := app.FS.Read("/schema.sql")
2018-10-25 15:51:47 +02:00
if err != nil {
return err
}
_, err = db.Query(string(q))
if err != nil {
return err
}
return nil
}
func newConfigFile() error {
if _, err := os.Stat("config.toml"); !os.IsNotExist(err) {
return errors.New("config.toml exists. Remove it to generate a new one")
}
// Initialize the static file system into which all
// required static assets (.sql, .js files etc.) are loaded.
fs, err := initFileSystem(os.Args[0])
if err != nil {
return err
}
b, err := fs.Read("config.toml.sample")
if err != nil {
return fmt.Errorf("error reading sample config (is binary stuffed?): %v", err)
}
return ioutil.WriteFile("config.toml", b, 0644)
}