86 lines
2.0 KiB
Go
86 lines
2.0 KiB
Go
package command
|
|
|
|
import (
|
|
"github.com/DavidGamba/go-getoptions/option"
|
|
"github.com/hashicorp/vagrant-plugin-sdk/component"
|
|
"github.com/hashicorp/vagrant-plugin-sdk/docs"
|
|
"github.com/hashicorp/vagrant-plugin-sdk/terminal"
|
|
)
|
|
|
|
// DoThing is a Command implementation for myplugin
|
|
// It is a subcommand of myplugin
|
|
type DoThing struct {
|
|
*Command
|
|
}
|
|
|
|
func (c *DoThing) ConfigSet(v interface{}) error {
|
|
return nil
|
|
}
|
|
|
|
func (c *DoThing) CommandFunc() interface{} {
|
|
return nil
|
|
}
|
|
|
|
func (c *DoThing) Config() (interface{}, error) {
|
|
return &c.config, nil
|
|
}
|
|
|
|
func (c *DoThing) Documentation() (*docs.Documentation, error) {
|
|
doc, err := docs.New(docs.FromConfig(&CommandConfig{}))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return doc, nil
|
|
}
|
|
|
|
// ExecuteFunc implements component.Command
|
|
func (c *DoThing) ExecuteFunc([]string) interface{} {
|
|
return c.Execute
|
|
}
|
|
|
|
// CommandInfoFunc implements component.Command
|
|
func (c *DoThing) CommandInfoFunc() interface{} {
|
|
return c.CommandInfo
|
|
}
|
|
|
|
func (c *DoThing) CommandInfo() (*component.CommandInfo, error) {
|
|
return &component.CommandInfo{
|
|
Name: "dothing",
|
|
Help: c.Help(),
|
|
Synopsis: c.Synopsis(),
|
|
Flags: c.Flags(),
|
|
}, nil
|
|
}
|
|
|
|
func (c *DoThing) Synopsis() string {
|
|
return "Really important *stuff*"
|
|
}
|
|
|
|
func (c *DoThing) Help() string {
|
|
return "I do really important work"
|
|
}
|
|
|
|
func (c *DoThing) Flags() []*option.Option {
|
|
booltest := option.New("booltest", option.BoolType)
|
|
booltest.Description = "a test flag for bools"
|
|
booltest.DefaultStr = "true"
|
|
booltest.Aliases = append(booltest.Aliases, "bt")
|
|
|
|
stringflag := option.New("stringflag", option.StringType)
|
|
stringflag.Description = "a test flag for strings"
|
|
stringflag.DefaultStr = "message"
|
|
stringflag.Aliases = append(stringflag.Aliases, "sf")
|
|
|
|
return []*option.Option{booltest, stringflag}
|
|
}
|
|
|
|
func (c *DoThing) Execute(trm terminal.UI, flags map[string]interface{}) int32 {
|
|
trm.Output("Tricked ya! I actually do nothing :P")
|
|
trm.Output("You gave me the stringflag: " + flags["stringflag"].(string))
|
|
return 0
|
|
}
|
|
|
|
var (
|
|
_ component.Command = (*DoThing)(nil)
|
|
)
|