forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
v3_packages_command.go
115 lines (93 loc) · 3.03 KB
/
v3_packages_command.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
package v3
import (
"net/http"
"strings"
"time"
"code.cloudfoundry.org/cli/actor/sharedaction"
"code.cloudfoundry.org/cli/actor/v3action"
"code.cloudfoundry.org/cli/api/cloudcontroller/ccerror"
"code.cloudfoundry.org/cli/api/cloudcontroller/ccversion"
"code.cloudfoundry.org/cli/command"
"code.cloudfoundry.org/cli/command/flag"
"code.cloudfoundry.org/cli/command/translatableerror"
"code.cloudfoundry.org/cli/command/v3/shared"
"code.cloudfoundry.org/cli/util/ui"
)
//go:generate counterfeiter . V3PackagesActor
type V3PackagesActor interface {
CloudControllerAPIVersion() string
GetApplicationPackages(appName string, spaceGUID string) ([]v3action.Package, v3action.Warnings, error)
}
type V3PackagesCommand struct {
RequiredArgs flag.AppName `positional-args:"yes"`
usage interface{} `usage:"CF_NAME v3-packages APP_NAME"`
UI command.UI
Config command.Config
Actor V3PackagesActor
SharedActor command.SharedActor
}
func (cmd *V3PackagesCommand) Setup(config command.Config, ui command.UI) error {
cmd.UI = ui
cmd.Config = config
cmd.SharedActor = sharedaction.NewActor(config)
ccClient, _, err := shared.NewClients(config, ui, true, "")
if err != nil {
if v3Err, ok := err.(ccerror.V3UnexpectedResponseError); ok && v3Err.ResponseCode == http.StatusNotFound {
return translatableerror.MinimumCFAPIVersionNotMetError{MinimumVersion: ccversion.MinVersionApplicationFlowV3}
}
return err
}
cmd.Actor = v3action.NewActor(ccClient, config, nil, nil)
return nil
}
func (cmd V3PackagesCommand) Execute(args []string) error {
cmd.UI.DisplayWarning(command.ExperimentalWarning)
err := command.MinimumCCAPIVersionCheck(cmd.Actor.CloudControllerAPIVersion(), ccversion.MinVersionApplicationFlowV3)
if err != nil {
return err
}
err = cmd.SharedActor.CheckTarget(true, true)
if err != nil {
return err
}
user, err := cmd.Config.CurrentUser()
if err != nil {
return err
}
cmd.UI.DisplayTextWithFlavor("Listing packages of app {{.AppName}} in org {{.CurrentOrg}} / space {{.CurrentSpace}} as {{.CurrentUser}}...", map[string]interface{}{
"AppName": cmd.RequiredArgs.AppName,
"CurrentSpace": cmd.Config.TargetedSpace().Name,
"CurrentOrg": cmd.Config.TargetedOrganization().Name,
"CurrentUser": user.Name,
})
cmd.UI.DisplayNewline()
packages, warnings, err := cmd.Actor.GetApplicationPackages(cmd.RequiredArgs.AppName, cmd.Config.TargetedSpace().GUID)
cmd.UI.DisplayWarnings(warnings)
if err != nil {
return err
}
if len(packages) == 0 {
cmd.UI.DisplayText("No packages found")
return nil
}
table := [][]string{
{
cmd.UI.TranslateText("guid"),
cmd.UI.TranslateText("state"),
cmd.UI.TranslateText("created"),
},
}
for _, pkg := range packages {
t, err := time.Parse(time.RFC3339, pkg.CreatedAt)
if err != nil {
return err
}
table = append(table, []string{
pkg.GUID,
cmd.UI.TranslateText(strings.ToLower(string(pkg.State))),
cmd.UI.UserFriendlyDate(t),
})
}
cmd.UI.DisplayTableWithHeader("", table, ui.DefaultTableSpacePadding)
return nil
}