forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.go
334 lines (276 loc) · 9.37 KB
/
login.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
package commands
import (
"strconv"
"github.com/cloudfoundry/cli/cf/api"
"github.com/cloudfoundry/cli/cf/api/authentication"
"github.com/cloudfoundry/cli/cf/api/spaces"
"github.com/cloudfoundry/cli/cf/command_metadata"
"github.com/cloudfoundry/cli/cf/configuration"
"github.com/cloudfoundry/cli/cf/flag_helpers"
"github.com/cloudfoundry/cli/cf/models"
"github.com/cloudfoundry/cli/cf/requirements"
"github.com/cloudfoundry/cli/cf/terminal"
"github.com/codegangsta/cli"
)
const maxLoginTries = 3
const maxChoices = 50
type Login struct {
ui terminal.UI
config configuration.ReadWriter
authenticator authentication.AuthenticationRepository
endpointRepo api.EndpointRepository
orgRepo api.OrganizationRepository
spaceRepo spaces.SpaceRepository
}
func NewLogin(ui terminal.UI,
config configuration.ReadWriter,
authenticator authentication.AuthenticationRepository,
endpointRepo api.EndpointRepository,
orgRepo api.OrganizationRepository,
spaceRepo spaces.SpaceRepository) (cmd Login) {
return Login{
ui: ui,
config: config,
authenticator: authenticator,
endpointRepo: endpointRepo,
orgRepo: orgRepo,
spaceRepo: spaceRepo,
}
}
func (cmd Login) Metadata() command_metadata.CommandMetadata {
return command_metadata.CommandMetadata{
Name: "login",
ShortName: "l",
Description: T("Log user in"),
Usage: T("CF_NAME login [-a API_URL] [-u USERNAME] [-p PASSWORD] [-o ORG] [-s SPACE]\n\n") +
terminal.WarningColor(T("WARNING:\n Providing your password as a command line option is highly discouraged\n Your password may be visible to others and may be recorded in your shell history\n\n")) + T("EXAMPLE:\n") + T(" CF_NAME login (omit username and password to login interactively -- CF_NAME will prompt for both)\n") + T(" CF_NAME login -u name@example.com -p pa55woRD (specify username and password as arguments)\n") + T(" CF_NAME login -u name@example.com -p \"my password\" (use quotes for passwords with a space)\n") + T(" CF_NAME login -u name@example.com -p \"\\\"password\\\"\" (escape quotes if used in password)") + T(" CF_NAME login --sso (CF_NAME will provide a url to obtain a one-time password to login)"),
Flags: []cli.Flag{
flag_helpers.NewStringFlag("a", T("API endpoint (e.g. https://api.example.com)")),
flag_helpers.NewStringFlag("u", T("Username")),
flag_helpers.NewStringFlag("p", T("Password")),
flag_helpers.NewStringFlag("o", T("Org")),
flag_helpers.NewStringFlag("s", T("Space")),
cli.BoolFlag{Name: "sso", Usage: T("Use a one-time password to login")},
cli.BoolFlag{Name: "skip-ssl-validation", Usage: T("Please don't")},
},
}
}
func (cmd Login) GetRequirements(_ requirements.Factory, _ *cli.Context) (reqs []requirements.Requirement, err error) {
return
}
func (cmd Login) Run(c *cli.Context) {
cmd.config.ClearSession()
endpoint, skipSSL := cmd.decideEndpoint(c)
NewApi(cmd.ui, cmd.config, cmd.endpointRepo).setApiEndpoint(endpoint, skipSSL)
defer func() {
cmd.ui.Say("")
cmd.ui.ShowConfiguration(cmd.config)
}()
// We thought we would never need to explicitly branch in this code
// for anything as simple as authentication, but it turns out that our
// assumptions did not match reality.
// When SAML is enabled (but not configured) then the UAA/Login server
// will always returns password prompts that includes the Passcode field.
// Users can authenticate with:
// EITHER username and password
// OR a one-time passcode
if c.Bool("sso") {
cmd.authenticateSSO(c)
} else {
cmd.authenticate(c)
}
orgIsSet := cmd.setOrganization(c)
if orgIsSet {
cmd.setSpace(c)
}
}
func (cmd Login) decideEndpoint(c *cli.Context) (string, bool) {
endpoint := c.String("a")
skipSSL := c.Bool("skip-ssl-validation")
if endpoint == "" {
endpoint = cmd.config.ApiEndpoint()
skipSSL = cmd.config.IsSSLDisabled() || skipSSL
}
if endpoint == "" {
endpoint = cmd.ui.Ask(T("API endpoint"))
} else {
cmd.ui.Say(T("API endpoint: {{.Endpoint}}", map[string]interface{}{"Endpoint": terminal.EntityNameColor(endpoint)}))
}
return endpoint, skipSSL
}
func (cmd Login) authenticateSSO(c *cli.Context) {
prompts, err := cmd.authenticator.GetLoginPromptsAndSaveUAAServerURL()
if err != nil {
cmd.ui.Failed(err.Error())
}
credentials := make(map[string]string)
passcode := prompts["passcode"]
for i := 0; i < maxLoginTries; i++ {
credentials["passcode"] = cmd.ui.AskForPassword("%s", passcode.DisplayName)
cmd.ui.Say(T("Authenticating..."))
err = cmd.authenticator.Authenticate(credentials)
if err == nil {
cmd.ui.Ok()
cmd.ui.Say("")
break
}
cmd.ui.Say(err.Error())
}
if err != nil {
cmd.ui.Failed(T("Unable to authenticate."))
}
}
func (cmd Login) authenticate(c *cli.Context) {
usernameFlagValue := c.String("u")
passwordFlagValue := c.String("p")
prompts, err := cmd.authenticator.GetLoginPromptsAndSaveUAAServerURL()
if err != nil {
cmd.ui.Failed(err.Error())
}
passwordKeys := []string{}
credentials := make(map[string]string)
for key, prompt := range prompts {
if prompt.Type == configuration.AuthPromptTypePassword {
if key == "passcode" {
continue
}
passwordKeys = append(passwordKeys, key)
} else if key == "username" && usernameFlagValue != "" {
credentials[key] = usernameFlagValue
} else {
credentials[key] = cmd.ui.Ask("%s", prompt.DisplayName)
}
}
for i := 0; i < maxLoginTries; i++ {
for _, key := range passwordKeys {
if key == "password" && passwordFlagValue != "" {
credentials[key] = passwordFlagValue
passwordFlagValue = ""
} else {
credentials[key] = cmd.ui.AskForPassword("%s", prompts[key].DisplayName)
}
}
cmd.ui.Say(T("Authenticating..."))
err = cmd.authenticator.Authenticate(credentials)
if err == nil {
cmd.ui.Ok()
cmd.ui.Say("")
break
}
cmd.ui.Say(err.Error())
}
if err != nil {
cmd.ui.Failed(T("Unable to authenticate."))
}
}
func (cmd Login) setOrganization(c *cli.Context) (isOrgSet bool) {
orgName := c.String("o")
if orgName == "" {
availableOrgs := []models.Organization{}
apiErr := cmd.orgRepo.ListOrgs(func(o models.Organization) bool {
availableOrgs = append(availableOrgs, o)
return len(availableOrgs) < maxChoices
})
if apiErr != nil {
cmd.ui.Failed(T("Error finding available orgs\n{{.ApiErr}}",
map[string]interface{}{"ApiErr": apiErr.Error()}))
}
if len(availableOrgs) == 1 {
cmd.targetOrganization(availableOrgs[0])
return true
}
orgName = cmd.promptForOrgName(availableOrgs)
if orgName == "" {
cmd.ui.Say("")
return false
}
}
org, err := cmd.orgRepo.FindByName(orgName)
if err != nil {
cmd.ui.Failed(T("Error finding org {{.OrgName}}\n{{.Err}}",
map[string]interface{}{"OrgName": terminal.EntityNameColor(orgName), "Err": err.Error()}))
}
cmd.targetOrganization(org)
return true
}
func (cmd Login) promptForOrgName(orgs []models.Organization) string {
orgNames := []string{}
for _, org := range orgs {
orgNames = append(orgNames, org.Name)
}
return cmd.promptForName(orgNames, T("Select an org (or press enter to skip):"), "Org")
}
func (cmd Login) targetOrganization(org models.Organization) {
cmd.config.SetOrganizationFields(org.OrganizationFields)
cmd.ui.Say(T("Targeted org {{.OrgName}}\n",
map[string]interface{}{"OrgName": terminal.EntityNameColor(org.Name)}))
}
func (cmd Login) setSpace(c *cli.Context) {
spaceName := c.String("s")
if spaceName == "" {
var availableSpaces []models.Space
err := cmd.spaceRepo.ListSpaces(func(space models.Space) bool {
availableSpaces = append(availableSpaces, space)
return (len(availableSpaces) < maxChoices)
})
if err != nil {
cmd.ui.Failed(T("Error finding available spaces\n{{.Err}}",
map[string]interface{}{"Err": err.Error()}))
}
// Target only space if possible
if len(availableSpaces) == 1 {
cmd.targetSpace(availableSpaces[0])
return
}
spaceName = cmd.promptForSpaceName(availableSpaces)
if spaceName == "" {
cmd.ui.Say("")
return
}
}
space, err := cmd.spaceRepo.FindByName(spaceName)
if err != nil {
cmd.ui.Failed(T("Error finding space {{.SpaceName}}\n{{.Err}}",
map[string]interface{}{"SpaceName": terminal.EntityNameColor(spaceName), "Err": err.Error()}))
}
cmd.targetSpace(space)
}
func (cmd Login) promptForSpaceName(spaces []models.Space) string {
spaceNames := []string{}
for _, space := range spaces {
spaceNames = append(spaceNames, space.Name)
}
return cmd.promptForName(spaceNames, T("Select a space (or press enter to skip):"), "Space")
}
func (cmd Login) targetSpace(space models.Space) {
cmd.config.SetSpaceFields(space.SpaceFields)
cmd.ui.Say(T("Targeted space {{.SpaceName}}\n",
map[string]interface{}{"SpaceName": terminal.EntityNameColor(space.Name)}))
}
func (cmd Login) promptForName(names []string, listPrompt, itemPrompt string) string {
nameIndex := 0
var nameString string
for nameIndex < 1 || nameIndex > len(names) {
var err error
// list header
cmd.ui.Say(listPrompt)
// only display list if it is shorter than maxChoices
if len(names) < maxChoices {
for i, name := range names {
cmd.ui.Say("%d. %s", i+1, name)
}
} else {
cmd.ui.Say(T("There are too many options to display, please type in the name."))
}
nameString = cmd.ui.Ask("%s", itemPrompt)
if nameString == "" {
return ""
}
nameIndex, err = strconv.Atoi(nameString)
if err != nil {
nameIndex = 1
return nameString
}
}
return names[nameIndex-1]
}