mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
47 lines
1.1 KiB
Go
47 lines
1.1 KiB
Go
package commands
|
|
|
|
import (
|
|
"net/url"
|
|
|
|
"github.com/hasura/graphql-engine/cli"
|
|
"github.com/hasura/graphql-engine/cli/util"
|
|
"github.com/pkg/errors"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func newMigrateStatusCmd(ec *cli.ExecutionContext) *cobra.Command {
|
|
opts := &migrateStatusOptions{
|
|
EC: ec,
|
|
}
|
|
migrateStatusCmd := &cobra.Command{
|
|
Use: "status",
|
|
Short: "Display current status of migrations on a database",
|
|
SilenceUsage: true,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
return opts.run()
|
|
},
|
|
}
|
|
|
|
return migrateStatusCmd
|
|
}
|
|
|
|
type migrateStatusOptions struct {
|
|
EC *cli.ExecutionContext
|
|
}
|
|
|
|
func (o *migrateStatusOptions) run() error {
|
|
dbURL, err := url.Parse(o.EC.Config.Endpoint)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error parsing Endpoint")
|
|
}
|
|
|
|
dbURL.Scheme = "hasuradb"
|
|
dbURL.User = url.UserPassword("admin", o.EC.Config.AccessKey)
|
|
status, err := util.ExecuteStatus("file://"+o.EC.MigrationDir, dbURL.String())
|
|
if err != nil {
|
|
return errors.Wrap(err, "cannot fetch migrate status")
|
|
}
|
|
o.EC.Logger.Println(status)
|
|
return nil
|
|
}
|