forked from cloudfoundry-community/cloudfoundry-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update_service_auth_token.go
63 lines (52 loc) · 1.85 KB
/
update_service_auth_token.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
package serviceauthtoken
import (
"github.com/cloudfoundry/cli/cf/api"
"github.com/cloudfoundry/cli/cf/command_metadata"
"github.com/cloudfoundry/cli/cf/configuration"
. "github.com/cloudfoundry/cli/cf/i18n"
"github.com/cloudfoundry/cli/cf/requirements"
"github.com/cloudfoundry/cli/cf/terminal"
"github.com/codegangsta/cli"
)
type UpdateServiceAuthTokenFields struct {
ui terminal.UI
config configuration.Reader
authTokenRepo api.ServiceAuthTokenRepository
}
func NewUpdateServiceAuthToken(ui terminal.UI, config configuration.Reader, authTokenRepo api.ServiceAuthTokenRepository) (cmd UpdateServiceAuthTokenFields) {
cmd.ui = ui
cmd.config = config
cmd.authTokenRepo = authTokenRepo
return
}
func (cmd UpdateServiceAuthTokenFields) Metadata() command_metadata.CommandMetadata {
return command_metadata.CommandMetadata{
Name: "update-service-auth-token",
Description: T("Update a service auth token"),
Usage: T("CF_NAME update-service-auth-token LABEL PROVIDER TOKEN"),
}
}
func (cmd UpdateServiceAuthTokenFields) GetRequirements(requirementsFactory requirements.Factory, c *cli.Context) (reqs []requirements.Requirement, err error) {
if len(c.Args()) != 3 {
cmd.ui.FailWithUsage(c)
}
reqs = []requirements.Requirement{
requirementsFactory.NewLoginRequirement(),
}
return
}
func (cmd UpdateServiceAuthTokenFields) Run(c *cli.Context) {
cmd.ui.Say(T("Updating service auth token as {{.CurrentUser}}...", map[string]interface{}{"CurrentUser": terminal.EntityNameColor(cmd.config.Username())}))
serviceAuthToken, apiErr := cmd.authTokenRepo.FindByLabelAndProvider(c.Args()[0], c.Args()[1])
if apiErr != nil {
cmd.ui.Failed(apiErr.Error())
return
}
serviceAuthToken.Token = c.Args()[2]
apiErr = cmd.authTokenRepo.Update(serviceAuthToken)
if apiErr != nil {
cmd.ui.Failed(apiErr.Error())
return
}
cmd.ui.Ok()
}