-
Notifications
You must be signed in to change notification settings - Fork 934
/
Copy pathget_health_check.go
69 lines (55 loc) · 2.01 KB
/
get_health_check.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
package application
import (
"fmt"
"code.cloudfoundry.org/cli/cf/api/applications"
"code.cloudfoundry.org/cli/cf/flags"
. "code.cloudfoundry.org/cli/cf/i18n"
"code.cloudfoundry.org/cli/cf/commandregistry"
"code.cloudfoundry.org/cli/cf/configuration/coreconfig"
"code.cloudfoundry.org/cli/cf/requirements"
"code.cloudfoundry.org/cli/cf/terminal"
)
type GetHealthCheck struct {
ui terminal.UI
config coreconfig.Reader
appReq requirements.ApplicationRequirement
appRepo applications.Repository
}
func init() {
commandregistry.Register(&GetHealthCheck{})
}
func (cmd *GetHealthCheck) MetaData() commandregistry.CommandMetadata {
return commandregistry.CommandMetadata{
Name: "get-health-check",
Description: T("Get the health_check_type value of an app"),
Usage: []string{
T("CF_NAME get-health-check APP_NAME"),
},
}
}
func (cmd *GetHealthCheck) Requirements(requirementsFactory requirements.Factory, fc flags.FlagContext) ([]requirements.Requirement, error) {
if len(fc.Args()) != 1 {
cmd.ui.Failed(T("Incorrect Usage. Requires APP_NAME as argument\n\n") + commandregistry.Commands.CommandUsage("get-health-check"))
return nil, fmt.Errorf("Incorrect usage: %d arguments of %d required", len(fc.Args()), 1)
}
cmd.ui.Say(T("Getting health_check_type value for ") + terminal.EntityNameColor(fc.Args()[0]))
cmd.ui.Say("")
cmd.appReq = requirementsFactory.NewApplicationRequirement(fc.Args()[0])
reqs := []requirements.Requirement{
requirementsFactory.NewLoginRequirement(),
requirementsFactory.NewTargetedSpaceRequirement(),
cmd.appReq,
}
return reqs, nil
}
func (cmd *GetHealthCheck) SetDependency(deps commandregistry.Dependency, pluginCall bool) commandregistry.Command {
cmd.ui = deps.UI
cmd.config = deps.Config
cmd.appRepo = deps.RepoLocator.GetApplicationRepository()
return cmd
}
func (cmd *GetHealthCheck) Execute(fc flags.FlagContext) error {
app := cmd.appReq.GetApplication()
cmd.ui.Say(T("health_check_type is ") + terminal.HeaderColor(app.HealthCheckType))
return nil
}