-
Notifications
You must be signed in to change notification settings - Fork 239
/
list.go
68 lines (54 loc) · 1.52 KB
/
list.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package apps
import (
"context"
"github.com/spf13/cobra"
"github.com/superfly/flyctl/api"
"github.com/superfly/flyctl/iostreams"
"github.com/superfly/flyctl/client"
"github.com/superfly/flyctl/internal/command"
"github.com/superfly/flyctl/internal/config"
"github.com/superfly/flyctl/internal/format"
"github.com/superfly/flyctl/internal/render"
)
func newList() *cobra.Command {
const (
long = `The APPS LIST command will show the applications currently
registered and available to this user. The list will include applications
from all the organizations the user is a member of. Each application will
be shown with its name, owner and when it was last deployed.
`
short = "List applications"
)
return command.New("list", short, long, runList,
command.RequireSession,
)
}
func runList(ctx context.Context) (err error) {
cfg := config.FromContext(ctx)
client := client.FromContext(ctx)
var apps []api.App
if apps, err = client.API().GetApps(ctx, nil); err != nil {
return
}
out := iostreams.FromContext(ctx).Out
if cfg.JSONOutput {
_ = render.JSON(out, apps)
return
}
rows := make([][]string, 0, len(apps))
for _, app := range apps {
latestDeploy := ""
if app.Deployed && app.CurrentRelease != nil {
latestDeploy = format.RelativeTime(app.CurrentRelease.CreatedAt)
}
rows = append(rows, []string{
app.Name,
app.Organization.Slug,
app.Status,
app.PlatformVersion,
latestDeploy,
})
}
_ = render.Table(out, "", rows, "Name", "Owner", "Status", "Platform", "Latest Deploy")
return
}