2019-09-26 06:35:31 +02:00
|
|
|
package serv
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
2019-09-29 02:46:55 +02:00
|
|
|
"path"
|
2019-09-26 06:35:31 +02:00
|
|
|
"path/filepath"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/dosco/super-graph/migrate"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
var newMigrationText = `-- Write your migrate up statements here
|
|
|
|
|
|
|
|
---- create above / drop below ----
|
|
|
|
|
|
|
|
-- Write your migrate down statements here. If this migration is irreversible
|
|
|
|
-- Then delete the separator line above.
|
|
|
|
`
|
|
|
|
|
2019-09-28 17:34:03 +02:00
|
|
|
func cmdDBSetup(cmd *cobra.Command, args []string) {
|
2019-11-22 06:07:06 +01:00
|
|
|
initConfOnce()
|
2019-09-28 17:34:03 +02:00
|
|
|
cmdDBCreate(cmd, []string{})
|
|
|
|
cmdDBMigrate(cmd, []string{"up"})
|
2019-09-29 02:46:55 +02:00
|
|
|
|
|
|
|
sfile := path.Join(confPath, conf.SeedFile)
|
|
|
|
_, err := os.Stat(sfile)
|
|
|
|
|
|
|
|
if err == nil {
|
|
|
|
cmdDBSeed(cmd, []string{})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-11-28 07:25:46 +01:00
|
|
|
if !os.IsNotExist(err) {
|
2019-11-25 08:22:33 +01:00
|
|
|
errlog.Fatal().Err(err).Msgf("unable to check if '%s' exists", sfile)
|
2019-09-29 02:46:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
logger.Warn().Msgf("failed to read seed file '%s'", sfile)
|
2019-09-28 17:34:03 +02:00
|
|
|
}
|
|
|
|
|
2019-11-22 06:07:06 +01:00
|
|
|
func cmdDBReset(cmd *cobra.Command, args []string) {
|
|
|
|
initConfOnce()
|
2019-09-28 17:34:03 +02:00
|
|
|
|
2019-11-22 06:07:06 +01:00
|
|
|
if conf.Production {
|
2019-11-25 08:22:33 +01:00
|
|
|
errlog.Fatal().Msg("db:reset does not work in production")
|
2019-11-22 06:07:06 +01:00
|
|
|
return
|
2019-09-28 17:34:03 +02:00
|
|
|
}
|
2019-11-22 06:07:06 +01:00
|
|
|
cmdDBDrop(cmd, []string{})
|
|
|
|
cmdDBSetup(cmd, []string{})
|
|
|
|
}
|
2019-09-28 17:34:03 +02:00
|
|
|
|
2019-11-22 06:07:06 +01:00
|
|
|
func cmdDBCreate(cmd *cobra.Command, args []string) {
|
|
|
|
initConfOnce()
|
2019-09-28 17:34:03 +02:00
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
conn, err := initDB(conf, false)
|
|
|
|
if err != nil {
|
2019-11-25 08:22:33 +01:00
|
|
|
errlog.Fatal().Err(err).Msg("failed to connect to database")
|
2019-09-28 17:34:03 +02:00
|
|
|
}
|
|
|
|
defer conn.Close(ctx)
|
|
|
|
|
2019-09-29 21:20:59 +02:00
|
|
|
sql := fmt.Sprintf("CREATE DATABASE %s", conf.DB.DBName)
|
2019-09-28 17:34:03 +02:00
|
|
|
|
|
|
|
_, err = conn.Exec(ctx, sql)
|
|
|
|
if err != nil {
|
2019-11-25 08:22:33 +01:00
|
|
|
errlog.Fatal().Err(err).Msg("failed to create database")
|
2019-09-28 17:34:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
logger.Info().Msgf("created database '%s'", conf.DB.DBName)
|
|
|
|
}
|
|
|
|
|
|
|
|
func cmdDBDrop(cmd *cobra.Command, args []string) {
|
2019-11-22 06:07:06 +01:00
|
|
|
initConfOnce()
|
2019-09-28 17:34:03 +02:00
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
conn, err := initDB(conf, false)
|
|
|
|
if err != nil {
|
2019-11-25 08:22:33 +01:00
|
|
|
errlog.Fatal().Err(err).Msg("failed to connect to database")
|
2019-09-28 17:34:03 +02:00
|
|
|
}
|
|
|
|
defer conn.Close(ctx)
|
|
|
|
|
2019-09-29 21:20:59 +02:00
|
|
|
sql := fmt.Sprintf(`DROP DATABASE IF EXISTS %s`, conf.DB.DBName)
|
2019-09-28 17:34:03 +02:00
|
|
|
|
|
|
|
_, err = conn.Exec(ctx, sql)
|
|
|
|
if err != nil {
|
2019-11-25 08:22:33 +01:00
|
|
|
errlog.Fatal().Err(err).Msg("failed to create database")
|
2019-09-28 17:34:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
logger.Info().Msgf("dropped database '%s'", conf.DB.DBName)
|
|
|
|
}
|
|
|
|
|
|
|
|
func cmdDBNew(cmd *cobra.Command, args []string) {
|
2019-09-26 06:35:31 +02:00
|
|
|
if len(args) != 1 {
|
2019-11-28 07:25:46 +01:00
|
|
|
cmd.Help() //nolint: errcheck
|
2019-09-26 06:35:31 +02:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2019-11-22 06:07:06 +01:00
|
|
|
initConfOnce()
|
2019-09-26 06:35:31 +02:00
|
|
|
name := args[0]
|
|
|
|
|
|
|
|
m, err := migrate.FindMigrations(conf.MigrationsPath)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "Error loading migrations:\n %v\n", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2019-11-10 07:41:58 +01:00
|
|
|
mname := fmt.Sprintf("%d_%s.sql", len(m), name)
|
2019-09-26 06:35:31 +02:00
|
|
|
|
|
|
|
// Write new migration
|
|
|
|
mpath := filepath.Join(conf.MigrationsPath, mname)
|
|
|
|
mfile, err := os.OpenFile(mpath, os.O_CREATE|os.O_EXCL|os.O_WRONLY, 0666)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintln(os.Stderr, err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
defer mfile.Close()
|
|
|
|
|
|
|
|
_, err = mfile.WriteString(newMigrationText)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintln(os.Stderr, err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2019-09-27 08:19:24 +02:00
|
|
|
logger.Info().Msgf("created migration '%s'", mpath)
|
2019-09-26 06:35:31 +02:00
|
|
|
}
|
|
|
|
|
2019-09-28 17:34:03 +02:00
|
|
|
func cmdDBMigrate(cmd *cobra.Command, args []string) {
|
|
|
|
if len(args) == 0 {
|
2019-11-28 07:25:46 +01:00
|
|
|
cmd.Help() //nolint: errcheck
|
2019-09-28 17:34:03 +02:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2019-11-22 06:07:06 +01:00
|
|
|
initConfOnce()
|
2019-09-28 17:34:03 +02:00
|
|
|
dest := args[0]
|
|
|
|
|
|
|
|
conn, err := initDB(conf, true)
|
2019-09-26 06:35:31 +02:00
|
|
|
if err != nil {
|
2019-11-25 08:22:33 +01:00
|
|
|
errlog.Fatal().Err(err).Msg("failed to connect to database")
|
2019-09-26 06:35:31 +02:00
|
|
|
}
|
|
|
|
defer conn.Close(context.Background())
|
|
|
|
|
|
|
|
m, err := migrate.NewMigrator(conn, "schema_version")
|
|
|
|
if err != nil {
|
2019-11-25 08:22:33 +01:00
|
|
|
errlog.Fatal().Err(err).Msg("failed to initializing migrator")
|
2019-09-26 06:35:31 +02:00
|
|
|
}
|
2019-09-28 17:34:03 +02:00
|
|
|
|
|
|
|
m.Data = getMigrationVars()
|
2019-09-26 06:35:31 +02:00
|
|
|
|
|
|
|
err = m.LoadMigrations(conf.MigrationsPath)
|
|
|
|
if err != nil {
|
2019-11-25 08:22:33 +01:00
|
|
|
errlog.Fatal().Err(err).Msg("failed to load migrations")
|
2019-09-26 06:35:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(m.Migrations) == 0 {
|
2019-11-25 08:22:33 +01:00
|
|
|
errlog.Fatal().Msg("No migrations found")
|
2019-09-26 06:35:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
m.OnStart = func(sequence int32, name, direction, sql string) {
|
|
|
|
logger.Info().Msgf("%s executing %s %s\n%s\n\n",
|
|
|
|
time.Now().Format("2006-01-02 15:04:05"), name, direction, sql)
|
|
|
|
}
|
|
|
|
|
|
|
|
var currentVersion int32
|
|
|
|
currentVersion, err = m.GetCurrentVersion()
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "Unable to get current version:\n %v\n", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
mustParseDestination := func(d string) int32 {
|
|
|
|
var n int64
|
|
|
|
n, err = strconv.ParseInt(d, 10, 32)
|
|
|
|
if err != nil {
|
2019-11-25 08:22:33 +01:00
|
|
|
errlog.Fatal().Err(err).Msg("invalid destination")
|
2019-09-26 06:35:31 +02:00
|
|
|
}
|
|
|
|
return int32(n)
|
|
|
|
}
|
|
|
|
|
2019-09-28 17:34:03 +02:00
|
|
|
if dest == "up" {
|
2019-09-26 06:35:31 +02:00
|
|
|
err = m.Migrate()
|
|
|
|
|
2019-09-28 17:34:03 +02:00
|
|
|
} else if dest == "down" {
|
|
|
|
err = m.MigrateTo(currentVersion - 1)
|
|
|
|
|
2019-09-26 06:35:31 +02:00
|
|
|
} else if len(dest) >= 3 && dest[0:2] == "-+" {
|
|
|
|
err = m.MigrateTo(currentVersion - mustParseDestination(dest[2:]))
|
|
|
|
if err == nil {
|
|
|
|
err = m.MigrateTo(currentVersion)
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if len(dest) >= 2 && dest[0] == '-' {
|
|
|
|
err = m.MigrateTo(currentVersion - mustParseDestination(dest[1:]))
|
|
|
|
|
|
|
|
} else if len(dest) >= 2 && dest[0] == '+' {
|
|
|
|
err = m.MigrateTo(currentVersion + mustParseDestination(dest[1:]))
|
|
|
|
|
|
|
|
} else {
|
2019-11-28 07:25:46 +01:00
|
|
|
cmd.Help() //nolint: errcheck
|
2019-09-28 17:34:03 +02:00
|
|
|
os.Exit(1)
|
2019-09-26 06:35:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
logger.Info().Err(err).Send()
|
|
|
|
|
|
|
|
// if err, ok := err.(m.MigrationPgError); ok {
|
|
|
|
// if err.Detail != "" {
|
2019-11-25 08:22:33 +01:00
|
|
|
// info.Err(err).Msg(err.Detail)
|
2019-09-26 06:35:31 +02:00
|
|
|
// }
|
|
|
|
|
|
|
|
// if err.Position != 0 {
|
|
|
|
// ele, err := ExtractErrorLine(err.Sql, int(err.Position))
|
|
|
|
// if err != nil {
|
2019-11-25 08:22:33 +01:00
|
|
|
// errlog.Fatal().Err(err).Send()
|
2019-09-26 06:35:31 +02:00
|
|
|
// }
|
|
|
|
|
|
|
|
// prefix := fmt.Sprintf()
|
|
|
|
// logger.Info().Msgf("line %d, %s%s", ele.LineNum, prefix, ele.Text)
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// os.Exit(1)
|
|
|
|
}
|
2019-10-06 22:28:10 +02:00
|
|
|
|
2019-09-26 06:35:31 +02:00
|
|
|
logger.Info().Msg("migration done")
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-09-28 17:34:03 +02:00
|
|
|
func cmdDBStatus(cmd *cobra.Command, args []string) {
|
2019-11-22 06:07:06 +01:00
|
|
|
initConfOnce()
|
2019-09-27 08:19:24 +02:00
|
|
|
|
2019-09-28 17:34:03 +02:00
|
|
|
conn, err := initDB(conf, true)
|
2019-09-26 06:35:31 +02:00
|
|
|
if err != nil {
|
2019-11-25 08:22:33 +01:00
|
|
|
errlog.Fatal().Err(err).Msg("failed to connect to database")
|
2019-09-26 06:35:31 +02:00
|
|
|
}
|
|
|
|
defer conn.Close(context.Background())
|
|
|
|
|
|
|
|
m, err := migrate.NewMigrator(conn, "schema_version")
|
|
|
|
if err != nil {
|
2019-11-25 08:22:33 +01:00
|
|
|
errlog.Fatal().Err(err).Msg("failed to initialize migrator")
|
2019-09-26 06:35:31 +02:00
|
|
|
}
|
2019-09-28 17:34:03 +02:00
|
|
|
|
|
|
|
m.Data = getMigrationVars()
|
2019-09-26 06:35:31 +02:00
|
|
|
|
|
|
|
err = m.LoadMigrations(conf.MigrationsPath)
|
|
|
|
if err != nil {
|
2019-11-25 08:22:33 +01:00
|
|
|
errlog.Fatal().Err(err).Msg("failed to load migrations")
|
2019-09-26 06:35:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(m.Migrations) == 0 {
|
2019-11-25 08:22:33 +01:00
|
|
|
errlog.Fatal().Msg("no migrations found")
|
2019-09-26 06:35:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
mver, err := m.GetCurrentVersion()
|
|
|
|
if err != nil {
|
2019-11-25 08:22:33 +01:00
|
|
|
errlog.Fatal().Err(err).Msg("failed to retrieve migration")
|
2019-09-26 06:35:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
var status string
|
|
|
|
behindCount := len(m.Migrations) - int(mver)
|
|
|
|
if behindCount == 0 {
|
|
|
|
status = "up to date"
|
|
|
|
} else {
|
|
|
|
status = "migration(s) pending"
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Println("status: ", status)
|
2019-10-03 09:08:01 +02:00
|
|
|
fmt.Printf("version: %d of %d\n", mver, len(m.Migrations))
|
2019-09-26 06:35:31 +02:00
|
|
|
fmt.Println("host: ", conf.DB.Host)
|
|
|
|
fmt.Println("database:", conf.DB.DBName)
|
|
|
|
}
|
|
|
|
|
|
|
|
type ErrorLineExtract struct {
|
|
|
|
LineNum int // Line number starting with 1
|
|
|
|
ColumnNum int // Column number starting with 1
|
|
|
|
Text string // Text of the line without a new line character.
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExtractErrorLine takes source and character position extracts the line
|
|
|
|
// number, column number, and the line of text.
|
|
|
|
//
|
|
|
|
// The first character is position 1.
|
|
|
|
func ExtractErrorLine(source string, position int) (ErrorLineExtract, error) {
|
|
|
|
ele := ErrorLineExtract{LineNum: 1}
|
|
|
|
|
|
|
|
if position > len(source) {
|
|
|
|
return ele, fmt.Errorf("position (%d) is greater than source length (%d)", position, len(source))
|
|
|
|
}
|
|
|
|
|
|
|
|
lines := strings.SplitAfter(source, "\n")
|
|
|
|
for _, ele.Text = range lines {
|
|
|
|
if position-len(ele.Text) < 1 {
|
|
|
|
ele.ColumnNum = position
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
ele.LineNum += 1
|
|
|
|
position -= len(ele.Text)
|
|
|
|
}
|
|
|
|
|
|
|
|
ele.Text = strings.TrimSuffix(ele.Text, "\n")
|
|
|
|
|
|
|
|
return ele, nil
|
|
|
|
}
|
2019-09-28 17:34:03 +02:00
|
|
|
|
|
|
|
func getMigrationVars() map[string]interface{} {
|
|
|
|
return map[string]interface{}{
|
|
|
|
"app_name": strings.Title(conf.AppName),
|
|
|
|
"app_name_slug": strings.ToLower(strings.Replace(conf.AppName, " ", "_", -1)),
|
|
|
|
"env": strings.ToLower(os.Getenv("GO_ENV")),
|
|
|
|
}
|
|
|
|
}
|