forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
disable_feature_flag.go
73 lines (60 loc) · 2.16 KB
/
disable_feature_flag.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
package featureflag
import (
"fmt"
"code.cloudfoundry.org/cli/cf/api/featureflags"
"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 DisableFeatureFlag struct {
ui terminal.UI
config coreconfig.ReadWriter
flagRepo featureflags.FeatureFlagRepository
}
func init() {
commandregistry.Register(&DisableFeatureFlag{})
}
func (cmd *DisableFeatureFlag) MetaData() commandregistry.CommandMetadata {
return commandregistry.CommandMetadata{
Name: "disable-feature-flag",
Description: T("Disable the use of a feature so that users have access to and can use the feature"),
Usage: []string{
T("CF_NAME disable-feature-flag FEATURE_NAME"),
},
}
}
func (cmd *DisableFeatureFlag) 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("disable-feature-flag"))
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 *DisableFeatureFlag) SetDependency(deps commandregistry.Dependency, pluginCall bool) commandregistry.Command {
cmd.ui = deps.UI
cmd.config = deps.Config
cmd.flagRepo = deps.RepoLocator.GetFeatureFlagRepository()
return cmd
}
func (cmd *DisableFeatureFlag) Execute(c flags.FlagContext) error {
flag := c.Args()[0]
cmd.ui.Say(T("Setting status of {{.FeatureFlag}} as {{.Username}}...", map[string]interface{}{
"FeatureFlag": terminal.EntityNameColor(flag),
"Username": terminal.EntityNameColor(cmd.config.Username())}))
err := cmd.flagRepo.Update(flag, false)
if err != nil {
return err
}
cmd.ui.Say("")
cmd.ui.Ok()
cmd.ui.Say("")
cmd.ui.Say(T("Feature {{.FeatureFlag}} Disabled.", map[string]interface{}{
"FeatureFlag": terminal.EntityNameColor(flag)}))
return nil
}