Bug 1887739: Removes force_auth fxa path and uses connect path instead.r=markh,settings-reviewers

Differential Revision: https://phabricator.services.mozilla.com/D208783
This commit is contained in:
Tarik Eshaq 2024-05-17 18:00:06 +00:00
parent 8843094dda
commit 612f797c4f
5 changed files with 79 additions and 21 deletions

View File

@ -1299,7 +1299,7 @@ var gSync = {
if (!(await FxAccounts.canConnectAccount())) {
return;
}
const url = await FxAccounts.config.promiseForceSigninURI(entryPoint);
const url = await FxAccounts.config.promiseConnectAccountURI(entryPoint);
switchToTabHavingURI(url, true, {
replaceQueryString: true,
triggeringPrincipal: Services.scriptSecurityManager.getSystemPrincipal(),

View File

@ -449,17 +449,7 @@ var gSyncPane = {
* different entrypoints to accounts
* */
async reSignIn(entrypoint) {
// There's a bit of an edge-case here - we might be forcing reauth when we've
// lost the FxA account data - in which case we'll not get a URL as the re-auth
// URL embeds account info and the server endpoint complains if we don't
// supply it - So we just use the regular "sign in" URL in that case.
if (!(await FxAccounts.canConnectAccount())) {
return;
}
const url =
(await FxAccounts.config.promiseForceSigninURI(entrypoint)) ||
(await FxAccounts.config.promiseConnectAccountURI(entrypoint));
const url = await FxAccounts.config.promiseConnectAccountURI(entrypoint);
this.replaceTabWithUrl(url);
},

View File

@ -78,14 +78,6 @@ export var FxAccountsConfig = {
});
},
async promiseForceSigninURI(entrypoint, extraParams = {}) {
const authParams = await this._getAuthParams();
return this._buildURL("force_auth", {
extraParams: { entrypoint, ...authParams, ...extraParams },
addAccountIdentifiers: true,
});
},
async promiseManageURI(entrypoint, extraParams = {}) {
return this._buildURL("settings", {
extraParams: { entrypoint, ...extraParams },
@ -186,7 +178,7 @@ export var FxAccountsConfig = {
resetConfigURLs() {
let autoconfigURL = this.getAutoConfigURL();
if (!autoconfigURL) {
if (autoconfigURL) {
return;
}
// They have the autoconfig uri pref set, so we clear all the prefs that we

View File

@ -35,6 +35,7 @@ import {
log,
logPII,
} from "resource://gre/modules/FxAccountsCommon.sys.mjs";
import { SyncDisconnect } from "resource://services-sync/SyncDisconnect.sys.mjs";
const lazy = {};
@ -471,6 +472,10 @@ FxAccountsWebChannelHelpers.prototype = {
* @param accountData the user's account data and credentials
*/
async login(accountData) {
const signedInUser = await this._fxAccounts.getSignedInUser();
if (signedInUser) {
await this._disconnect();
}
// We don't act on customizeSync anymore, it used to open a dialog inside
// the browser to selecte the engines to sync but we do it on the web now.
log.debug("Webchannel is logging a user in.");
@ -499,6 +504,7 @@ FxAccountsWebChannelHelpers.prototype = {
} else {
const xps = await this._initializeSync();
await this._fxAccounts._internal.setSignedInUser(accountData);
if (requestedServices) {
// User has enabled Sync.
if (requestedServices.sync) {
@ -511,6 +517,14 @@ FxAccountsWebChannelHelpers.prototype = {
}
},
/**
* Disconnects the user from Sync and FxA
*
*/
_disconnect() {
return SyncDisconnect.disconnect(false);
},
/**
* Logins in to sync by completing an OAuth flow
* @param { Object } oauthData: The oauth code and state as returned by the server */

View File

@ -469,6 +469,9 @@ add_test(function test_helpers_should_allow_relink_different_email() {
add_task(async function test_helpers_login_without_customize_sync() {
let helpers = new FxAccountsWebChannelHelpers({
fxAccounts: {
getSignedInUser() {
return Promise.resolve(null);
},
_internal: {
setSignedInUser(accountData) {
return new Promise(resolve => {
@ -512,6 +515,9 @@ add_task(async function test_helpers_login_without_customize_sync() {
add_task(async function test_helpers_login_set_previous_account_name_hash() {
let helpers = new FxAccountsWebChannelHelpers({
fxAccounts: {
getSignedInUser() {
return Promise.resolve(null);
},
_internal: {
setSignedInUser() {
return new Promise(resolve => {
@ -549,6 +555,47 @@ add_task(async function test_helpers_login_set_previous_account_name_hash() {
});
});
add_task(async function test_helpers_login_another_user_signed_in() {
let helpers = new FxAccountsWebChannelHelpers({
fxAccounts: {
getSignedInUser() {
return Promise.resolve({ uid: "foo" });
},
_internal: {
setSignedInUser(accountData) {
return new Promise(resolve => {
// ensure fxAccounts is informed of the new user being signed in.
Assert.equal(accountData.email, "testuser@testuser.com");
resolve();
});
},
},
telemetry: {
recordConnection: sinon.spy(),
},
},
weaveXPCOM: {
whenLoaded() {},
Weave: {
Service: {
configure() {},
},
},
},
});
helpers._disconnect = sinon.spy();
await helpers.login({
email: "testuser@testuser.com",
verifiedCanLinkAccount: true,
customizeSync: false,
});
Assert.ok(
helpers._fxAccounts.telemetry.recordConnection.calledWith([], "webchannel")
);
Assert.ok(helpers._disconnect.called);
});
add_task(
async function test_helpers_login_dont_set_previous_account_name_hash_for_unverified_emails() {
let helpers = new FxAccountsWebChannelHelpers({
@ -565,6 +612,9 @@ add_task(
});
},
},
getSignedInUser() {
return Promise.resolve(null);
},
telemetry: {
recordConnection() {},
},
@ -606,6 +656,9 @@ add_task(async function test_helpers_login_with_customize_sync() {
});
},
},
getSignedInUser() {
return Promise.resolve(null);
},
telemetry: {
recordConnection: sinon.spy(),
},
@ -648,6 +701,9 @@ add_task(
});
},
},
getSignedInUser() {
return Promise.resolve(null);
},
telemetry: {
recordConnection: sinon.spy(),
},
@ -744,6 +800,9 @@ add_task(async function test_helpers_login_with_offered_sync_engines() {
resolve(accountData);
},
},
getSignedInUser() {
return Promise.resolve(null);
},
telemetry: {
recordConnection() {},
},
@ -801,6 +860,9 @@ add_task(async function test_helpers_login_nothing_offered() {
resolve(accountData);
},
},
getSignedInUser() {
return Promise.resolve(null);
},
telemetry: {
recordConnection() {},
},