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

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

Issue 134263005: Implement inline signin with iframe (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Don't check title1.html ids Created 6 years, 10 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 18 matching lines...) Expand all
29 Authenticator.prototype = { 29 Authenticator.prototype = {
30 email_: null, 30 email_: null,
31 password_: null, 31 password_: null,
32 attemptToken_: null, 32 attemptToken_: null,
33 33
34 // Input params from extension initialization URL. 34 // Input params from extension initialization URL.
35 inputLang_: undefined, 35 inputLang_: undefined,
36 intputEmail_: undefined, 36 intputEmail_: undefined,
37 37
38 isSAMLFlow_: false, 38 isSAMLFlow_: false,
39 samlSupportChannel_: null, 39 isSAMLEnabled_: false,
40 supportChannel_: null,
40 41
41 GAIA_URL: 'https://accounts.google.com/', 42 GAIA_URL: 'https://accounts.google.com/',
42 GAIA_PAGE_PATH: 'ServiceLogin?skipvpage=true&sarp=1&rm=hide', 43 GAIA_PAGE_PATH: 'ServiceLogin?skipvpage=true&sarp=1&rm=hide',
43 PARENT_PAGE: 'chrome://oobe/', 44 PARENT_PAGE: 'chrome://oobe/',
44 SERVICE_ID: 'chromeoslogin', 45 SERVICE_ID: 'chromeoslogin',
45 CONTINUE_URL: Authenticator.THIS_EXTENSION_ORIGIN + '/success.html', 46 CONTINUE_URL: Authenticator.THIS_EXTENSION_ORIGIN + '/success.html',
46 CONSTRAINED_FLOW_SOURCE: 'chrome', 47 CONSTRAINED_FLOW_SOURCE: 'chrome',
47 48
48 initialize: function() { 49 initialize: function() {
49 var params = getUrlSearchParams(location.search); 50 var params = getUrlSearchParams(location.search);
50 this.parentPage_ = params.parentPage || this.PARENT_PAGE; 51 this.parentPage_ = params.parentPage || this.PARENT_PAGE;
51 this.gaiaUrl_ = params.gaiaUrl || this.GAIA_URL; 52 this.gaiaUrl_ = params.gaiaUrl || this.GAIA_URL;
52 this.gaiaPath_ = params.gaiaPath || this.GAIA_PAGE_PATH; 53 this.gaiaPath_ = params.gaiaPath || this.GAIA_PAGE_PATH;
53 this.inputLang_ = params.hl; 54 this.inputLang_ = params.hl;
54 this.inputEmail_ = params.email; 55 this.inputEmail_ = params.email;
55 this.service_ = params.service || this.SERVICE_ID; 56 this.service_ = params.service || this.SERVICE_ID;
56 this.continueUrl_ = params.continueUrl || this.CONTINUE_URL; 57 this.continueUrl_ = params.continueUrl || this.CONTINUE_URL;
57 this.continueUrlWithoutParams_ = stripParams(this.continueUrl_); 58 this.desktopMode_ = params.desktopMode == '1';
58 this.inlineMode_ = params.inlineMode == '1'; 59 this.isConstrainedWindow_ = params.constrained == '1';
59 this.constrained_ = params.constrained == '1';
60 this.partitionId_ = params.partitionId || '';
61 this.initialFrameUrl_ = params.frameUrl || this.constructInitialFrameUrl_(); 60 this.initialFrameUrl_ = params.frameUrl || this.constructInitialFrameUrl_();
62 this.initialFrameUrlWithoutParams_ = stripParams(this.initialFrameUrl_); 61 this.initialFrameUrlWithoutParams_ = stripParams(this.initialFrameUrl_);
63 this.loaded_ = false;
64 62
65 document.addEventListener('DOMContentLoaded', this.onPageLoad.bind(this)); 63 if (this.desktopMode_) {
64 this.supportChannel_ = new Channel();
65 this.supportChannel_.connect('authMain');
66
67 this.supportChannel_.send({
68 name: 'initDesktopFlow',
69 gaiaUrl: this.gaiaUrl_,
70 continueUrl: stripParams(this.continueUrl_),
71 isConstrainedWindow: this.isConstrainedWindow_
72 });
73
74 this.supportChannel_.registerMessage(
75 'switchToFullTab', this.switchToFullTab_.bind(this));
76 this.supportChannel_.registerMessage(
77 'completeLogin', this.completeLogin_.bind(this));
78 }
79
80 document.addEventListener('DOMContentLoaded', this.onPageLoad_.bind(this));
66 document.addEventListener('enableSAML', this.onEnableSAML_.bind(this)); 81 document.addEventListener('enableSAML', this.onEnableSAML_.bind(this));
67 }, 82 },
68 83
69 isGaiaMessage_: function(msg) { 84 isGaiaMessage_: function(msg) {
70 // Not quite right, but good enough. 85 // Not quite right, but good enough.
71 return this.gaiaUrl_.indexOf(msg.origin) == 0 || 86 return this.gaiaUrl_.indexOf(msg.origin) == 0 ||
72 this.GAIA_URL.indexOf(msg.origin) == 0; 87 this.GAIA_URL.indexOf(msg.origin) == 0;
73 }, 88 },
74 89
75 isInternalMessage_: function(msg) { 90 isInternalMessage_: function(msg) {
76 return msg.origin == Authenticator.THIS_EXTENSION_ORIGIN; 91 return msg.origin == Authenticator.THIS_EXTENSION_ORIGIN;
77 }, 92 },
78 93
79 isParentMessage_: function(msg) { 94 isParentMessage_: function(msg) {
80 return msg.origin == this.parentPage_; 95 return msg.origin == this.parentPage_;
81 }, 96 },
82 97
83 constructInitialFrameUrl_: function() { 98 constructInitialFrameUrl_: function() {
84 var url = this.gaiaUrl_ + this.gaiaPath_; 99 var url = this.gaiaUrl_ + this.gaiaPath_;
85 100
86 url = appendParam(url, 'service', this.service_); 101 url = appendParam(url, 'service', this.service_);
87 url = appendParam(url, 'continue', this.continueUrl_); 102 url = appendParam(url, 'continue', this.continueUrl_);
88 if (this.inputLang_) 103 if (this.inputLang_)
89 url = appendParam(url, 'hl', this.inputLang_); 104 url = appendParam(url, 'hl', this.inputLang_);
90 if (this.inputEmail_) 105 if (this.inputEmail_)
91 url = appendParam(url, 'Email', this.inputEmail_); 106 url = appendParam(url, 'Email', this.inputEmail_);
92 if (this.constrained_) 107 if (this.isConstrainedWindow_)
93 url = appendParam(url, 'source', this.CONSTRAINED_FLOW_SOURCE); 108 url = appendParam(url, 'source', this.CONSTRAINED_FLOW_SOURCE);
94 return url; 109 return url;
95 }, 110 },
96 111
97 /** Callback when all loads in the gaia webview is complete. */ 112 onPageLoad_: function() {
98 onWebviewLoadstop_: function(gaiaFrame) { 113 window.addEventListener('message', this.onMessage.bind(this), false);
99 if (gaiaFrame.src.lastIndexOf(this.continueUrlWithoutParams_, 0) == 0) { 114 this.loadFrame_();
100 // Detect when login is finished by the load stop event of the continue 115 },
101 // URL. Cannot reuse the login complete flow in success.html, because 116
102 // webview does not support extension pages yet. 117 loadFrame_: function() {
103 var skipForNow = false; 118 var gaiaFrame = $('gaia-frame');
104 if (this.inlineMode_ && gaiaFrame.src.indexOf('ntp=1') >= 0) { 119 gaiaFrame.src = this.initialFrameUrl_;
105 skipForNow = true; 120 if (this.desktopMode_) {
106 } 121 var handler = function() {
107 msg = { 122 this.onLoginUILoaded_();
108 'method': 'completeLogin', 123 gaiaFrame.removeEventListener('load', handler);
109 'skipForNow': skipForNow 124 }.bind(this);
110 }; 125 gaiaFrame.addEventListener('load', handler);
111 window.parent.postMessage(msg, this.parentPage_);
112 // Do no report state to the parent for the continue URL, since it is a
113 // blank page.
114 return;
115 } 126 }
116
117 // Report the current state to the parent which will then update the
118 // browser history so that later it could respond properly to back/forward.
119 var msg = {
120 'method': 'reportState',
121 'src': gaiaFrame.src
122 };
123 window.parent.postMessage(msg, this.parentPage_);
124
125 if (gaiaFrame.src.lastIndexOf(this.gaiaUrl_, 0) == 0) {
126 gaiaFrame.executeScript({file: 'inline_injected.js'}, function() {
127 // Send an initial message to gaia so that it has an JavaScript
128 // reference to the embedder.
129 gaiaFrame.contentWindow.postMessage('', gaiaFrame.src);
130 });
131 if (this.constrained_) {
132 var preventContextMenu = 'document.addEventListener("contextmenu", ' +
133 'function(e) {e.preventDefault();})';
134 gaiaFrame.executeScript({code: preventContextMenu});
135 }
136 }
137
138 this.loaded_ || this.onLoginUILoaded();
139 }, 127 },
140 128
141 /** 129 /**
142 * Callback when the gaia webview attempts to open a new window. 130 * Invoked when the login UI is initialized or reset.
143 */ 131 */
144 onWebviewNewWindow_: function(gaiaFrame, e) { 132 onLoginUILoaded_: function() {
145 window.open(e.targetUrl, '_blank');
146 e.window.discard();
147 },
148
149 onWebviewRequestCompleted_: function(details) {
150 if (details.url.lastIndexOf(this.continueUrlWithoutParams_, 0) == 0) {
151 return;
152 }
153
154 var headers = details.responseHeaders;
155 for (var i = 0; headers && i < headers.length; ++i) {
156 if (headers[i].name.toLowerCase() == 'google-accounts-embedded') {
157 return;
158 }
159 }
160 var msg = { 133 var msg = {
161 'method': 'switchToFullTab', 134 'method': 'loginUILoaded'
162 'url': details.url
163 }; 135 };
164 window.parent.postMessage(msg, this.parentPage_); 136 window.parent.postMessage(msg, this.parentPage_);
165 }, 137 },
166 138
167 loadFrame_: function() { 139 /**
168 var gaiaFrame = $('gaia-frame'); 140 * Invoked when the background script sends a message to indicate that the
169 gaiaFrame.partition = this.partitionId_; 141 * current content does not fit in a constrained window.
170 gaiaFrame.src = this.initialFrameUrl_; 142 * @param {Object=} opt_extraMsg Optional extra info to send.
171 if (this.inlineMode_) { 143 */
172 gaiaFrame.addEventListener( 144 switchToFullTab_: function(msg) {
173 'loadstop', this.onWebviewLoadstop_.bind(this, gaiaFrame)); 145 var parentMsg = {
174 gaiaFrame.addEventListener( 146 'method': 'switchToFullTab',
175 'newwindow', this.onWebviewNewWindow_.bind(this, gaiaFrame)); 147 'url': msg.url
176 } 148 };
177 if (this.constrained_) { 149 window.parent.postMessage(parentMsg, this.parentPage_);
178 gaiaFrame.request.onCompleted.addListener(
179 this.onWebviewRequestCompleted_.bind(this),
180 {urls: ['<all_urls>'], types: ['main_frame']},
181 ['responseHeaders']);
182 }
183 }, 150 },
184 151
185 completeLogin: function() { 152 /**
153 * Invoked when the signin flow is complete.
154 * @param {Object=} opt_extraMsg Optional extra info to send.
155 */
156 completeLogin_: function(opt_extraMsg) {
186 var msg = { 157 var msg = {
187 'method': 'completeLogin', 158 'method': 'completeLogin',
188 'email': this.email_, 159 'email': (opt_extraMsg && opt_extraMsg.email) || this.email_,
189 'password': this.password_, 160 'password': this.password_,
190 'usingSAML': this.isSAMLFlow_ 161 'usingSAML': this.isSAMLFlow_,
162 'chooseWhatToSync': this.chooseWhatToSync_ || false,
163 'skipForNow': opt_extraMsg && opt_extraMsg.skipForNow,
164 'sessionIndex': opt_extraMsg && opt_extraMsg.sessionIndex
191 }; 165 };
192 window.parent.postMessage(msg, this.parentPage_); 166 window.parent.postMessage(msg, this.parentPage_);
193 if (this.samlSupportChannel_) 167 if (this.isSAMLEnabled_)
194 this.samlSupportChannel_.send({name: 'resetAuth'}); 168 this.supportChannel_.send({name: 'resetAuth'});
195 },
196
197 onPageLoad: function(e) {
198 window.addEventListener('message', this.onMessage.bind(this), false);
199 this.loadFrame_();
200 }, 169 },
201 170
202 /** 171 /**
203 * Invoked when 'enableSAML' event is received to initialize SAML support. 172 * Invoked when 'enableSAML' event is received to initialize SAML support.
204 */ 173 */
205 onEnableSAML_: function() { 174 onEnableSAML_: function() {
175 this.isSAMLEnabled_ = true;
206 this.isSAMLFlow_ = false; 176 this.isSAMLFlow_ = false;
207 177
208 this.samlSupportChannel_ = new Channel(); 178 if (!this.supportChannel_) {
209 this.samlSupportChannel_.connect('authMain'); 179 this.supportChannel_ = new Channel();
210 this.samlSupportChannel_.registerMessage( 180 this.supportChannel_.connect('authMain');
181 }
182
183 this.supportChannel_.registerMessage(
211 'onAuthPageLoaded', this.onAuthPageLoaded_.bind(this)); 184 'onAuthPageLoaded', this.onAuthPageLoaded_.bind(this));
212 this.samlSupportChannel_.registerMessage( 185 this.supportChannel_.registerMessage(
213 'apiCall', this.onAPICall_.bind(this)); 186 'apiCall', this.onAPICall_.bind(this));
214 this.samlSupportChannel_.send({ 187 this.supportChannel_.send({
215 name: 'setGaiaUrl', 188 name: 'setGaiaUrl',
216 gaiaUrl: this.gaiaUrl_ 189 gaiaUrl: this.gaiaUrl_
217 }); 190 });
218 }, 191 },
219 192
220 /** 193 /**
221 * Invoked when the background page sends 'onHostedPageLoaded' message. 194 * Invoked when the background page sends 'onHostedPageLoaded' message.
222 * @param {!Object} msg Details sent with the message. 195 * @param {!Object} msg Details sent with the message.
223 */ 196 */
224 onAuthPageLoaded_: function(msg) { 197 onAuthPageLoaded_: function(msg) {
(...skipping 27 matching lines...) Expand all
252 this.email_ = call.user; 225 this.email_ = call.user;
253 this.password_ = call.password; 226 this.password_ = call.password;
254 } else if (call.method == 'confirm') { 227 } else if (call.method == 'confirm') {
255 if (call.token != this.apiToken_) 228 if (call.token != this.apiToken_)
256 console.error('Authenticator.onAPICall_: token mismatch'); 229 console.error('Authenticator.onAPICall_: token mismatch');
257 } else { 230 } else {
258 console.error('Authenticator.onAPICall_: unknown message'); 231 console.error('Authenticator.onAPICall_: unknown message');
259 } 232 }
260 }, 233 },
261 234
262 onLoginUILoaded: function() {
263 var msg = {
264 'method': 'loginUILoaded'
265 };
266 window.parent.postMessage(msg, this.parentPage_);
267 if (this.inlineMode_) {
268 // TODO(guohui): temporary workaround until webview team fixes the focus
269 // on their side.
270 var gaiaFrame = $('gaia-frame');
271 gaiaFrame.focus();
272 gaiaFrame.onblur = function() {
273 gaiaFrame.focus();
274 };
275 }
276 this.loaded_ = true;
277 },
278
279 onConfirmLogin_: function() { 235 onConfirmLogin_: function() {
280 if (!this.isSAMLFlow_) { 236 if (!this.isSAMLFlow_) {
281 this.completeLogin(); 237 this.completeLogin_();
282 return; 238 return;
283 } 239 }
284 240
285 var apiUsed = !!this.password_; 241 var apiUsed = !!this.password_;
286 242
287 // Retrieve the e-mail address of the user who just authenticated from GAIA. 243 // Retrieve the e-mail address of the user who just authenticated from GAIA.
288 window.parent.postMessage({method: 'retrieveAuthenticatedUserEmail', 244 window.parent.postMessage({method: 'retrieveAuthenticatedUserEmail',
289 attemptToken: this.attemptToken_, 245 attemptToken: this.attemptToken_,
290 apiUsed: apiUsed}, 246 apiUsed: apiUsed},
291 this.parentPage_); 247 this.parentPage_);
292 248
293 if (!apiUsed) { 249 if (!apiUsed) {
294 this.samlSupportChannel_.sendWithCallback( 250 this.supportChannel_.sendWithCallback(
295 {name: 'getScrapedPasswords'}, 251 {name: 'getScrapedPasswords'},
296 function(passwords) { 252 function(passwords) {
297 if (passwords.length == 0) { 253 if (passwords.length == 0) {
298 window.parent.postMessage( 254 window.parent.postMessage(
299 {method: 'noPassword', email: this.email_}, 255 {method: 'noPassword', email: this.email_},
300 this.parentPage_); 256 this.parentPage_);
301 } else { 257 } else {
302 window.parent.postMessage({method: 'confirmPassword', 258 window.parent.postMessage({method: 'confirmPassword',
303 email: this.email_, 259 email: this.email_,
304 passwordCount: passwords.length}, 260 passwordCount: passwords.length},
305 this.parentPage_); 261 this.parentPage_);
306 } 262 }
307 }.bind(this)); 263 }.bind(this));
308 } 264 }
309 }, 265 },
310 266
311 maybeCompleteSAMLLogin_: function() { 267 maybeCompleteSAMLLogin_: function() {
312 // SAML login is complete when the user's e-mail address has been retrieved 268 // SAML login is complete when the user's e-mail address has been retrieved
313 // from GAIA and the user has successfully confirmed the password. 269 // from GAIA and the user has successfully confirmed the password.
314 if (this.email_ !== null && this.password_ !== null) 270 if (this.email_ !== null && this.password_ !== null)
315 this.completeLogin(); 271 this.completeLogin_();
316 }, 272 },
317 273
318 onVerifyConfirmedPassword_: function(password) { 274 onVerifyConfirmedPassword_: function(password) {
319 this.samlSupportChannel_.sendWithCallback( 275 this.supportChannel_.sendWithCallback(
320 {name: 'getScrapedPasswords'}, 276 {name: 'getScrapedPasswords'},
321 function(passwords) { 277 function(passwords) {
322 for (var i = 0; i < passwords.length; ++i) { 278 for (var i = 0; i < passwords.length; ++i) {
323 if (passwords[i] == password) { 279 if (passwords[i] == password) {
324 this.password_ = passwords[i]; 280 this.password_ = passwords[i];
325 this.maybeCompleteSAMLLogin_(); 281 this.maybeCompleteSAMLLogin_();
326 return; 282 return;
327 } 283 }
328 } 284 }
329 window.parent.postMessage( 285 window.parent.postMessage(
330 {method: 'confirmPassword', email: this.email_}, 286 {method: 'confirmPassword', email: this.email_},
331 this.parentPage_); 287 this.parentPage_);
332 }.bind(this)); 288 }.bind(this));
333 }, 289 },
334 290
335 onMessage: function(e) { 291 onMessage: function(e) {
336 var msg = e.data; 292 var msg = e.data;
337 if (msg.method == 'attemptLogin' && this.isGaiaMessage_(e)) { 293 if (msg.method == 'attemptLogin' && this.isGaiaMessage_(e)) {
338 this.email_ = msg.email; 294 this.email_ = msg.email;
339 this.password_ = msg.password; 295 this.password_ = msg.password;
340 this.attemptToken_ = msg.attemptToken; 296 this.attemptToken_ = msg.attemptToken;
297 this.chooseWhatToSync_ = msg.chooseWhatToSync;
341 this.isSAMLFlow_ = false; 298 this.isSAMLFlow_ = false;
342 if (this.samlSupportChannel_) 299 if (this.isSAMLEnabled_)
343 this.samlSupportChannel_.send({name: 'startAuth'}); 300 this.supportChannel_.send({name: 'startAuth'});
344 } else if (msg.method == 'clearOldAttempts' && this.isGaiaMessage_(e)) { 301 } else if (msg.method == 'clearOldAttempts' && this.isGaiaMessage_(e)) {
345 this.email_ = null; 302 this.email_ = null;
346 this.password_ = null; 303 this.password_ = null;
347 this.attemptToken_ = null; 304 this.attemptToken_ = null;
348 this.isSAMLFlow_ = false; 305 this.isSAMLFlow_ = false;
349 this.onLoginUILoaded(); 306 this.onLoginUILoaded_();
350 if (this.samlSupportChannel_) 307 if (this.isSAMLEnabled_)
351 this.samlSupportChannel_.send({name: 'resetAuth'}); 308 this.supportChannel_.send({name: 'resetAuth'});
352 } else if (msg.method == 'setAuthenticatedUserEmail' && 309 } else if (msg.method == 'setAuthenticatedUserEmail' &&
353 this.isParentMessage_(e)) { 310 this.isParentMessage_(e)) {
354 if (this.attemptToken_ == msg.attemptToken) { 311 if (this.attemptToken_ == msg.attemptToken) {
355 this.email_ = msg.email; 312 this.email_ = msg.email;
356 this.maybeCompleteSAMLLogin_(); 313 this.maybeCompleteSAMLLogin_();
357 } 314 }
358 } else if (msg.method == 'confirmLogin' && this.isInternalMessage_(e)) { 315 } else if (msg.method == 'confirmLogin' && this.isInternalMessage_(e)) {
359 if (this.attemptToken_ == msg.attemptToken) 316 if (this.attemptToken_ == msg.attemptToken)
360 this.onConfirmLogin_(); 317 this.onConfirmLogin_();
361 else 318 else
362 console.error('Authenticator.onMessage: unexpected attemptToken!?'); 319 console.error('Authenticator.onMessage: unexpected attemptToken!?');
363 } else if (msg.method == 'verifyConfirmedPassword' && 320 } else if (msg.method == 'verifyConfirmedPassword' &&
364 this.isParentMessage_(e)) { 321 this.isParentMessage_(e)) {
365 this.onVerifyConfirmedPassword_(msg.password); 322 this.onVerifyConfirmedPassword_(msg.password);
366 } else if (msg.method == 'navigate' && 323 } else if (msg.method == 'navigate' &&
367 this.isParentMessage_(e)) { 324 this.isParentMessage_(e)) {
368 $('gaia-frame').src = msg.src; 325 $('gaia-frame').src = msg.src;
369 } else if (msg.method == 'redirectToSignin' && 326 } else if (msg.method == 'redirectToSignin' &&
370 this.isParentMessage_(e)) { 327 this.isParentMessage_(e)) {
371 $('gaia-frame').src = this.constructInitialFrameUrl_(); 328 $('gaia-frame').src = this.constructInitialFrameUrl_();
372 } else { 329 } else {
373 console.error('Authenticator.onMessage: unknown message + origin!?'); 330 console.error('Authenticator.onMessage: unknown message + origin!?');
374 } 331 }
375 } 332 }
376 }; 333 };
377 334
378 Authenticator.getInstance().initialize(); 335 Authenticator.getInstance().initialize();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698