mukan-ignite/ignite/cmd/scaffold_migration.go
Mukan Erkin Törük c32551b6f7
Some checks failed
Docs Deploy / build_and_deploy (push) Has been cancelled
Generate Docs / cli (push) Has been cancelled
Generate Config Doc / cli (push) Has been cancelled
Go formatting / go-formatting (push) Has been cancelled
Check links / markdown-link-check (push) Has been cancelled
Integration / pre-test (push) Has been cancelled
Integration / test on (push) Has been cancelled
Integration / status (push) Has been cancelled
Lint / Lint Go code (push) Has been cancelled
Test / test (ubuntu-latest) (push) Has been cancelled
refactor: replace all github.com upstream refs with git.cw.tr/mukan-network
2026-05-11 03:36:24 +03:00

77 lines
1.9 KiB
Go

package ignitecmd
import (
"github.com/spf13/cobra"
"git.cw.tr/mukan-network/mukan-ignite/ignite/pkg/cache"
"git.cw.tr/mukan-network/mukan-ignite/ignite/pkg/cliui"
"git.cw.tr/mukan-network/mukan-ignite/ignite/pkg/xgenny"
"git.cw.tr/mukan-network/mukan-ignite/ignite/services/scaffolder"
)
// NewScaffoldMigration returns the command to scaffold a module migration.
func NewScaffoldMigration() *cobra.Command {
c := &cobra.Command{
Use: "migration [module]",
Short: "Module migration boilerplate",
Long: `Scaffold no-op migration boilerplate for an existing Cosmos SDK module.
This command creates a new migration file in "x/<module>/migrations/vN/",
increments the module consensus version, and registers the new migration handler
inside "x/<module>/module/module.go".`,
Args: cobra.ExactArgs(1),
PreRunE: migrationPreRunHandler,
RunE: scaffoldMigrationHandler,
}
flagSetPath(c)
c.Flags().AddFlagSet(flagSetYes())
return c
}
func scaffoldMigrationHandler(cmd *cobra.Command, args []string) error {
var (
moduleName = args[0]
appPath = flagGetPath(cmd)
)
session := cliui.New(
cliui.StartSpinnerWithText(statusScaffolding),
cliui.WithoutUserInteraction(getYes(cmd)),
)
defer session.End()
cfg, _, err := getChainConfig(cmd)
if err != nil {
return err
}
sc, err := scaffolder.New(cmd.Context(), appPath, cfg.Build.Proto.Path)
if err != nil {
return err
}
if err := sc.CreateModuleMigration(moduleName); err != nil {
return err
}
sm, err := sc.ApplyModifications(xgenny.ApplyPreRun(scaffolder.AskOverwriteFiles(session)))
if err != nil {
return err
}
if err := sc.PostScaffold(cmd.Context(), cache.Storage{}, true); err != nil {
return err
}
modificationsStr, err := sm.String()
if err != nil {
return err
}
session.Println(modificationsStr)
session.Printf("\n🎉 Migration added to module %s.\n\n", moduleName)
return nil
}