graphql-engine/cli/commands/console.go

179 lines
6.3 KiB
Go
Raw Normal View History

2018-06-24 16:40:48 +03:00
package commands
import (
"os"
2018-06-24 16:40:48 +03:00
"sync"
"github.com/hasura/graphql-engine/cli/internal/scripts"
"github.com/hasura/graphql-engine/cli/util"
2020-04-07 12:23:20 +03:00
2018-06-24 16:40:48 +03:00
"github.com/gin-gonic/gin"
2018-06-24 16:47:01 +03:00
"github.com/hasura/graphql-engine/cli"
2020-04-07 12:23:20 +03:00
"github.com/hasura/graphql-engine/cli/pkg/console"
2018-06-24 16:40:48 +03:00
"github.com/pkg/errors"
"github.com/spf13/cobra"
2018-06-24 16:47:01 +03:00
"github.com/spf13/viper"
2018-06-24 16:40:48 +03:00
)
2019-01-28 16:55:28 +03:00
// NewConsoleCmd returns the console command
2018-06-24 16:40:48 +03:00
func NewConsoleCmd(ec *cli.ExecutionContext) *cobra.Command {
2018-06-24 16:47:01 +03:00
v := viper.New()
opts := &ConsoleOptions{
2018-06-24 16:40:48 +03:00
EC: ec,
}
consoleCmd := &cobra.Command{
Use: "console",
Short: "Open the console to manage the database and try out APIs",
Long: "Run a web server to serve the Hasura console for the GraphQL engine to manage the database and build queries",
2018-06-24 16:40:48 +03:00
Example: ` # Start console:
hasura console
# Start console on a different address and ports:
hasura console --address 0.0.0.0 --console-port 8080 --api-port 8081
# Start console without opening the browser automatically
hasura console --no-browser
# Use with admin secret:
hasura console --admin-secret "<admin-secret>"
# Connect to an instance specified by the flag, overrides the one mentioned in config.yaml:
hasura console --endpoint "<endpoint>"`,
2018-06-24 16:40:48 +03:00
SilenceUsage: true,
2018-06-24 16:47:01 +03:00
PreRunE: func(cmd *cobra.Command, args []string) error {
ec.Viper = v
err := ec.Prepare()
if err != nil {
return err
}
if err := ec.Validate(); err != nil {
return err
}
return scripts.CheckIfUpdateToConfigV3IsRequired(ec)
2018-06-24 16:47:01 +03:00
},
2018-06-24 16:40:48 +03:00
RunE: func(cmd *cobra.Command, args []string) error {
return opts.Run()
2018-06-24 16:40:48 +03:00
},
}
f := consoleCmd.Flags()
f.StringVar(&opts.APIPort, "api-port", "9693", "port for serving migrate api")
f.StringVar(&opts.ConsolePort, "console-port", "9695", "port for serving console")
f.StringVar(&opts.Address, "address", "localhost", "address to serve console and migration API from")
2018-06-27 15:04:09 +03:00
f.BoolVar(&opts.DontOpenBrowser, "no-browser", false, "do not automatically open console in browser")
f.StringVar(&opts.StaticDir, "static-dir", "", "directory where static assets mentioned in the console html template can be served from")
f.StringVar(&opts.Browser, "browser", "", "open console in a specific browser")
f.BoolVar(&opts.UseServerAssets, "use-server-assets", false, "when rendering console, use assets provided by HGE server")
2018-06-24 16:47:01 +03:00
f.String("endpoint", "", "http(s) endpoint for Hasura GraphQL engine")
f.String("admin-secret", "", "admin secret for Hasura GraphQL engine")
f.String("access-key", "", "access key for Hasura GraphQL engine")
f.MarkDeprecated("access-key", "use --admin-secret instead")
f.Bool("insecure-skip-tls-verify", false, "skip TLS verification and disable cert checking (default: false)")
f.String("certificate-authority", "", "path to a cert file for the certificate authority")
2018-06-24 16:47:01 +03:00
// need to create a new viper because https://github.com/spf13/viper/issues/233
util.BindPFlag(v, "endpoint", f.Lookup("endpoint"))
util.BindPFlag(v, "admin_secret", f.Lookup("admin-secret"))
util.BindPFlag(v, "access_key", f.Lookup("access-key"))
util.BindPFlag(v, "insecure_skip_tls_verify", f.Lookup("insecure-skip-tls-verify"))
util.BindPFlag(v, "certificate_authority", f.Lookup("certificate-authority"))
2018-06-24 16:40:48 +03:00
return consoleCmd
}
type ConsoleOptions struct {
2018-06-24 16:40:48 +03:00
EC *cli.ExecutionContext
APIPort string
ConsolePort string
Address string
2018-06-27 15:04:09 +03:00
DontOpenBrowser bool
WG *sync.WaitGroup
StaticDir string
Browser string
UseServerAssets bool
APIServerInterruptSignal chan os.Signal
ConsoleServerInterruptSignal chan os.Signal
2018-06-24 16:40:48 +03:00
}
func (o *ConsoleOptions) Run() error {
if o.EC.Version == nil {
return errors.New("cannot validate version, object is nil")
}
2020-04-07 12:23:20 +03:00
apiServer, err := console.NewAPIServer(o.Address, o.APIPort, o.EC)
if err != nil {
return err
}
2020-04-07 12:23:20 +03:00
// Setup console server
const basePath = "/pkg/console/templates/gohtml/"
const templateFilename = "console.gohtml"
templateProvider := console.NewDefaultTemplateProvider(basePath, templateFilename)
consoleTemplateVersion := templateProvider.GetTemplateVersion(o.EC.Version)
consoleAssetsVersion := templateProvider.GetAssetsVersion(o.EC.Version)
o.EC.Logger.Debugf("rendering console template [%s] with assets [%s]", consoleTemplateVersion, consoleAssetsVersion)
2018-06-24 16:40:48 +03:00
adminSecretHeader := cli.GetAdminSecretHeaderName(o.EC.Version)
if o.EC.Config.ServerConfig.HasuraServerInternalConfig.ConsoleAssetsDir != "" {
o.UseServerAssets = true
}
2020-04-07 12:23:20 +03:00
consoleRouter, err := console.BuildConsoleRouter(templateProvider, consoleTemplateVersion, o.StaticDir, gin.H{
"apiHost": "http://" + o.Address,
"apiPort": o.APIPort,
"cliVersion": o.EC.Version.GetCLIVersion(),
"serverVersion": o.EC.Version.GetServerVersion(),
"dataApiUrl": o.EC.Config.ServerConfig.ParsedEndpoint.String(),
"dataApiVersion": "",
"hasAccessKey": adminSecretHeader == cli.XHasuraAccessKey,
"adminSecret": o.EC.Config.ServerConfig.AdminSecret,
"assetsPath": templateProvider.GetAssetsCDN(),
"assetsVersion": consoleAssetsVersion,
"enableTelemetry": o.EC.GlobalConfig.EnableTelemetry,
"cliUUID": o.EC.GlobalConfig.UUID,
"migrateSkipExecution": true,
"cdnAssets": !o.UseServerAssets,
"consolePath": "/console",
"urlPrefix": "/console",
2018-06-24 16:40:48 +03:00
})
if err != nil {
return errors.Wrap(err, "error serving console")
}
2020-04-07 12:23:20 +03:00
consoleServer := console.NewConsoleServer(&console.NewConsoleServerOpts{
Logger: o.EC.Logger,
APIPort: o.APIPort,
Address: o.Address,
Browser: o.Browser,
DontOpenBrowser: o.DontOpenBrowser,
EC: o.EC,
Port: o.ConsolePort,
Router: consoleRouter,
StaticDir: o.StaticDir,
TemplateProvider: templateProvider,
2018-06-24 16:40:48 +03:00
})
2020-04-07 12:23:20 +03:00
o.WG = new(sync.WaitGroup)
// start console and API HTTP Servers
serveOpts := &console.ServeOpts{
APIServer: apiServer,
ConsoleServer: consoleServer,
EC: o.EC,
DontOpenBrowser: o.DontOpenBrowser,
Browser: o.Browser,
ConsolePort: o.ConsolePort,
APIPort: o.APIPort,
Address: o.Address,
SignalChanConsoleServer: o.ConsoleServerInterruptSignal,
SignalChanAPIServer: o.APIServerInterruptSignal,
WG: o.WG,
2020-04-07 12:23:20 +03:00
}
return console.Serve(serveOpts)
2018-06-24 16:40:48 +03:00
}