mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
3136ffad1b
> ### Description Update `go.mod` to allow other packages to import [v2.0.0 versions](https://blog.golang.org/v2-go-modules). ### Changelog - [x] `CHANGELOG.md` is updated with user-facing content relevant to this PR. If no changelog is required, then add the `no-changelog-required` label. ### Affected components - [x] CLI https://github.com/hasura/graphql-engine-mono/pull/1584 GitOrigin-RevId: a5d17ad20289d1cd7217763f56ef3ba6552d69c4
89 lines
2.3 KiB
Go
89 lines
2.3 KiB
Go
package commands
|
|
|
|
/*
|
|
some of the code here is borrowed from the krew codebse (kubernetes)
|
|
and the copyright belongs to the respective authors.
|
|
|
|
source: https://github.com/kubernetes-sigs/krew/blob/master/cmd/krew/cmd/install.go
|
|
*/
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/hasura/graphql-engine/cli/v2/util"
|
|
|
|
"github.com/hasura/graphql-engine/cli/v2"
|
|
"github.com/hasura/graphql-engine/cli/v2/plugins"
|
|
"github.com/pkg/errors"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func newPluginsInstallCmd(ec *cli.ExecutionContext) *cobra.Command {
|
|
opts := &PluginInstallOptions{
|
|
EC: ec,
|
|
}
|
|
pluginsInstallCmd := &cobra.Command{
|
|
Use: "install [plugin-name]",
|
|
Short: "Install a plugin from the index",
|
|
Example: ` # Install a plugin:
|
|
hasura plugins install [plugin-name]`,
|
|
SilenceUsage: true,
|
|
Args: cobra.ExactArgs(1),
|
|
PreRunE: func(cmd *cobra.Command, args []string) error {
|
|
err := ec.Prepare()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = ec.PluginsConfig.Repo.EnsureUpdated()
|
|
if err != nil {
|
|
ec.Logger.Debugf("unable to update plugins index: got %v", err)
|
|
}
|
|
return nil
|
|
},
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
opts.Name = args[0]
|
|
ec.Spin(fmt.Sprintf("Installing plugin %q...", opts.Name))
|
|
defer ec.Spinner.Stop()
|
|
err := opts.Run()
|
|
if err == plugins.ErrIsAlreadyInstalled {
|
|
ec.Spinner.Stop()
|
|
ec.Logger.WithField("name", opts.Name).Infof("%q", err)
|
|
return nil
|
|
}
|
|
if err != nil && err != plugins.ErrIsAlreadyInstalled {
|
|
return errors.Wrapf(err, "failed to install plugin %q", opts.Name)
|
|
}
|
|
ec.Spinner.Stop()
|
|
ec.Logger.WithField("name", opts.Name).Infoln("plugin installed")
|
|
return nil
|
|
},
|
|
}
|
|
|
|
f := pluginsInstallCmd.Flags()
|
|
|
|
f.Var(&opts.Version, "version", "version to be installed")
|
|
f.StringVar(&opts.ManifestFile, "manifest-file", "", "(dev) speficy local manifest file")
|
|
f.MarkHidden("manifest-file")
|
|
|
|
return pluginsInstallCmd
|
|
}
|
|
|
|
type PluginInstallOptions struct {
|
|
EC *cli.ExecutionContext
|
|
|
|
Name string
|
|
ManifestFile string
|
|
Version util.VersionFlag
|
|
}
|
|
|
|
func (o *PluginInstallOptions) Run() error {
|
|
plugin, err := o.EC.PluginsConfig.GetPlugin(o.Name, plugins.FetchOpts{
|
|
ManifestFile: o.ManifestFile,
|
|
Version: o.Version.Version,
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return o.EC.PluginsConfig.Install(plugin)
|
|
}
|