diff options
Diffstat (limited to 'cmd/app/migrator')
-rw-r--r-- | cmd/app/migrator/migrate/init.go | 16 | ||||
-rw-r--r-- | cmd/app/migrator/migrate/migrate.go | 30 | ||||
-rw-r--r-- | cmd/app/migrator/migrate/rollback.go | 30 | ||||
-rw-r--r-- | cmd/app/migrator/migrator.go | 83 | ||||
-rw-r--r-- | cmd/app/migrator/migrator/migrator.go | 23 |
5 files changed, 182 insertions, 0 deletions
diff --git a/cmd/app/migrator/migrate/init.go b/cmd/app/migrator/migrate/init.go new file mode 100644 index 0000000..ec689f8 --- /dev/null +++ b/cmd/app/migrator/migrate/init.go @@ -0,0 +1,16 @@ +package migrate + +import ( + "github.com/urfave/cli/v2" + "go.neonxp.ru/framework/cmd/app/migrator/migrator" + "go.neonxp.ru/framework/migrations" +) + +func Init(c *cli.Context) error { + m, err := migrator.New(c, migrations.Migrations) + if err != nil { + return err + } + + return m.Init(c.Context) +} diff --git a/cmd/app/migrator/migrate/migrate.go b/cmd/app/migrator/migrate/migrate.go new file mode 100644 index 0000000..0cef9b4 --- /dev/null +++ b/cmd/app/migrator/migrate/migrate.go @@ -0,0 +1,30 @@ +package migrate + +import ( + "fmt" + + "github.com/urfave/cli/v2" + "go.neonxp.ru/framework/cmd/app/migrator/migrator" + "go.neonxp.ru/framework/migrations" +) + +func Migrate(c *cli.Context) error { + m, err := migrator.New(c, migrations.Migrations) + if err != nil { + return err + } + + group, err := m.Migrate(c.Context) + if err != nil { + return err + } + + if group.ID == 0 { + fmt.Printf("there are no new migrations to run\n") + return nil + } + + fmt.Printf("migrated to %s\n", group) + + return nil +} diff --git a/cmd/app/migrator/migrate/rollback.go b/cmd/app/migrator/migrate/rollback.go new file mode 100644 index 0000000..39f2171 --- /dev/null +++ b/cmd/app/migrator/migrate/rollback.go @@ -0,0 +1,30 @@ +package migrate + +import ( + "fmt" + + "github.com/urfave/cli/v2" + "go.neonxp.ru/framework/cmd/app/migrator/migrator" + "go.neonxp.ru/framework/migrations" +) + +func Rollback(c *cli.Context) error { + m, err := migrator.New(c, migrations.Migrations) + if err != nil { + return err + } + + group, err := m.Rollback(c.Context) + if err != nil { + return err + } + + if group.ID == 0 { + fmt.Printf("there are no groups to roll back\n") + return nil + } + + fmt.Printf("rolled back %s\n", group) + + return nil +} diff --git a/cmd/app/migrator/migrator.go b/cmd/app/migrator/migrator.go new file mode 100644 index 0000000..fa5b03b --- /dev/null +++ b/cmd/app/migrator/migrator.go @@ -0,0 +1,83 @@ +package migrator + +import ( + "fmt" + "strings" + + "github.com/urfave/cli/v2" + "go.neonxp.ru/framework/cmd/app/migrator/migrate" + "go.neonxp.ru/framework/cmd/app/migrator/migrator" + "go.neonxp.ru/framework/migrations" +) + +func Migrator() *cli.Command { + return &cli.Command{ + Name: "db", + Usage: "manage database migrations", + Subcommands: []*cli.Command{ + { + Name: "init", + Usage: "create migration tables", + Flags: []cli.Flag{ + &cli.StringFlag{ + Name: "config", + Value: "./config/config.yaml", + Usage: "config", + }, + }, + Action: migrate.Init, + }, + { + Name: "migrate", + Usage: "migrate database", + Flags: []cli.Flag{ + &cli.StringFlag{ + Name: "config", + Value: "./config/config.yaml", + Usage: "config", + }, + }, + Action: migrate.Migrate, + }, + { + Name: "rollback", + Usage: "rollback the last migration group", + Flags: []cli.Flag{ + &cli.StringFlag{ + Name: "config", + Value: "./config/config.yaml", + Usage: "config", + }, + }, + Action: migrate.Rollback, + }, + + { + Name: "create", + Usage: "create migration", + Flags: []cli.Flag{ + &cli.StringFlag{ + Name: "config", + Value: "./config/config.yaml", + Usage: "config", + }, + }, + Action: func(c *cli.Context) error { + migrator, err := migrator.New(c, migrations.Migrations) + if err != nil { + return err + } + + name := strings.Join(c.Args().Slice(), "_") + mf, err := migrator.CreateGoMigration(c.Context, name) + if err != nil { + return err + } + fmt.Printf("created migration %s (%s)\n", mf.Name, mf.Path) + + return nil + }, + }, + }, + } +} diff --git a/cmd/app/migrator/migrator/migrator.go b/cmd/app/migrator/migrator/migrator.go new file mode 100644 index 0000000..cd22dd5 --- /dev/null +++ b/cmd/app/migrator/migrator/migrator.go @@ -0,0 +1,23 @@ +package migrator + +import ( + "github.com/uptrace/bun/migrate" + "github.com/urfave/cli/v2" + "go.neonxp.ru/framework/pkg/config" + "go.neonxp.ru/framework/pkg/db" +) + +func New(c *cli.Context, mig *migrate.Migrations) (*migrate.Migrator, error) { + configFile := c.String("config") + + cfg, err := config.New(configFile) + if err != nil { + return nil, err + } + + dbClient := db.New(cfg.DB) + + migrator := migrate.NewMigrator(dbClient, mig) + + return migrator, nil +} |