2017-04-18 21:15:43 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef {Object} UIState
|
|
|
|
* @property {string} status The Sync/FxA status, see STATUS_* constants.
|
|
|
|
* @property {string} [email] The FxA email configured to log-in with Sync.
|
|
|
|
* @property {string} [displayName] The user's FxA display name.
|
|
|
|
* @property {string} [avatarURL] The user's FxA avatar URL.
|
|
|
|
* @property {Date} [lastSync] The last sync time.
|
|
|
|
* @property {boolean} [syncing] Whether or not we are currently syncing.
|
|
|
|
*/
|
|
|
|
|
|
|
|
this.EXPORTED_SYMBOLS = ["UIState"];
|
|
|
|
|
|
|
|
const { classes: Cc, interfaces: Ci, utils: Cu } = Components;
|
|
|
|
|
2018-01-30 02:20:18 +03:00
|
|
|
ChromeUtils.import("resource://gre/modules/Services.jsm");
|
|
|
|
ChromeUtils.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
|
|
ChromeUtils.defineModuleGetter(this, "Weave",
|
|
|
|
"resource://services-sync/main.js");
|
2017-04-18 21:15:43 +03:00
|
|
|
|
|
|
|
const TOPICS = [
|
|
|
|
"weave:service:login:change",
|
|
|
|
"weave:service:login:error",
|
|
|
|
"weave:service:ready",
|
|
|
|
"weave:service:sync:start",
|
|
|
|
"weave:service:sync:finish",
|
|
|
|
"weave:service:sync:error",
|
2017-05-31 19:02:28 +03:00
|
|
|
"fxaccounts:onverified",
|
2017-04-18 21:15:43 +03:00
|
|
|
"fxaccounts:onlogin", // Defined in FxAccountsCommon, pulling it is expensive.
|
|
|
|
"fxaccounts:onlogout",
|
|
|
|
"fxaccounts:profilechange",
|
|
|
|
];
|
|
|
|
|
2017-10-15 21:50:30 +03:00
|
|
|
const ON_UPDATE = "sync-ui-state:update";
|
2017-04-18 21:15:43 +03:00
|
|
|
|
|
|
|
const STATUS_NOT_CONFIGURED = "not_configured";
|
|
|
|
const STATUS_LOGIN_FAILED = "login_failed";
|
|
|
|
const STATUS_NOT_VERIFIED = "not_verified";
|
|
|
|
const STATUS_SIGNED_IN = "signed_in";
|
|
|
|
|
|
|
|
const DEFAULT_STATE = {
|
|
|
|
status: STATUS_NOT_CONFIGURED
|
|
|
|
};
|
|
|
|
|
|
|
|
const UIStateInternal = {
|
|
|
|
_initialized: false,
|
|
|
|
_state: null,
|
|
|
|
|
|
|
|
// We keep _syncing out of the state object because we can only track it
|
|
|
|
// using sync events and we can't determine it at any point in time.
|
|
|
|
_syncing: false,
|
|
|
|
|
|
|
|
get state() {
|
|
|
|
if (!this._state) {
|
|
|
|
return DEFAULT_STATE;
|
|
|
|
}
|
|
|
|
return Object.assign({}, this._state, { syncing: this._syncing });
|
|
|
|
},
|
|
|
|
|
|
|
|
isReady() {
|
|
|
|
if (!this._initialized) {
|
|
|
|
this.init();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
|
|
|
init() {
|
|
|
|
this._initialized = true;
|
2017-07-04 21:23:33 +03:00
|
|
|
if (!Services.prefs.prefHasUserValue("services.sync.username")) {
|
|
|
|
return;
|
|
|
|
}
|
2017-04-18 21:15:43 +03:00
|
|
|
// Refresh the state in the background.
|
|
|
|
this.refreshState().catch(e => {
|
|
|
|
Cu.reportError(e);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
// Used for testing.
|
|
|
|
reset() {
|
|
|
|
this._state = null;
|
|
|
|
this._syncing = false;
|
|
|
|
this._initialized = false;
|
|
|
|
},
|
|
|
|
|
|
|
|
observe(subject, topic, data) {
|
|
|
|
switch (topic) {
|
|
|
|
case "weave:service:sync:start":
|
|
|
|
this.toggleSyncActivity(true);
|
|
|
|
break;
|
|
|
|
case "weave:service:sync:finish":
|
|
|
|
case "weave:service:sync:error":
|
|
|
|
this.toggleSyncActivity(false);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
this.refreshState().catch(e => {
|
|
|
|
Cu.reportError(e);
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// Builds a new state from scratch.
|
|
|
|
async refreshState() {
|
2017-06-06 21:28:00 +03:00
|
|
|
const newState = {};
|
|
|
|
await this._refreshFxAState(newState);
|
|
|
|
this._setLastSyncTime(newState); // We want this in case we change accounts.
|
|
|
|
this._state = newState;
|
2017-04-18 21:15:43 +03:00
|
|
|
|
|
|
|
this.notifyStateUpdated();
|
|
|
|
return this.state;
|
|
|
|
},
|
|
|
|
|
|
|
|
// Update the current state with the last sync time/currently syncing status.
|
|
|
|
toggleSyncActivity(syncing) {
|
|
|
|
this._syncing = syncing;
|
|
|
|
this._setLastSyncTime(this._state);
|
|
|
|
|
|
|
|
this.notifyStateUpdated();
|
|
|
|
},
|
|
|
|
|
|
|
|
notifyStateUpdated() {
|
|
|
|
Services.obs.notifyObservers(null, ON_UPDATE);
|
|
|
|
},
|
|
|
|
|
2017-06-06 21:28:00 +03:00
|
|
|
async _refreshFxAState(newState) {
|
2017-04-18 21:15:43 +03:00
|
|
|
let userData = await this._getUserData();
|
2017-09-07 04:13:53 +03:00
|
|
|
await this._populateWithUserData(newState, userData);
|
2017-06-06 21:28:00 +03:00
|
|
|
if (newState.status != STATUS_SIGNED_IN) {
|
2017-04-18 21:15:43 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
let profile = await this._getProfile();
|
|
|
|
if (!profile) {
|
|
|
|
return;
|
|
|
|
}
|
2017-06-06 21:28:00 +03:00
|
|
|
this._populateWithProfile(newState, profile);
|
2017-04-18 21:15:43 +03:00
|
|
|
},
|
|
|
|
|
2017-09-07 04:13:53 +03:00
|
|
|
async _populateWithUserData(state, userData) {
|
2017-04-18 21:15:43 +03:00
|
|
|
let status;
|
|
|
|
if (!userData) {
|
2017-12-04 07:48:45 +03:00
|
|
|
// If Sync thinks it is configured but there's no FxA user, then we
|
|
|
|
// want to enter the "login failed" state so the user can get
|
|
|
|
// reconfigured.
|
|
|
|
let syncUserName = Services.prefs.getStringPref("services.sync.username", "");
|
|
|
|
if (syncUserName) {
|
|
|
|
state.email = syncUserName;
|
|
|
|
status = STATUS_LOGIN_FAILED;
|
|
|
|
} else {
|
|
|
|
// everyone agrees nothing is configured.
|
|
|
|
status = STATUS_NOT_CONFIGURED;
|
|
|
|
}
|
2017-04-18 21:15:43 +03:00
|
|
|
} else {
|
2017-09-07 04:13:53 +03:00
|
|
|
let loginFailed = await this._loginFailed();
|
|
|
|
if (loginFailed) {
|
2017-04-18 21:15:43 +03:00
|
|
|
status = STATUS_LOGIN_FAILED;
|
|
|
|
} else if (!userData.verified) {
|
|
|
|
status = STATUS_NOT_VERIFIED;
|
|
|
|
} else {
|
|
|
|
status = STATUS_SIGNED_IN;
|
|
|
|
}
|
|
|
|
state.email = userData.email;
|
|
|
|
}
|
|
|
|
state.status = status;
|
|
|
|
},
|
|
|
|
|
|
|
|
_populateWithProfile(state, profile) {
|
|
|
|
state.displayName = profile.displayName;
|
|
|
|
state.avatarURL = profile.avatar;
|
|
|
|
},
|
|
|
|
|
|
|
|
async _getUserData() {
|
|
|
|
try {
|
|
|
|
return await this.fxAccounts.getSignedInUser();
|
|
|
|
} catch (e) {
|
|
|
|
// This is most likely in tests, where we quickly log users in and out.
|
|
|
|
// The most likely scenario is a user logged out, so reflect that.
|
|
|
|
// Bug 995134 calls for better errors so we could retry if we were
|
|
|
|
// sure this was the failure reason.
|
|
|
|
Cu.reportError("Error updating FxA account info: " + e);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
async _getProfile() {
|
|
|
|
try {
|
|
|
|
return await this.fxAccounts.getSignedInUserProfile();
|
|
|
|
} catch (e) {
|
|
|
|
// Not fetching the profile is sad but the FxA logs will already have noise.
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_setLastSyncTime(state) {
|
|
|
|
if (state.status == UIState.STATUS_SIGNED_IN) {
|
|
|
|
try {
|
|
|
|
state.lastSync = new Date(Services.prefs.getCharPref("services.sync.lastSync", null));
|
|
|
|
} catch (_) {
|
|
|
|
state.lastSync = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-09-07 04:13:53 +03:00
|
|
|
async _loginFailed() {
|
|
|
|
// First ask FxA if it thinks the user needs re-authentication. In practice,
|
|
|
|
// this check is probably canonical (ie, we probably don't really need
|
|
|
|
// the check below at all as we drop local session info on the first sign
|
|
|
|
// of a problem) - but we keep it for now to keep the risk down.
|
|
|
|
let hasLocalSession = await this.fxAccounts.hasLocalSession();
|
|
|
|
if (!hasLocalSession) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-04-18 21:15:43 +03:00
|
|
|
// Referencing Weave.Service will implicitly initialize sync, and we don't
|
|
|
|
// want to force that - so first check if it is ready.
|
|
|
|
let service = Cc["@mozilla.org/weave/service;1"]
|
|
|
|
.getService(Ci.nsISupports)
|
|
|
|
.wrappedJSObject;
|
|
|
|
if (!service.ready) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// LOGIN_FAILED_LOGIN_REJECTED explicitly means "you must log back in".
|
|
|
|
// All other login failures are assumed to be transient and should go
|
|
|
|
// away by themselves, so aren't reflected here.
|
|
|
|
return Weave.Status.login == Weave.LOGIN_FAILED_LOGIN_REJECTED;
|
|
|
|
},
|
|
|
|
|
|
|
|
set fxAccounts(mockFxAccounts) {
|
|
|
|
delete this.fxAccounts;
|
|
|
|
this.fxAccounts = mockFxAccounts;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-01-30 02:20:18 +03:00
|
|
|
ChromeUtils.defineModuleGetter(UIStateInternal, "fxAccounts",
|
|
|
|
"resource://gre/modules/FxAccounts.jsm");
|
2017-04-18 21:15:43 +03:00
|
|
|
|
|
|
|
for (let topic of TOPICS) {
|
|
|
|
Services.obs.addObserver(UIStateInternal, topic);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.UIState = {
|
|
|
|
_internal: UIStateInternal,
|
|
|
|
|
|
|
|
ON_UPDATE,
|
|
|
|
|
|
|
|
STATUS_NOT_CONFIGURED,
|
|
|
|
STATUS_LOGIN_FAILED,
|
|
|
|
STATUS_NOT_VERIFIED,
|
|
|
|
STATUS_SIGNED_IN,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if the module has been initialized and the state set.
|
|
|
|
* If not, return false and trigger an init in the background.
|
|
|
|
*/
|
|
|
|
isReady() {
|
|
|
|
return this._internal.isReady();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @returns {UIState} The current Sync/FxA UI State.
|
|
|
|
*/
|
|
|
|
get() {
|
|
|
|
return this._internal.state;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Refresh the state. Used for testing, don't call this directly since
|
|
|
|
* UIState already listens to Sync/FxA notifications to determine if the state
|
|
|
|
* needs to be refreshed. ON_UPDATE will be fired once the state is refreshed.
|
|
|
|
*
|
|
|
|
* @returns {Promise<UIState>} Resolved once the state is refreshed.
|
|
|
|
*/
|
|
|
|
refresh() {
|
|
|
|
return this._internal.refreshState();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reset the state of the whole module. Used for testing.
|
|
|
|
*/
|
|
|
|
reset() {
|
|
|
|
this._internal.reset();
|
|
|
|
}
|
|
|
|
};
|