2018-06-24 16:40:48 +03:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
2022-01-20 09:39:58 +03:00
|
|
|
"fmt"
|
|
|
|
"net/url"
|
2020-02-24 19:14:46 +03:00
|
|
|
"os"
|
2018-06-24 16:40:48 +03:00
|
|
|
|
2021-06-16 14:44:15 +03:00
|
|
|
"github.com/hasura/graphql-engine/cli/v2/internal/scripts"
|
|
|
|
"github.com/hasura/graphql-engine/cli/v2/util"
|
2020-04-07 12:23:20 +03:00
|
|
|
|
2018-06-24 16:40:48 +03:00
|
|
|
"github.com/gin-gonic/gin"
|
2021-06-16 14:44:15 +03:00
|
|
|
"github.com/hasura/graphql-engine/cli/v2"
|
|
|
|
"github.com/hasura/graphql-engine/cli/v2/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 {
|
2022-01-20 09:39:58 +03:00
|
|
|
var apiHost string
|
2018-06-24 16:47:01 +03:00
|
|
|
v := viper.New()
|
2020-02-24 19:14:46 +03:00
|
|
|
opts := &ConsoleOptions{
|
2018-06-24 16:40:48 +03:00
|
|
|
EC: ec,
|
|
|
|
}
|
|
|
|
consoleCmd := &cobra.Command{
|
|
|
|
Use: "console",
|
2021-03-15 18:40:52 +03:00
|
|
|
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:
|
2019-12-12 08:16:36 +03:00
|
|
|
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
|
2020-02-24 19:14:46 +03:00
|
|
|
err := ec.Prepare()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-01-18 20:11:05 +03:00
|
|
|
if err := ec.Validate(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-02-17 07:20:19 +03:00
|
|
|
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 {
|
2022-01-20 09:39:58 +03:00
|
|
|
if cmd.Flags().Changed("api-host") {
|
|
|
|
var err error
|
|
|
|
opts.APIHost, err = url.ParseRequestURI(apiHost)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("expected a valid url for --api-host, parsing error: %w", err)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
opts.APIHost = &url.URL{
|
|
|
|
Scheme: "http",
|
|
|
|
Host: opts.Address,
|
|
|
|
}
|
|
|
|
}
|
2020-02-24 19:14:46 +03:00
|
|
|
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")
|
2022-01-20 09:39:58 +03:00
|
|
|
f.StringVar(&apiHost, "api-host", "http://localhost", "(PREVIEW: usage may change in future) host serving migrate api")
|
2018-06-24 16:40:48 +03:00
|
|
|
f.StringVar(&opts.ConsolePort, "console-port", "9695", "port for serving console")
|
2019-01-29 19:02:49 +03:00
|
|
|
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")
|
2018-07-18 13:52:07 +03:00
|
|
|
f.StringVar(&opts.StaticDir, "static-dir", "", "directory where static assets mentioned in the console html template can be served from")
|
2020-01-08 06:06:09 +03:00
|
|
|
f.StringVar(&opts.Browser, "browser", "", "open console in a specific browser")
|
2020-06-03 07:06:23 +03:00
|
|
|
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
|
|
|
|
2021-03-15 18:40:52 +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")
|
2021-10-13 17:38:07 +03:00
|
|
|
if err := f.MarkDeprecated("access-key", "use --admin-secret instead"); err != nil {
|
|
|
|
ec.Logger.WithError(err).Errorf("error while using a dependency library")
|
|
|
|
}
|
2020-04-28 14:59:57 +03:00
|
|
|
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
|
2020-04-08 14:55:42 +03:00
|
|
|
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"))
|
2020-04-28 14:59:57 +03:00
|
|
|
util.BindPFlag(v, "insecure_skip_tls_verify", f.Lookup("insecure-skip-tls-verify"))
|
|
|
|
util.BindPFlag(v, "certificate_authority", f.Lookup("certificate-authority"))
|
2020-04-08 14:55:42 +03:00
|
|
|
|
2018-06-24 16:40:48 +03:00
|
|
|
return consoleCmd
|
|
|
|
}
|
|
|
|
|
2020-02-24 19:14:46 +03:00
|
|
|
type ConsoleOptions struct {
|
2018-06-24 16:40:48 +03:00
|
|
|
EC *cli.ExecutionContext
|
|
|
|
|
|
|
|
APIPort string
|
2022-01-20 09:39:58 +03:00
|
|
|
APIHost *url.URL
|
2018-06-24 16:40:48 +03:00
|
|
|
ConsolePort string
|
|
|
|
Address string
|
2018-06-27 15:04:09 +03:00
|
|
|
|
|
|
|
DontOpenBrowser bool
|
|
|
|
|
2020-06-03 07:06:23 +03:00
|
|
|
StaticDir string
|
|
|
|
Browser string
|
|
|
|
UseServerAssets bool
|
2020-02-24 19:14:46 +03:00
|
|
|
|
|
|
|
APIServerInterruptSignal chan os.Signal
|
|
|
|
ConsoleServerInterruptSignal chan os.Signal
|
2018-06-24 16:40:48 +03:00
|
|
|
}
|
|
|
|
|
2020-02-24 19:14:46 +03:00
|
|
|
func (o *ConsoleOptions) Run() error {
|
2018-07-06 08:06:27 +03:00
|
|
|
if o.EC.Version == nil {
|
|
|
|
return errors.New("cannot validate version, object is nil")
|
|
|
|
}
|
2019-02-14 12:37:47 +03:00
|
|
|
|
2022-01-20 09:39:58 +03:00
|
|
|
apiServer, err := console.NewAPIServer(o.APIHost.Host, o.APIPort, o.EC)
|
2019-09-18 08:36:16 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-04-07 12:23:20 +03:00
|
|
|
// Setup console server
|
2021-06-04 10:27:34 +03:00
|
|
|
const basePath = "templates/gohtml/"
|
2020-04-07 12:23:20 +03:00
|
|
|
const templateFilename = "console.gohtml"
|
2021-06-04 10:27:34 +03:00
|
|
|
templateProvider := console.NewDefaultTemplateProvider(basePath, templateFilename, console.ConsoleFS)
|
2020-04-07 12:23:20 +03:00
|
|
|
consoleTemplateVersion := templateProvider.GetTemplateVersion(o.EC.Version)
|
|
|
|
consoleAssetsVersion := templateProvider.GetAssetsVersion(o.EC.Version)
|
2018-07-04 15:43:52 +03:00
|
|
|
o.EC.Logger.Debugf("rendering console template [%s] with assets [%s]", consoleTemplateVersion, consoleAssetsVersion)
|
2018-06-24 16:40:48 +03:00
|
|
|
|
2020-04-09 12:30:47 +03:00
|
|
|
adminSecretHeader := cli.GetAdminSecretHeaderName(o.EC.Version)
|
2020-06-03 07:06:23 +03:00
|
|
|
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{
|
2022-01-20 09:39:58 +03:00
|
|
|
"apiHost": o.APIHost.String(),
|
2020-06-02 08:11:47 +03:00
|
|
|
"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,
|
2021-05-04 14:58:55 +03:00
|
|
|
"assetsPath": templateProvider.GetAssetsCDN(),
|
2020-06-02 08:11:47 +03:00
|
|
|
"assetsVersion": consoleAssetsVersion,
|
|
|
|
"enableTelemetry": o.EC.GlobalConfig.EnableTelemetry,
|
|
|
|
"cliUUID": o.EC.GlobalConfig.UUID,
|
|
|
|
"migrateSkipExecution": true,
|
2020-06-03 07:06:23 +03:00
|
|
|
"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
|
|
|
// 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,
|
|
|
|
}
|
|
|
|
|
|
|
|
return console.Serve(serveOpts)
|
2018-06-24 16:40:48 +03:00
|
|
|
}
|