forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_health_check_command.go
106 lines (85 loc) · 2.81 KB
/
get_health_check_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
package v7
import (
"fmt"
"code.cloudfoundry.org/cli/actor/sharedaction"
"code.cloudfoundry.org/cli/actor/v7action"
"code.cloudfoundry.org/cli/command"
"code.cloudfoundry.org/cli/command/flag"
"code.cloudfoundry.org/cli/command/v7/shared"
"code.cloudfoundry.org/cli/util/ui"
)
//go:generate counterfeiter . GetHealthCheckActor
type GetHealthCheckActor interface {
CloudControllerAPIVersion() string
GetApplicationProcessHealthChecksByNameAndSpace(appName string, spaceGUID string) ([]v7action.ProcessHealthCheck, v7action.Warnings, error)
}
type GetHealthCheckCommand struct {
RequiredArgs flag.AppName `positional-args:"yes"`
usage interface{} `usage:"CF_NAME get-health-check APP_NAME"`
UI command.UI
Config command.Config
SharedActor command.SharedActor
Actor GetHealthCheckActor
}
func (cmd *GetHealthCheckCommand) 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 {
return err
}
cmd.Actor = v7action.NewActor(ccClient, config, nil, nil)
return nil
}
func (cmd GetHealthCheckCommand) Execute(args []string) error {
err := cmd.SharedActor.CheckTarget(true, true)
if err != nil {
return err
}
user, err := cmd.Config.CurrentUser()
if err != nil {
return err
}
cmd.UI.DisplayTextWithFlavor("Getting health check type for app {{.AppName}} in org {{.OrgName}} / space {{.SpaceName}} as {{.Username}}...", map[string]interface{}{
"AppName": cmd.RequiredArgs.AppName,
"OrgName": cmd.Config.TargetedOrganization().Name,
"SpaceName": cmd.Config.TargetedSpace().Name,
"Username": user.Name,
})
processHealthChecks, warnings, err := cmd.Actor.GetApplicationProcessHealthChecksByNameAndSpace(cmd.RequiredArgs.AppName, cmd.Config.TargetedSpace().GUID)
cmd.UI.DisplayWarnings(warnings)
if err != nil {
return err
}
cmd.UI.DisplayNewline()
if len(processHealthChecks) == 0 {
cmd.UI.DisplayText("App has no processes")
return nil
}
return cmd.DisplayProcessTable(processHealthChecks)
}
func (cmd GetHealthCheckCommand) DisplayProcessTable(processHealthChecks []v7action.ProcessHealthCheck) error {
table := [][]string{
{
cmd.UI.TranslateText("process"),
cmd.UI.TranslateText("health check"),
cmd.UI.TranslateText("endpoint (for http)"),
cmd.UI.TranslateText("invocation timeout"),
},
}
for _, healthCheck := range processHealthChecks {
invocationTimeout := healthCheck.InvocationTimeout
if invocationTimeout == 0 {
invocationTimeout = 1
}
table = append(table, []string{
healthCheck.ProcessType,
string(healthCheck.HealthCheckType),
healthCheck.Endpoint,
fmt.Sprint(invocationTimeout),
})
}
cmd.UI.DisplayTableWithHeader("", table, ui.DefaultTableSpacePadding)
return nil
}