mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
880182c805
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7399 GitOrigin-RevId: 6e848f6eae2e5418c386f814623c122646db12c7
98 lines
2.8 KiB
Go
98 lines
2.8 KiB
Go
package commands
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
|
|
"github.com/hasura/graphql-engine/cli/v2/internal/errors"
|
|
"github.com/hasura/graphql-engine/cli/v2/internal/projectmetadata"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/hasura/graphql-engine/cli/v2"
|
|
"github.com/hasura/graphql-engine/cli/v2/util"
|
|
)
|
|
|
|
func newMetadataInconsistencyListCmd(ec *cli.ExecutionContext) *cobra.Command {
|
|
opts := &metadataInconsistencyListOptions{
|
|
EC: ec,
|
|
}
|
|
|
|
metadataInconsistencyListCmd := &cobra.Command{
|
|
Use: "list",
|
|
Aliases: []string{"ls"},
|
|
Short: "List all inconsistent objects from the Hasura Metadata",
|
|
Long: "At times, when developing, the Hasura Metadata can become inconsistent. This command can be used to list all inconsistent objects from the Hasura Metadata and allow you to understand why your project's Metadata is in an inconsistent state.",
|
|
SilenceUsage: true,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
op := genOpName(cmd, "RunE")
|
|
err := opts.run()
|
|
opts.EC.Spinner.Stop()
|
|
if err != nil {
|
|
return errors.E(op, fmt.Errorf("failed to list inconsistent metadata: %w", err))
|
|
}
|
|
if opts.isConsistent {
|
|
opts.EC.Logger.Println("metadata is consistent")
|
|
}
|
|
return nil
|
|
},
|
|
}
|
|
f := metadataInconsistencyListCmd.Flags()
|
|
f.StringVarP(&opts.outputFormat, "output", "o", "", "select output format for inconsistent metadata objects(Allowed values: json)")
|
|
|
|
return metadataInconsistencyListCmd
|
|
}
|
|
|
|
type metadataInconsistencyListOptions struct {
|
|
EC *cli.ExecutionContext
|
|
|
|
outputFormat string
|
|
isConsistent bool
|
|
inconsistentObjects []projectmetadata.InconsistentMetadataObject
|
|
}
|
|
|
|
func (o *metadataInconsistencyListOptions) read(handler *projectmetadata.Handler) error {
|
|
var op errors.Op = "commands.metadataInconsistencyListOptions.read"
|
|
var err error
|
|
o.isConsistent, o.inconsistentObjects, err = handler.GetInconsistentMetadata()
|
|
if err != nil {
|
|
return errors.E(op, err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (o *metadataInconsistencyListOptions) run() error {
|
|
var op errors.Op = "commands.metadataInconsistencyListOptions.run"
|
|
o.EC.Spin("Getting inconsistent metadata...")
|
|
|
|
err := o.read(projectmetadata.NewHandlerFromEC(o.EC))
|
|
if err != nil {
|
|
return errors.E(op, err)
|
|
}
|
|
if o.isConsistent {
|
|
return nil
|
|
}
|
|
if o.outputFormat == "json" {
|
|
jsonBytes, err := json.MarshalIndent(o.inconsistentObjects, "", " ")
|
|
if err != nil {
|
|
return errors.E(op, err)
|
|
}
|
|
o.EC.Spinner.Stop()
|
|
fmt.Fprintln(o.EC.Stdout, string(jsonBytes))
|
|
return nil
|
|
}
|
|
table := util.NewTableWriter(o.EC.Stdout)
|
|
table.SetHeader([]string{"NAME", "TYPE", "DESCRIPTION", "REASON"})
|
|
for _, obj := range o.inconsistentObjects {
|
|
table.Append([]string{
|
|
obj.GetName(),
|
|
obj.GetType(),
|
|
obj.GetDescription(),
|
|
obj.GetReason(),
|
|
})
|
|
}
|
|
o.EC.Spinner.Stop()
|
|
table.Render()
|
|
return nil
|
|
}
|