forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
feature_flags.go
81 lines (67 loc) · 2.14 KB
/
feature_flags.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
package featureflag
import (
"github.com/cloudfoundry/cli/cf/api/feature_flags"
"github.com/cloudfoundry/cli/cf/command_registry"
"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/cloudfoundry/cli/flags"
)
type ListFeatureFlags struct {
ui terminal.UI
config core_config.ReadWriter
flagRepo feature_flags.FeatureFlagRepository
}
func init() {
command_registry.Register(&ListFeatureFlags{})
}
func (cmd *ListFeatureFlags) MetaData() command_registry.CommandMetadata {
return command_registry.CommandMetadata{
Name: "feature-flags",
Description: T("Retrieve list of feature flags with status of each flag-able feature"),
Usage: T("CF_NAME feature-flags"),
}
}
func (cmd *ListFeatureFlags) Requirements(requirementsFactory requirements.Factory, fc flags.FlagContext) (reqs []requirements.Requirement, err error) {
if len(fc.Args()) != 0 {
cmd.ui.Failed(T("Incorrect Usage. No argument required\n\n") + command_registry.Commands.CommandUsage("feature-flags"))
}
reqs = []requirements.Requirement{
requirementsFactory.NewLoginRequirement(),
}
return reqs, err
}
func (cmd *ListFeatureFlags) SetDependency(deps command_registry.Dependency, pluginCall bool) command_registry.Command {
cmd.ui = deps.Ui
cmd.config = deps.Config
cmd.flagRepo = deps.RepoLocator.GetFeatureFlagRepository()
return cmd
}
func (cmd *ListFeatureFlags) Execute(c flags.FlagContext) {
cmd.ui.Say(T("Retrieving status of all flagged features as {{.Username}}...", map[string]interface{}{
"Username": terminal.EntityNameColor(cmd.config.Username())}))
flags, err := cmd.flagRepo.List()
if err != nil {
cmd.ui.Failed(err.Error())
return
}
cmd.ui.Ok()
cmd.ui.Say("")
table := terminal.NewTable(cmd.ui, []string{T("Features"), T("State")})
for _, flag := range flags {
table.Add(
flag.Name,
cmd.flagBoolToString(flag.Enabled),
)
}
table.Print()
return
}
func (cmd ListFeatureFlags) flagBoolToString(enabled bool) string {
if enabled {
return "enabled"
} else {
return "disabled"
}
}