mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-03-30 15:08:33 +00:00
56 lines
1.9 KiB
Go
56 lines
1.9 KiB
Go
package main
|
|
|
|
import (
|
|
"github.com/jessevdk/go-flags"
|
|
"github.com/kaspanet/kaspad/infrastructure/config"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
var (
|
|
defaultRPCServer = "localhost"
|
|
defaultTimeout uint64 = 30
|
|
)
|
|
|
|
type configFlags struct {
|
|
RPCServer string `short:"s" long:"rpcserver" description:"RPC server to connect to"`
|
|
Timeout uint64 `short:"t" long:"timeout" description:"Timeout for the request (in seconds)"`
|
|
RequestJSON string `short:"j" long:"json" description:"The request in JSON format"`
|
|
ListCommands bool `short:"l" long:"list-commands" description:"List all commands and exit"`
|
|
AllowConnectionToDifferentVersions bool `short:"a" long:"allow-connection-to-different-versions" description:"Allow connections to versions different than kaspactl's version'"`
|
|
CommandAndParameters []string
|
|
config.NetworkFlags
|
|
}
|
|
|
|
func parseConfig() (*configFlags, error) {
|
|
cfg := &configFlags{
|
|
RPCServer: defaultRPCServer,
|
|
Timeout: defaultTimeout,
|
|
}
|
|
parser := flags.NewParser(cfg, flags.HelpFlag)
|
|
parser.Usage = "kaspactl [OPTIONS] [COMMAND] [COMMAND PARAMETERS].\n\nCommand can be supplied only if --json is not used." +
|
|
"\n\nUse `kaspactl --list-commands` to get a list of all commands and their parameters." +
|
|
"\nFor optional parameters- use '-' without quotes to not pass the parameter.\n"
|
|
remainingArgs, err := parser.Parse()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if cfg.ListCommands {
|
|
return cfg, nil
|
|
}
|
|
|
|
err = cfg.ResolveNetwork(parser)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
cfg.CommandAndParameters = remainingArgs
|
|
if len(cfg.CommandAndParameters) == 0 && cfg.RequestJSON == "" ||
|
|
len(cfg.CommandAndParameters) > 0 && cfg.RequestJSON != "" {
|
|
|
|
return nil, errors.New("Exactly one of --json or a command must be specified")
|
|
}
|
|
|
|
return cfg, nil
|
|
}
|