Some checks are pending
Docs Deploy / build_and_deploy (push) Waiting to run
Generate Docs / cli (push) Waiting to run
Generate Config Doc / cli (push) Waiting to run
Go formatting / go-formatting (push) Waiting to run
Check links / markdown-link-check (push) Waiting to run
Integration / pre-test (push) Waiting to run
Integration / test on (push) Blocked by required conditions
Integration / status (push) Blocked by required conditions
Lint / Lint Go code (push) Waiting to run
Test / test (ubuntu-latest) (push) Waiting to run
96 lines
2.3 KiB
Go
96 lines
2.3 KiB
Go
package ignitecmd
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/ignite/cli/v29/ignite/pkg/cliui"
|
|
"github.com/ignite/cli/v29/ignite/pkg/xgenny"
|
|
"github.com/ignite/cli/v29/ignite/services/scaffolder"
|
|
)
|
|
|
|
// NewScaffoldConfigs returns the command to scaffold a Cosmos SDK configs into a module.
|
|
func NewScaffoldConfigs() *cobra.Command {
|
|
c := &cobra.Command{
|
|
Use: "configs [configs]...",
|
|
Short: "Configs for a custom Cosmos SDK module",
|
|
Long: `Scaffold a new config for a Cosmos SDK module.
|
|
|
|
A Cosmos SDK module can have configurations. An example of a config is "address prefix" of the
|
|
"auth" module. A config can be scaffolded into a module using the "--module-configs" into
|
|
the scaffold module command or using the "scaffold configs" command. By default
|
|
configs are of type "string", but you can specify a type for each config. For example:
|
|
|
|
ignite scaffold configs foo baz:uint bar:bool
|
|
|
|
Refer to Cosmos SDK documentation to learn more about modules, dependencies and
|
|
configs.
|
|
`,
|
|
Args: cobra.MinimumNArgs(1),
|
|
PreRunE: migrationPreRunHandler,
|
|
RunE: scaffoldConfigsHandler,
|
|
}
|
|
|
|
flagSetPath(c)
|
|
flagSetClearCache(c)
|
|
|
|
c.Flags().AddFlagSet(flagSetYes())
|
|
|
|
c.Flags().String(flagModule, "", "module to add the query into (default: app's main module)")
|
|
|
|
return c
|
|
}
|
|
|
|
func scaffoldConfigsHandler(cmd *cobra.Command, args []string) error {
|
|
var (
|
|
configs = args[0:]
|
|
appPath = flagGetPath(cmd)
|
|
moduleName = flagGetModule(cmd)
|
|
)
|
|
|
|
session := cliui.New(
|
|
cliui.StartSpinnerWithText(statusScaffolding),
|
|
cliui.WithoutUserInteraction(getYes(cmd)),
|
|
)
|
|
defer session.End()
|
|
|
|
cfg, _, err := getChainConfig(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
cacheStorage, err := newCache(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
sc, err := scaffolder.New(cmd.Context(), appPath, cfg.Build.Proto.Path)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = sc.CreateConfigs(moduleName, configs...)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
sm, err := sc.ApplyModifications(xgenny.ApplyPreRun(scaffolder.AskOverwriteFiles(session)))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := sc.PostScaffold(cmd.Context(), cacheStorage, false); err != nil {
|
|
return err
|
|
}
|
|
|
|
modificationsStr, err := sm.String()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
session.Println(modificationsStr)
|
|
session.Printf("\n🎉 New configs added to the module:\n\n- %s\n\n", strings.Join(configs, "\n- "))
|
|
|
|
return nil
|
|
}
|