-
Notifications
You must be signed in to change notification settings - Fork 117
/
show.go
52 lines (43 loc) · 1.17 KB
/
show.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package project
import (
"context"
"github.com/rilldata/rill/cli/pkg/cmdutil"
"github.com/rilldata/rill/cli/pkg/config"
adminv1 "github.com/rilldata/rill/proto/gen/rill/admin/v1"
"github.com/spf13/cobra"
)
func ShowCmd(cfg *config.Config) *cobra.Command {
var name, path string
showCmd := &cobra.Command{
Use: "show <project-name>",
Args: cobra.NoArgs,
Short: "Show project details",
RunE: func(cmd *cobra.Command, args []string) error {
client, err := cmdutil.Client(cfg)
if err != nil {
return err
}
defer client.Close()
if !cmd.Flags().Changed("project") {
name, err = inferProjectName(cmd.Context(), client, cfg.Org, path)
if err != nil {
return err
}
}
proj, err := client.GetProject(context.Background(), &adminv1.GetProjectRequest{
OrganizationName: cfg.Org,
Name: name,
})
if err != nil {
return err
}
cmdutil.SuccessPrinter("Found project")
cmdutil.TablePrinter(toRow(proj.Project))
return nil
},
}
showCmd.Flags().SortFlags = false
showCmd.Flags().StringVar(&name, "project", "", "Name")
showCmd.Flags().StringVar(&path, "path", ".", "Project directory")
return showCmd
}