Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(180)

Side by Side Diff: chrome/browser/resources/gaia_auth/main.js

Issue 473153002: Inline sign in extracts gaia id from HTTP header and seeds account tracker (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix one unit test, progress on second Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * Authenticator class wraps the communications between Gaia and its host. 6 * Authenticator class wraps the communications between Gaia and its host.
7 */ 7 */
8 function Authenticator() { 8 function Authenticator() {
9 } 9 }
10 10
(...skipping 30 matching lines...) Expand all
41 */ 41 */
42 Authenticator.getInstance = function() { 42 Authenticator.getInstance = function() {
43 if (!Authenticator.instance_) { 43 if (!Authenticator.instance_) {
44 Authenticator.instance_ = new Authenticator(); 44 Authenticator.instance_ = new Authenticator();
45 } 45 }
46 return Authenticator.instance_; 46 return Authenticator.instance_;
47 }; 47 };
48 48
49 Authenticator.prototype = { 49 Authenticator.prototype = {
50 email_: null, 50 email_: null,
51 gaiaId_: null,
51 52
52 // Depending on the key type chosen, this will contain the plain text password 53 // Depending on the key type chosen, this will contain the plain text password
53 // or a credential derived from it along with the information required to 54 // or a credential derived from it along with the information required to
54 // repeat the derivation, such as a salt. The information will be encoded so 55 // repeat the derivation, such as a salt. The information will be encoded so
55 // that it contains printable ASCII characters only. The exact encoding is TBD 56 // that it contains printable ASCII characters only. The exact encoding is TBD
56 // when support for key types other than plain text password is added. 57 // when support for key types other than plain text password is added.
57 passwordBytes_: null, 58 passwordBytes_: null,
58 59
60 chooseWhatToSync_: false,
61 skipForNow_: false,
62 sessionIndex_: null,
59 attemptToken_: null, 63 attemptToken_: null,
60 64
61 // Input params from extension initialization URL. 65 // Input params from extension initialization URL.
62 inputLang_: undefined, 66 inputLang_: undefined,
63 intputEmail_: undefined, 67 intputEmail_: undefined,
64 68
65 isSAMLFlow_: false, 69 isSAMLFlow_: false,
66 gaiaLoaded_: false, 70 gaiaLoaded_: false,
67 supportChannel_: null, 71 supportChannel_: null,
68 72
(...skipping 28 matching lines...) Expand all
97 101
98 document.addEventListener('DOMContentLoaded', this.onPageLoad_.bind(this)); 102 document.addEventListener('DOMContentLoaded', this.onPageLoad_.bind(this));
99 }, 103 },
100 104
101 isGaiaMessage_: function(msg) { 105 isGaiaMessage_: function(msg) {
102 // Not quite right, but good enough. 106 // Not quite right, but good enough.
103 return this.gaiaUrl_.indexOf(msg.origin) == 0 || 107 return this.gaiaUrl_.indexOf(msg.origin) == 0 ||
104 this.GAIA_URL.indexOf(msg.origin) == 0; 108 this.GAIA_URL.indexOf(msg.origin) == 0;
105 }, 109 },
106 110
107 isInternalMessage_: function(msg) {
108 return msg.origin == Authenticator.THIS_EXTENSION_ORIGIN;
109 },
110
111 isParentMessage_: function(msg) { 111 isParentMessage_: function(msg) {
112 return msg.origin == this.parentPage_; 112 return msg.origin == this.parentPage_;
113 }, 113 },
114 114
115 constructInitialFrameUrl_: function() { 115 constructInitialFrameUrl_: function() {
116 var url = this.gaiaUrl_ + this.gaiaPath_; 116 var url = this.gaiaUrl_ + this.gaiaPath_;
117 117
118 url = appendParam(url, 'service', this.service_); 118 url = appendParam(url, 'service', this.service_);
119 url = appendParam(url, 'continue', this.continueUrl_); 119 url = appendParam(url, 'continue', this.continueUrl_);
120 if (this.inputLang_) 120 if (this.inputLang_)
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 158
159 if (this.desktopMode_) { 159 if (this.desktopMode_) {
160 this.supportChannel_.send({ 160 this.supportChannel_.send({
161 name: 'initDesktopFlow', 161 name: 'initDesktopFlow',
162 gaiaUrl: this.gaiaUrl_, 162 gaiaUrl: this.gaiaUrl_,
163 continueUrl: stripParams(this.continueUrl_), 163 continueUrl: stripParams(this.continueUrl_),
164 isConstrainedWindow: this.isConstrainedWindow_ 164 isConstrainedWindow: this.isConstrainedWindow_
165 }); 165 });
166 this.supportChannel_.registerMessage( 166 this.supportChannel_.registerMessage(
167 'switchToFullTab', this.switchToFullTab_.bind(this)); 167 'switchToFullTab', this.switchToFullTab_.bind(this));
168 this.supportChannel_.registerMessage(
169 'completeLogin', this.completeLogin_.bind(this));
170 } 168 }
169 this.supportChannel_.registerMessage(
170 'completeLogin', this.onCompleteLogin_.bind(this));
171 this.initSAML_(); 171 this.initSAML_();
172 this.maybeInitialized_(); 172 this.maybeInitialized_();
173 }.bind(this)); 173 }.bind(this));
174 174
175 window.setTimeout(function() { 175 window.setTimeout(function() {
176 if (!this.supportChannel_) { 176 if (!this.supportChannel_) {
177 // Re-initialize the channel if it is not connected properly, e.g. 177 // Re-initialize the channel if it is not connected properly, e.g.
178 // connect may be called before background script started running. 178 // connect may be called before background script started running.
179 this.initSupportChannel_(); 179 this.initSupportChannel_();
180 } 180 }
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 * @param {Object=} opt_extraMsg Optional extra info to send. 213 * @param {Object=} opt_extraMsg Optional extra info to send.
214 */ 214 */
215 completeLogin_: function(opt_extraMsg) { 215 completeLogin_: function(opt_extraMsg) {
216 var msg = { 216 var msg = {
217 'method': 'completeLogin', 217 'method': 'completeLogin',
218 'email': (opt_extraMsg && opt_extraMsg.email) || this.email_, 218 'email': (opt_extraMsg && opt_extraMsg.email) || this.email_,
219 'password': (opt_extraMsg && opt_extraMsg.password) || 219 'password': (opt_extraMsg && opt_extraMsg.password) ||
220 this.passwordBytes_, 220 this.passwordBytes_,
221 'usingSAML': this.isSAMLFlow_, 221 'usingSAML': this.isSAMLFlow_,
222 'chooseWhatToSync': this.chooseWhatToSync_ || false, 222 'chooseWhatToSync': this.chooseWhatToSync_ || false,
223 'skipForNow': opt_extraMsg && opt_extraMsg.skipForNow, 223 'skipForNow': (opt_extraMsg && opt_extraMsg.skipForNow) ||
224 'sessionIndex': opt_extraMsg && opt_extraMsg.sessionIndex 224 this.skipForNow_,
225 'sessionIndex': (opt_extraMsg && opt_extraMsg.sessionIndex) ||
226 this.sessionIndex_,
227 'gaiaId': (opt_extraMsg && opt_extraMsg.gaiaId) || this.gaiaId_
225 }; 228 };
226 window.parent.postMessage(msg, this.parentPage_); 229 window.parent.postMessage(msg, this.parentPage_);
227 this.supportChannel_.send({name: 'resetAuth'}); 230 this.supportChannel_.send({name: 'resetAuth'});
228 }, 231 },
229 232
230 /** 233 /**
231 * Invoked when support channel is connected. 234 * Invoked when support channel is connected.
232 */ 235 */
233 initSAML_: function() { 236 initSAML_: function() {
234 this.isSAMLFlow_ = false; 237 this.isSAMLFlow_ = false;
(...skipping 26 matching lines...) Expand all
261 */ 264 */
262 onAuthPageLoaded_: function(msg) { 265 onAuthPageLoaded_: function(msg) {
263 var isSAMLPage = msg.url.indexOf(this.gaiaUrl_) != 0; 266 var isSAMLPage = msg.url.indexOf(this.gaiaUrl_) != 0;
264 267
265 if (isSAMLPage && !this.isSAMLFlow_) { 268 if (isSAMLPage && !this.isSAMLFlow_) {
266 // GAIA redirected to a SAML login page. The credentials provided to this 269 // GAIA redirected to a SAML login page. The credentials provided to this
267 // page will determine what user gets logged in. The credentials obtained 270 // page will determine what user gets logged in. The credentials obtained
268 // from the GAIA login form are no longer relevant and can be discarded. 271 // from the GAIA login form are no longer relevant and can be discarded.
269 this.isSAMLFlow_ = true; 272 this.isSAMLFlow_ = true;
270 this.email_ = null; 273 this.email_ = null;
274 this.gaiaId_ = null;
271 this.passwordBytes_ = null; 275 this.passwordBytes_ = null;
272 } 276 }
273 277
274 window.parent.postMessage({ 278 window.parent.postMessage({
275 'method': 'authPageLoaded', 279 'method': 'authPageLoaded',
276 'isSAML': this.isSAMLFlow_, 280 'isSAML': this.isSAMLFlow_,
277 'domain': extractDomain(msg.url) 281 'domain': extractDomain(msg.url)
278 }, this.parentPage_); 282 }, this.parentPage_);
279 }, 283 },
280 284
(...skipping 28 matching lines...) Expand all
309 this.initialized_ = true; 313 this.initialized_ = true;
310 this.sendInitializationSuccess_(); 314 this.sendInitializationSuccess_();
311 return; 315 return;
312 } 316 }
313 317
314 if (call.method == 'add') { 318 if (call.method == 'add') {
315 if (Authenticator.API_KEY_TYPES.indexOf(call.keyType) == -1) { 319 if (Authenticator.API_KEY_TYPES.indexOf(call.keyType) == -1) {
316 console.error('Authenticator.onAPICall_: unsupported key type'); 320 console.error('Authenticator.onAPICall_: unsupported key type');
317 return; 321 return;
318 } 322 }
323 // Not setting |email_| and |gaiaId_| because this API call will
324 // eventually be followed by onCompleteLogin_() which does set it.
319 this.apiToken_ = call.token; 325 this.apiToken_ = call.token;
320 this.email_ = call.user;
321 this.passwordBytes_ = call.passwordBytes; 326 this.passwordBytes_ = call.passwordBytes;
322 } else if (call.method == 'confirm') { 327 } else if (call.method == 'confirm') {
323 if (call.token != this.apiToken_) 328 if (call.token != this.apiToken_)
324 console.error('Authenticator.onAPICall_: token mismatch'); 329 console.error('Authenticator.onAPICall_: token mismatch');
325 } else { 330 } else {
326 console.error('Authenticator.onAPICall_: unknown message'); 331 console.error('Authenticator.onAPICall_: unknown message');
327 } 332 }
328 }, 333 },
329 334
330 sendInitializationSuccess_: function() { 335 sendInitializationSuccess_: function() {
331 this.supportChannel_.send({name: 'apiResponse', response: { 336 this.supportChannel_.send({name: 'apiResponse', response: {
332 result: 'initialized', 337 result: 'initialized',
333 version: this.apiVersion_, 338 version: this.apiVersion_,
334 keyTypes: Authenticator.API_KEY_TYPES 339 keyTypes: Authenticator.API_KEY_TYPES
335 }}); 340 }});
336 }, 341 },
337 342
338 sendInitializationFailure_: function() { 343 sendInitializationFailure_: function() {
339 this.supportChannel_.send({ 344 this.supportChannel_.send({
340 name: 'apiResponse', 345 name: 'apiResponse',
341 response: {result: 'initialization_failed'} 346 response: {result: 'initialization_failed'}
342 }); 347 });
343 }, 348 },
344 349
345 onConfirmLogin_: function() { 350 /**
346 if (!this.isSAMLFlow_) { 351 * Callback invoked for 'completeLogin' message.
347 this.completeLogin_(); 352 */
353 onCompleteLogin_: function(extraMsg) {
bartfab (slow) 2014/10/17 09:54:56 Nit 1: Anecdotal evidence shows that the naming se
Roger Tawa OOO till Jul 10th 2014/10/20 16:04:00 Done.
354 if (!extraMsg.email || !extraMsg.gaiaId || !extraMsg.sessionIndex) {
355 console.error('Missing fields to complete login.');
356 window.parent.postMessage(
357 {method: 'showFatalAuthError',
358 message: 'foo'},
bartfab (slow) 2014/10/17 09:54:55 I think the correct solution here would be analogo
Roger Tawa OOO till Jul 10th 2014/10/20 16:04:00 Done.
359 this.parentPage_);
348 return; 360 return;
349 } 361 }
350 362
351 var apiUsed = !!this.passwordBytes_; 363 // Skip SAML extra steps for desktop flow and non-SAML flow.
364 if (!this.isSAMLFlow_ || this.desktopMode_) {
365 this.completeLogin_(extraMsg);
366 return;
367 }
352 368
353 // Retrieve the e-mail address of the user who just authenticated from GAIA. 369 this.email_ = extraMsg.email;
354 window.parent.postMessage({method: 'retrieveAuthenticatedUserEmail', 370 this.gaiaId_ = extraMsg.gaiaId;
355 attemptToken: this.attemptToken_, 371 // Password from |extraMsg| is not used because ChromeOS SAML flow
356 apiUsed: apiUsed}, 372 // gets password by asking user to confirm.
357 this.parentPage_); 373 this.skipForNow_ = extraMsg.skipForNow;
374 this.sessionIndex_ = extraMsg.sessionIndex;
358 375
359 if (!apiUsed) { 376 if (this.passwordBytes_) {
377 this.completeLogin_(extraMsg);
378 } else {
360 this.supportChannel_.sendWithCallback( 379 this.supportChannel_.sendWithCallback(
361 {name: 'getScrapedPasswords'}, 380 {name: 'getScrapedPasswords'},
362 function(passwords) { 381 function(passwords) {
363 if (passwords.length == 0) { 382 if (passwords.length == 0) {
364 window.parent.postMessage( 383 window.parent.postMessage(
365 {method: 'noPassword', email: this.email_}, 384 {method: 'noPassword', email: this.email_},
366 this.parentPage_); 385 this.parentPage_);
367 } else { 386 } else {
368 window.parent.postMessage({method: 'confirmPassword', 387 window.parent.postMessage({method: 'confirmPassword',
369 email: this.email_, 388 email: this.email_,
370 passwordCount: passwords.length}, 389 passwordCount: passwords.length},
371 this.parentPage_); 390 this.parentPage_);
372 } 391 }
373 }.bind(this)); 392 }.bind(this));
374 } 393 }
375 }, 394 },
376 395
377 maybeCompleteSAMLLogin_: function() {
378 // SAML login is complete when the user's e-mail address has been retrieved
379 // from GAIA and the user has successfully confirmed the password.
380 if (this.email_ !== null && this.passwordBytes_ !== null)
381 this.completeLogin_();
382 },
383
384 onVerifyConfirmedPassword_: function(password) { 396 onVerifyConfirmedPassword_: function(password) {
385 this.supportChannel_.sendWithCallback( 397 this.supportChannel_.sendWithCallback(
386 {name: 'getScrapedPasswords'}, 398 {name: 'getScrapedPasswords'},
387 function(passwords) { 399 function(passwords) {
388 for (var i = 0; i < passwords.length; ++i) { 400 for (var i = 0; i < passwords.length; ++i) {
389 if (passwords[i] == password) { 401 if (passwords[i] == password) {
390 this.passwordBytes_ = passwords[i]; 402 this.passwordBytes_ = passwords[i];
391 this.maybeCompleteSAMLLogin_(); 403 // SAML login is complete when the user's e-mail address has
bartfab (slow) 2014/10/17 09:54:56 Nit: Remove the part of the comment about e-mail r
Roger Tawa OOO till Jul 10th 2014/10/20 16:04:00 Done.
404 // been retrieved from GAIA and the user has successfully
405 // confirmed the password.
406 if (this.email_ !== null && this.passwordBytes_ !== null)
bartfab (slow) 2014/10/17 09:54:56 Nit: We no longer need this condition. |email_ !=
Roger Tawa OOO till Jul 10th 2014/10/20 16:04:00 Done.
407 this.completeLogin_();
392 return; 408 return;
393 } 409 }
394 } 410 }
395 window.parent.postMessage( 411 window.parent.postMessage(
396 {method: 'confirmPassword', email: this.email_}, 412 {method: 'confirmPassword', email: this.email_},
397 this.parentPage_); 413 this.parentPage_);
398 }.bind(this)); 414 }.bind(this));
399 }, 415 },
400 416
401 onMessage: function(e) { 417 onMessage: function(e) {
402 var msg = e.data; 418 var msg = e.data;
403 if (msg.method == 'attemptLogin' && this.isGaiaMessage_(e)) { 419 if (msg.method == 'attemptLogin' && this.isGaiaMessage_(e)) {
420 // At this point GAIA does not yet know the gaiaId, so its not set here.
404 this.email_ = msg.email; 421 this.email_ = msg.email;
405 this.passwordBytes_ = msg.password; 422 this.passwordBytes_ = msg.password;
406 this.attemptToken_ = msg.attemptToken; 423 this.attemptToken_ = msg.attemptToken;
407 this.chooseWhatToSync_ = msg.chooseWhatToSync; 424 this.chooseWhatToSync_ = msg.chooseWhatToSync;
408 this.isSAMLFlow_ = false; 425 this.isSAMLFlow_ = false;
409 if (this.supportChannel_) 426 if (this.supportChannel_)
410 this.supportChannel_.send({name: 'startAuth'}); 427 this.supportChannel_.send({name: 'startAuth'});
411 else 428 else
412 console.error('Support channel is not initialized.'); 429 console.error('Support channel is not initialized.');
413 } else if (msg.method == 'clearOldAttempts' && this.isGaiaMessage_(e)) { 430 } else if (msg.method == 'clearOldAttempts' && this.isGaiaMessage_(e)) {
414 if (!this.gaiaLoaded_) { 431 if (!this.gaiaLoaded_) {
415 this.gaiaLoaded_ = true; 432 this.gaiaLoaded_ = true;
416 this.maybeInitialized_(); 433 this.maybeInitialized_();
417 } 434 }
418 this.email_ = null; 435 this.email_ = null;
436 this.gaiaId_ = null;
bartfab (slow) 2014/10/17 09:54:55 My question from patchset 32 still stands: Should
Roger Tawa OOO till Jul 10th 2014/10/20 16:04:00 Done.
419 this.passwordBytes_ = null; 437 this.passwordBytes_ = null;
420 this.attemptToken_ = null; 438 this.attemptToken_ = null;
421 this.isSAMLFlow_ = false; 439 this.isSAMLFlow_ = false;
422 if (this.supportChannel_) 440 if (this.supportChannel_)
423 this.supportChannel_.send({name: 'resetAuth'}); 441 this.supportChannel_.send({name: 'resetAuth'});
424 } else if (msg.method == 'setAuthenticatedUserEmail' &&
425 this.isParentMessage_(e)) {
426 if (this.attemptToken_ == msg.attemptToken) {
427 this.email_ = msg.email;
428 this.maybeCompleteSAMLLogin_();
429 }
430 } else if (msg.method == 'confirmLogin' && this.isInternalMessage_(e)) {
431 // In the desktop mode, Chrome needs to wait for extra info such as
432 // session index from the background JS.
433 if (this.desktopMode_)
434 return;
435
436 if (this.attemptToken_ == msg.attemptToken)
437 this.onConfirmLogin_();
438 else
439 console.error('Authenticator.onMessage: unexpected attemptToken!?');
440 } else if (msg.method == 'verifyConfirmedPassword' && 442 } else if (msg.method == 'verifyConfirmedPassword' &&
441 this.isParentMessage_(e)) { 443 this.isParentMessage_(e)) {
442 this.onVerifyConfirmedPassword_(msg.password); 444 this.onVerifyConfirmedPassword_(msg.password);
443 } else if (msg.method == 'redirectToSignin' && 445 } else if (msg.method == 'redirectToSignin' &&
444 this.isParentMessage_(e)) { 446 this.isParentMessage_(e)) {
445 $('gaia-frame').src = this.constructInitialFrameUrl_(); 447 $('gaia-frame').src = this.constructInitialFrameUrl_();
446 } else { 448 } else {
447 console.error('Authenticator.onMessage: unknown message + origin!?'); 449 console.error('Authenticator.onMessage: unknown message + origin!?');
448 } 450 }
449 } 451 }
450 }; 452 };
451 453
452 Authenticator.getInstance().initialize(); 454 Authenticator.getInstance().initialize();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698