-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.go
393 lines (330 loc) · 10.7 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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
package commands
import (
"errors"
"strconv"
"code.cloudfoundry.org/cli/cf/commandregistry"
"code.cloudfoundry.org/cli/cf/flags"
. "code.cloudfoundry.org/cli/cf/i18n"
"code.cloudfoundry.org/cli/cf/api/authentication"
"code.cloudfoundry.org/cli/cf/api/organizations"
"code.cloudfoundry.org/cli/cf/api/spaces"
"code.cloudfoundry.org/cli/cf/configuration/coreconfig"
"code.cloudfoundry.org/cli/cf/models"
"code.cloudfoundry.org/cli/cf/requirements"
"code.cloudfoundry.org/cli/cf/terminal"
)
const maxLoginTries = 3
const maxChoices = 50
type Login struct {
ui terminal.UI
config coreconfig.ReadWriter
authenticator authentication.Repository
endpointRepo coreconfig.EndpointRepository
orgRepo organizations.OrganizationRepository
spaceRepo spaces.SpaceRepository
}
func init() {
commandregistry.Register(&Login{})
}
func (cmd *Login) MetaData() commandregistry.CommandMetadata {
fs := make(map[string]flags.FlagSet)
fs["a"] = &flags.StringFlag{ShortName: "a", Usage: T("API endpoint (e.g. https://api.example.com)")}
fs["u"] = &flags.StringFlag{ShortName: "u", Usage: T("Username")}
fs["p"] = &flags.StringFlag{ShortName: "p", Usage: T("Password")}
fs["o"] = &flags.StringFlag{ShortName: "o", Usage: T("Org")}
fs["s"] = &flags.StringFlag{ShortName: "s", Usage: T("Space")}
fs["sso"] = &flags.BoolFlag{Name: "sso", Usage: T("Prompt for a one-time passcode to login")}
fs["sso-passcode"] = &flags.StringFlag{Name: "sso-passcode", Usage: T("One-time passcode")}
fs["skip-ssl-validation"] = &flags.BoolFlag{Name: "skip-ssl-validation", Usage: T("Skip verification of the API endpoint. Not recommended!")}
return commandregistry.CommandMetadata{
Name: "login",
ShortName: "l",
Description: T("Log user in"),
Usage: []string{
T("CF_NAME login [-a API_URL] [-u USERNAME] [-p PASSWORD] [-o ORG] [-s SPACE] [--sso | --sso-passcode PASSCODE]\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")),
},
Examples: []string{
T("CF_NAME login (omit username and password to login interactively -- CF_NAME will prompt for both)"),
T("CF_NAME login -u name@example.com -p pa55woRD (specify username and password as arguments)"),
T("CF_NAME login -u name@example.com -p \"my password\" (use quotes for passwords with a space)"),
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 passcode to login)"),
},
Flags: fs,
}
}
func (cmd *Login) Requirements(requirementsFactory requirements.Factory, fc flags.FlagContext) ([]requirements.Requirement, error) {
reqs := []requirements.Requirement{}
return reqs, nil
}
func (cmd *Login) SetDependency(deps commandregistry.Dependency, pluginCall bool) commandregistry.Command {
cmd.ui = deps.UI
cmd.config = deps.Config
cmd.authenticator = deps.RepoLocator.GetAuthenticationRepository()
cmd.endpointRepo = deps.RepoLocator.GetEndpointRepository()
cmd.orgRepo = deps.RepoLocator.GetOrganizationRepository()
cmd.spaceRepo = deps.RepoLocator.GetSpaceRepository()
return cmd
}
func (cmd *Login) Execute(c flags.FlagContext) error {
cmd.config.ClearSession()
endpoint, skipSSL := cmd.decideEndpoint(c)
api := API{
ui: cmd.ui,
config: cmd.config,
endpointRepo: cmd.endpointRepo,
}
err := api.setAPIEndpoint(endpoint, skipSSL, cmd.MetaData().Name)
if err != nil {
return err
}
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
switch {
case c.Bool("sso") && c.IsSet("sso-passcode"):
return errors.New(T("Incorrect usage: --sso-passcode flag cannot be used with --sso"))
case c.Bool("sso") || c.IsSet("sso-passcode"):
err = cmd.authenticateSSO(c)
if err != nil {
return err
}
default:
err = cmd.authenticate(c)
if err != nil {
return err
}
}
orgIsSet, err := cmd.setOrganization(c)
if err != nil {
return err
}
if orgIsSet {
err = cmd.setSpace(c)
if err != nil {
return err
}
}
cmd.ui.NotifyUpdateIfNeeded(cmd.config)
return nil
}
func (cmd Login) decideEndpoint(c flags.FlagContext) (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 flags.FlagContext) error {
prompts, err := cmd.authenticator.GetLoginPromptsAndSaveUAAServerURL()
if err != nil {
return err
}
credentials := make(map[string]string)
passcode := prompts["passcode"]
for i := 0; i < maxLoginTries; i++ {
if c.IsSet("sso-passcode") && i == 0 {
credentials["passcode"] = c.String("sso-passcode")
} else {
credentials["passcode"] = cmd.ui.AskForPassword(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 {
return errors.New(T("Unable to authenticate."))
}
return nil
}
func (cmd Login) authenticate(c flags.FlagContext) error {
usernameFlagValue := c.String("u")
passwordFlagValue := c.String("p")
prompts, err := cmd.authenticator.GetLoginPromptsAndSaveUAAServerURL()
if err != nil {
return err
}
passwordKeys := []string{}
credentials := make(map[string]string)
if value, ok := prompts["username"]; ok {
if prompts["username"].Type == coreconfig.AuthPromptTypeText && usernameFlagValue != "" {
credentials["username"] = usernameFlagValue
} else {
credentials["username"] = cmd.ui.Ask(value.DisplayName)
}
}
for key, prompt := range prompts {
if prompt.Type == coreconfig.AuthPromptTypePassword {
if key == "passcode" {
continue
}
passwordKeys = append(passwordKeys, key)
} else if key == "username" {
continue
} else {
credentials[key] = cmd.ui.Ask(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(prompts[key].DisplayName)
}
}
credentialsCopy := make(map[string]string, len(credentials))
for k, v := range credentials {
credentialsCopy[k] = v
}
cmd.ui.Say(T("Authenticating..."))
err = cmd.authenticator.Authenticate(credentialsCopy)
if err == nil {
cmd.ui.Ok()
cmd.ui.Say("")
break
}
cmd.ui.Say(err.Error())
}
if err != nil {
return errors.New(T("Unable to authenticate."))
}
return nil
}
func (cmd Login) setOrganization(c flags.FlagContext) (bool, error) {
orgName := c.String("o")
if orgName == "" {
orgs, err := cmd.orgRepo.ListOrgs(maxChoices)
if err != nil {
return false, errors.New(T("Error finding available orgs\n{{.APIErr}}",
map[string]interface{}{"APIErr": err.Error()}))
}
switch len(orgs) {
case 0:
return false, nil
case 1:
cmd.targetOrganization(orgs[0])
return true, nil
default:
orgName = cmd.promptForOrgName(orgs)
if orgName == "" {
cmd.ui.Say("")
return false, nil
}
}
}
org, err := cmd.orgRepo.FindByName(orgName)
if err != nil {
return false, errors.New(T("Error finding org {{.OrgName}}\n{{.Err}}",
map[string]interface{}{"OrgName": terminal.EntityNameColor(orgName), "Err": err.Error()}))
}
cmd.targetOrganization(org)
return true, nil
}
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 flags.FlagContext) error {
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 {
return errors.New(T("Error finding available spaces\n{{.Err}}",
map[string]interface{}{"Err": err.Error()}))
}
if len(availableSpaces) == 0 {
return nil
} else if len(availableSpaces) == 1 {
cmd.targetSpace(availableSpaces[0])
return nil
} else {
spaceName = cmd.promptForSpaceName(availableSpaces)
if spaceName == "" {
cmd.ui.Say("")
return nil
}
}
}
space, err := cmd.spaceRepo.FindByName(spaceName)
if err != nil {
return errors.New(T("Error finding space {{.SpaceName}}\n{{.Err}}",
map[string]interface{}{"SpaceName": terminal.EntityNameColor(spaceName), "Err": err.Error()}))
}
cmd.targetSpace(space)
return nil
}
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(itemPrompt)
if nameString == "" {
return ""
}
nameIndex, err = strconv.Atoi(nameString)
if err != nil {
nameIndex = 1
return nameString
}
}
return names[nameIndex-1]
}