1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
6 * @fileoverview An UI component to host gaia auth extension in an iframe.
7 * After the component binds with an iframe, call its {@code load} to start the
8 * authentication flow. There are two events would be raised after this point:
9 * a 'ready' event when the authentication UI is ready to use and a 'completed'
10 * event when the authentication is completed successfully. If caller is
11 * interested in the user credentials, he may supply a success callback with
12 * {@code load} call. The callback will be invoked when the authentication is
13 * completed successfully and with the available credential data.
16 cr
.define('cr.login', function() {
20 * Base URL of gaia auth extension.
23 var AUTH_URL_BASE
= 'chrome-extension://mfffpogegjflfpflabcdkioaeobkgjik';
26 * Auth URL to use for online flow.
29 var AUTH_URL
= AUTH_URL_BASE
+ '/main.html';
32 * Auth URL to use for offline flow.
35 var OFFLINE_AUTH_URL
= AUTH_URL_BASE
+ '/offline.html';
38 * Origin of the gaia sign in page.
41 var GAIA_ORIGIN
= 'https://accounts.google.com';
44 * Supported params of auth extension. For a complete list, check out the
45 * auth extension's main.js.
46 * @type {!Array.<string>}
49 var SUPPORTED_PARAMS
= [
50 'gaiaUrl', // Gaia url to use;
51 'gaiaPath', // Gaia path to use without a leading slash;
52 'hl', // Language code for the user interface;
53 'email', // Pre-fill the email field in Gaia UI;
54 'service', // Name of Gaia service;
55 'continueUrl', // Continue url to use;
56 'frameUrl', // Initial frame URL to use. If empty defaults to gaiaUrl.
57 'constrained' // Whether the extension is loaded in a constrained window;
61 * Supported localized strings. For a complete list, check out the auth
62 * extension's offline.js
63 * @type {!Array.<string>}
66 var LOCALIZED_STRING_PARAMS
= [
71 'stringEmptyPassword',
76 * Enum for the authorization mode, must match AuthMode defined in
77 * chrome/browser/ui/webui/inline_login_ui.cc.
87 * Enum for the auth flow.
96 * Creates a new gaia auth extension host.
97 * @param {HTMLIFrameElement|string} container The iframe element or its id
98 * to host the auth extension.
100 * @extends {cr.EventTarget}
102 function GaiaAuthHost(container
) {
103 this.frame_
= typeof container
== 'string' ? $(container
) : container
;
105 window
.addEventListener('message',
106 this.onMessage_
.bind(this), false);
109 GaiaAuthHost
.prototype = {
110 __proto__
: cr
.EventTarget
.prototype,
113 * An url to use with {@code reload}.
120 * The domain name of the current auth page.
126 * Invoked when authentication is completed successfully with credential
127 * data. A credential data object looks like this:
131 * email: 'xx@gmail.com',
132 * password: 'xxxx', // May not present
133 * authCode: 'x/xx', // May not present
134 * authMode: 'x', // Authorization mode, default/offline/desktop.
138 * @type {function(Object)}
141 successCallback_
: null,
144 * Invoked when GAIA indicates login success and SAML was used. At this
145 * point, GAIA cookies are present but the identity of the authenticated
146 * user is not known. The embedder of GaiaAuthHost should extract the GAIA
147 * cookies from the cookie jar, query GAIA for the authenticated user's
148 * e-mail address and invoke GaiaAuthHost.setAuthenticatedUserEmail with the
149 * result. The argument is an opaque token that should be passed back to
150 * GaiaAuthHost.setAuthenticatedUserEmail.
151 * @type {function(number)}
153 retrieveAuthenticatedUserEmailCallback_
: null,
156 * Invoked when the auth flow needs a user to confirm his/her passwords.
157 * This could happen when there are more than one passwords scraped during
158 * SAML flow. The embedder of GaiaAuthHost should show an UI to collect a
159 * password from user then call GaiaAuthHost.verifyConfirmedPassword to
160 * verify. If the password is good, the auth flow continues with success
161 * path. Otherwise, confirmPasswordCallback_ is invoked again.
164 confirmPasswordCallback_
: null,
167 * Similar to confirmPasswordCallback_ but is used when there is no
168 * password scraped after a success authentication. The authenticated user
169 * account is passed to the callback. The embedder should take over the
170 * flow and decide what to do next.
171 * @type {function(string)}
173 noPasswordCallback_
: null,
176 * The iframe container.
177 * @type {HTMLIFrameElement}
184 * Sets retrieveAuthenticatedUserEmailCallback_.
187 set retrieveAuthenticatedUserEmailCallback(callback
) {
188 this.retrieveAuthenticatedUserEmailCallback_
= callback
;
192 * Sets confirmPasswordCallback_.
195 set confirmPasswordCallback(callback
) {
196 this.confirmPasswordCallback_
= callback
;
200 * Sets noPasswordCallback_.
203 set noPasswordCallback(callback
) {
204 this.noPasswordCallback_
= callback
;
208 * Loads the auth extension.
209 * @param {AuthMode} authMode Authorization mode.
210 * @param {Object} data Parameters for the auth extension. See the auth
211 * extension's main.js for all supported params and their defaults.
212 * @param {function(Object)} successCallback A function to be called when
213 * the authentication is completed successfully. The callback is
214 * invoked with a credential object.
216 load: function(authMode
, data
, successCallback
) {
219 var populateParams = function(nameList
, values
) {
223 for (var i
in nameList
) {
224 var name
= nameList
[i
];
226 params
.push(name
+ '=' + encodeURIComponent(values
[name
]));
230 populateParams(SUPPORTED_PARAMS
, data
);
231 populateParams(LOCALIZED_STRING_PARAMS
, data
.localizedStrings
);
232 params
.push('parentPage=' + encodeURIComponent(window
.location
.origin
));
236 case AuthMode
.OFFLINE
:
237 url
= OFFLINE_AUTH_URL
;
239 case AuthMode
.DESKTOP
:
241 params
.push('desktopMode=1');
246 url
+= '?' + params
.join('&');
248 this.frame_
.src
= url
;
249 this.reloadUrl_
= url
;
250 this.successCallback_
= successCallback
;
251 this.authFlow
= AuthFlow
.GAIA
;
255 * Reloads the auth extension.
258 this.frame_
.src
= this.reloadUrl_
;
259 this.authFlow
= AuthFlow
.GAIA
;
263 * Verifies the supplied password by sending it to the auth extension,
264 * which will then check if it matches the scraped passwords.
265 * @param {string} password The confirmed password that needs verification.
267 verifyConfirmedPassword: function(password
) {
269 method
: 'verifyConfirmedPassword',
272 this.frame_
.contentWindow
.postMessage(msg
, AUTH_URL_BASE
);
276 * Sends the authenticated user's e-mail address to the auth extension.
277 * @param {number} attemptToken The opaque token provided to the
278 * retrieveAuthenticatedUserEmailCallback_.
279 * @param {string} email The authenticated user's e-mail address.
281 setAuthenticatedUserEmail: function(attemptToken
, email
) {
283 method
: 'setAuthenticatedUserEmail',
284 attemptToken
: attemptToken
,
287 this.frame_
.contentWindow
.postMessage(msg
, AUTH_URL_BASE
);
291 * Invoked to process authentication success.
292 * @param {Object} credentials Credential object to pass to success
296 onAuthSuccess_: function(credentials
) {
297 if (this.successCallback_
)
298 this.successCallback_(credentials
);
299 cr
.dispatchSimpleEvent(this, 'completed');
303 * Checks if message comes from the loaded authentication extension.
304 * @param {Object} e Payload of the received HTML5 message.
307 isAuthExtMessage_: function(e
) {
308 return this.frame_
.src
&&
309 this.frame_
.src
.indexOf(e
.origin
) == 0 &&
310 e
.source
== this.frame_
.contentWindow
;
314 * Event handler that is invoked when HTML5 message is received.
315 * @param {object} e Payload of the received HTML5 message.
317 onMessage_: function(e
) {
320 if (!this.isAuthExtMessage_(e
))
323 if (msg
.method
== 'loginUILoaded') {
324 cr
.dispatchSimpleEvent(this, 'ready');
328 if (/^complete(Login|Authentication)$|^offlineLogin$/.test(msg
.method
)) {
329 if (!msg
.email
&& !this.email_
&& !msg
.skipForNow
) {
330 var msg
= {method
: 'redirectToSignin'};
331 this.frame_
.contentWindow
.postMessage(msg
, AUTH_URL_BASE
);
334 this.onAuthSuccess_({email
: msg
.email
,
335 password
: msg
.password
,
336 useOffline
: msg
.method
== 'offlineLogin',
337 usingSAML
: msg
.usingSAML
|| false,
338 chooseWhatToSync
: msg
.chooseWhatToSync
,
339 skipForNow
: msg
.skipForNow
|| false,
340 sessionIndex
: msg
.sessionIndex
|| ''});
344 if (msg
.method
== 'retrieveAuthenticatedUserEmail') {
345 if (this.retrieveAuthenticatedUserEmailCallback_
) {
346 this.retrieveAuthenticatedUserEmailCallback_(msg
.attemptToken
,
350 'GaiaAuthHost: Invalid retrieveAuthenticatedUserEmailCallback_.');
355 if (msg
.method
== 'confirmPassword') {
356 if (this.confirmPasswordCallback_
)
357 this.confirmPasswordCallback_(msg
.passwordCount
);
359 console
.error('GaiaAuthHost: Invalid confirmPasswordCallback_.');
363 if (msg
.method
== 'noPassword') {
364 if (this.noPasswordCallback_
)
365 this.noPasswordCallback_(msg
.email
);
367 console
.error('GaiaAuthHost: Invalid noPasswordCallback_.');
371 if (msg
.method
== 'authPageLoaded') {
372 this.authDomain
= msg
.domain
;
373 this.authFlow
= msg
.isSAML
? AuthFlow
.SAML
: AuthFlow
.GAIA
;
377 if (msg
.method
== 'switchToFullTab') {
378 chrome
.send('switchToFullTab', [msg
.url
]);
382 console
.error('Unknown message method=' + msg
.method
);
387 * The current auth flow of the hosted gaia_auth extension.
390 cr
.defineProperty(GaiaAuthHost
, 'authFlow');
392 GaiaAuthHost
.SUPPORTED_PARAMS
= SUPPORTED_PARAMS
;
393 GaiaAuthHost
.LOCALIZED_STRING_PARAMS
= LOCALIZED_STRING_PARAMS
;
394 GaiaAuthHost
.AuthMode
= AuthMode
;
395 GaiaAuthHost
.AuthFlow
= AuthFlow
;
398 GaiaAuthHost
: GaiaAuthHost