forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
space_ssh_allowed.go
66 lines (55 loc) · 1.9 KB
/
space_ssh_allowed.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
package space
import (
"fmt"
"code.cloudfoundry.org/cli/cf/api/spaces"
"code.cloudfoundry.org/cli/cf/commandregistry"
"code.cloudfoundry.org/cli/cf/configuration/coreconfig"
"code.cloudfoundry.org/cli/cf/flags"
. "code.cloudfoundry.org/cli/cf/i18n"
"code.cloudfoundry.org/cli/cf/requirements"
"code.cloudfoundry.org/cli/cf/terminal"
)
type SSHAllowed struct {
ui terminal.UI
config coreconfig.Reader
spaceReq requirements.SpaceRequirement
spaceRepo spaces.SpaceRepository
}
func init() {
commandregistry.Register(&SSHAllowed{})
}
func (cmd *SSHAllowed) MetaData() commandregistry.CommandMetadata {
return commandregistry.CommandMetadata{
Name: "space-ssh-allowed",
Description: T("Reports whether SSH is allowed in a space"),
Usage: []string{
T("CF_NAME space-ssh-allowed SPACE_NAME"),
},
}
}
func (cmd *SSHAllowed) Requirements(requirementsFactory requirements.Factory, fc flags.FlagContext) ([]requirements.Requirement, error) {
if len(fc.Args()) != 1 {
cmd.ui.Failed(T("Incorrect Usage. Requires SPACE_NAME as argument\n\n") + commandregistry.Commands.CommandUsage("space-ssh-allowed"))
return nil, fmt.Errorf("Incorrect usage: %d arguments of %d required", len(fc.Args()), 1)
}
cmd.spaceReq = requirementsFactory.NewSpaceRequirement(fc.Args()[0])
reqs := []requirements.Requirement{
requirementsFactory.NewLoginRequirement(),
requirementsFactory.NewTargetedOrgRequirement(),
cmd.spaceReq,
}
return reqs, nil
}
func (cmd *SSHAllowed) SetDependency(deps commandregistry.Dependency, pluginCall bool) commandregistry.Command {
cmd.ui = deps.UI
return cmd
}
func (cmd *SSHAllowed) Execute(fc flags.FlagContext) error {
space := cmd.spaceReq.GetSpace()
if space.AllowSSH {
cmd.ui.Say(fmt.Sprintf(T("ssh support is enabled in space ")+"'%s'", space.Name))
} else {
cmd.ui.Say(fmt.Sprintf(T("ssh support is disabled in space ")+"'%s'", space.Name))
}
return nil
}