-
Notifications
You must be signed in to change notification settings - Fork 0
/
bind_running_security_group.go
84 lines (71 loc) · 2.71 KB
/
bind_running_security_group.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
package securitygroup
import (
"fmt"
"code.cloudfoundry.org/cli/cf/api/securitygroups"
"code.cloudfoundry.org/cli/cf/api/securitygroups/defaults/running"
"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 bindToRunningGroup struct {
ui terminal.UI
configRepo coreconfig.Reader
securityGroupRepo securitygroups.SecurityGroupRepo
runningGroupRepo running.SecurityGroupsRepo
}
func init() {
commandregistry.Register(&bindToRunningGroup{})
}
func (cmd *bindToRunningGroup) MetaData() commandregistry.CommandMetadata {
primaryUsage := T("CF_NAME bind-running-security-group SECURITY_GROUP")
tipUsage := T("TIP: Changes will not apply to existing running applications until they are restarted.")
return commandregistry.CommandMetadata{
Name: "bind-running-security-group",
Description: T("Bind a security group to the list of security groups to be used for running applications"),
Usage: []string{
primaryUsage,
"\n\n",
tipUsage,
},
}
}
func (cmd *bindToRunningGroup) Requirements(requirementsFactory requirements.Factory, fc flags.FlagContext) ([]requirements.Requirement, error) {
if len(fc.Args()) != 1 {
cmd.ui.Failed(T("Incorrect Usage. Requires an argument\n\n") + commandregistry.Commands.CommandUsage("bind-running-security-group"))
return nil, fmt.Errorf("Incorrect usage: %d arguments of %d required", len(fc.Args()), 1)
}
reqs := []requirements.Requirement{
requirementsFactory.NewLoginRequirement(),
}
return reqs, nil
}
func (cmd *bindToRunningGroup) SetDependency(deps commandregistry.Dependency, pluginCall bool) commandregistry.Command {
cmd.ui = deps.UI
cmd.configRepo = deps.Config
cmd.securityGroupRepo = deps.RepoLocator.GetSecurityGroupRepository()
cmd.runningGroupRepo = deps.RepoLocator.GetRunningSecurityGroupsRepository()
return cmd
}
func (cmd *bindToRunningGroup) Execute(context flags.FlagContext) error {
name := context.Args()[0]
securityGroup, err := cmd.securityGroupRepo.Read(name)
if err != nil {
return err
}
cmd.ui.Say(T("Binding security group {{.security_group}} to defaults for running as {{.username}}",
map[string]interface{}{
"security_group": terminal.EntityNameColor(securityGroup.Name),
"username": terminal.EntityNameColor(cmd.configRepo.Username()),
}))
err = cmd.runningGroupRepo.BindToRunningSet(securityGroup.GUID)
if err != nil {
return err
}
cmd.ui.Ok()
cmd.ui.Say("\n\n")
cmd.ui.Say(T("TIP: Changes will not apply to existing running applications until they are restarted."))
return nil
}