forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
running_environment_variable_group.go
61 lines (52 loc) · 2.16 KB
/
running_environment_variable_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
package environmentvariablegroup
import (
"github.com/cloudfoundry/cli/cf/api/environment_variable_groups"
"github.com/cloudfoundry/cli/cf/command_metadata"
"github.com/cloudfoundry/cli/cf/configuration/core_config"
. "github.com/cloudfoundry/cli/cf/i18n"
"github.com/cloudfoundry/cli/cf/requirements"
"github.com/cloudfoundry/cli/cf/terminal"
"github.com/codegangsta/cli"
)
type RunningEnvironmentVariableGroup struct {
ui terminal.UI
config core_config.ReadWriter
environmentVariableGroupRepo environment_variable_groups.EnvironmentVariableGroupsRepository
}
func NewRunningEnvironmentVariableGroup(ui terminal.UI, config core_config.ReadWriter, environmentVariableGroupRepo environment_variable_groups.EnvironmentVariableGroupsRepository) (cmd RunningEnvironmentVariableGroup) {
cmd.ui = ui
cmd.config = config
cmd.environmentVariableGroupRepo = environmentVariableGroupRepo
return
}
func (cmd RunningEnvironmentVariableGroup) Metadata() command_metadata.CommandMetadata {
return command_metadata.CommandMetadata{
Name: "running-environment-variable-group",
Description: T("Retrieve the contents of the running environment variable group"),
ShortName: "revg",
Usage: T("CF_NAME running-environment-variable-group"),
}
}
func (cmd RunningEnvironmentVariableGroup) GetRequirements(requirementsFactory requirements.Factory, c *cli.Context) ([]requirements.Requirement, error) {
if len(c.Args()) != 0 {
cmd.ui.FailWithUsage(c)
}
reqs := []requirements.Requirement{
requirementsFactory.NewLoginRequirement(),
}
return reqs, nil
}
func (cmd RunningEnvironmentVariableGroup) Run(c *cli.Context) {
cmd.ui.Say(T("Retrieving the contents of the running environment variable group as {{.Username}}...", map[string]interface{}{
"Username": terminal.EntityNameColor(cmd.config.Username())}))
runningEnvVars, err := cmd.environmentVariableGroupRepo.ListRunning()
if err != nil {
cmd.ui.Failed(err.Error())
}
cmd.ui.Ok()
table := terminal.NewTable(cmd.ui, []string{T("Variable Name"), T("Assigned Value")})
for _, envVar := range runningEnvVars {
table.Add(envVar.Name, envVar.Value)
}
table.Print()
}