forked from mirrors/gecko-dev
649 lines
18 KiB
JavaScript
649 lines
18 KiB
JavaScript
/* 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/. */
|
|
|
|
import { FirefoxRelayTelemetry } from "resource://gre/modules/FirefoxRelayTelemetry.mjs";
|
|
import {
|
|
LoginHelper,
|
|
OptInFeature,
|
|
ParentAutocompleteOption,
|
|
} from "resource://gre/modules/LoginHelper.sys.mjs";
|
|
import { XPCOMUtils } from "resource://gre/modules/XPCOMUtils.sys.mjs";
|
|
|
|
const { TelemetryUtils } = ChromeUtils.import(
|
|
"resource://gre/modules/TelemetryUtils.jsm"
|
|
);
|
|
|
|
const lazy = {};
|
|
|
|
// Static configuration
|
|
const gConfig = (function() {
|
|
const baseUrl = Services.prefs.getStringPref(
|
|
"signon.firefoxRelay.base_url",
|
|
undefined
|
|
);
|
|
return {
|
|
scope: ["https://identity.mozilla.com/apps/relay"],
|
|
addressesUrl: baseUrl + `relayaddresses/`,
|
|
profilesUrl: baseUrl + `profiles/`,
|
|
learnMoreURL: Services.urlFormatter.formatURLPref(
|
|
"signon.firefoxRelay.learn_more_url"
|
|
),
|
|
manageURL: Services.urlFormatter.formatURLPref(
|
|
"signon.firefoxRelay.manage_url"
|
|
),
|
|
relayFeaturePref: "signon.firefoxRelay.feature",
|
|
};
|
|
})();
|
|
|
|
XPCOMUtils.defineLazyGetter(lazy, "log", () =>
|
|
LoginHelper.createLogger("FirefoxRelay")
|
|
);
|
|
XPCOMUtils.defineLazyGetter(lazy, "fxAccounts", () =>
|
|
ChromeUtils.importESModule(
|
|
"resource://gre/modules/FxAccounts.sys.mjs"
|
|
).getFxAccountsSingleton()
|
|
);
|
|
XPCOMUtils.defineLazyGetter(lazy, "strings", function() {
|
|
return new Localization([
|
|
"branding/brand.ftl",
|
|
"browser/firefoxRelay.ftl",
|
|
"toolkit/branding/accounts.ftl",
|
|
"toolkit/branding/brandings.ftl",
|
|
]);
|
|
});
|
|
|
|
if (Services.appinfo.processType !== Services.appinfo.PROCESS_TYPE_DEFAULT) {
|
|
throw new Error("FirefoxRelay.sys.mjs should only run in the parent process");
|
|
}
|
|
|
|
async function getRelayTokenAsync() {
|
|
try {
|
|
return await lazy.fxAccounts.getOAuthToken({ scope: gConfig.scope });
|
|
} catch (e) {
|
|
console.error(`There was an error getting the user's token: ${e.message}`);
|
|
return undefined;
|
|
}
|
|
}
|
|
|
|
async function hasFirefoxAccountAsync() {
|
|
if (!lazy.fxAccounts.constructor.config.isProductionConfig()) {
|
|
return false;
|
|
}
|
|
|
|
return lazy.fxAccounts.hasLocalSession();
|
|
}
|
|
|
|
async function fetchWithReauth(
|
|
browser,
|
|
createRequest,
|
|
canGetFreshOAuthToken = true
|
|
) {
|
|
const relayToken = await getRelayTokenAsync();
|
|
if (!relayToken) {
|
|
if (browser) {
|
|
await showErrorAsync(browser, "firefox-relay-must-login-to-fxa");
|
|
}
|
|
return undefined;
|
|
}
|
|
|
|
const headers = new Headers({
|
|
Authorization: `Bearer ${relayToken}`,
|
|
Accept: "application/json",
|
|
"Accept-Language": Services.locale.requestedLocales,
|
|
"Content-Type": "application/json",
|
|
});
|
|
|
|
const request = createRequest(headers);
|
|
const response = await fetch(request);
|
|
|
|
if (canGetFreshOAuthToken && response.status == 401) {
|
|
await lazy.fxAccounts.removeCachedOAuthToken({ token: relayToken });
|
|
return fetchWithReauth(browser, createRequest, false);
|
|
}
|
|
return response;
|
|
}
|
|
|
|
async function isRelayUserAsync() {
|
|
if (!(await hasFirefoxAccountAsync())) {
|
|
return false;
|
|
}
|
|
|
|
const response = await fetchWithReauth(
|
|
null,
|
|
headers => new Request(gConfig.profilesUrl, { headers })
|
|
);
|
|
if (!response) {
|
|
return false;
|
|
}
|
|
|
|
if (!response.ok) {
|
|
lazy.log.error(
|
|
`failed to check if user is a Relay user: ${response.status}:${
|
|
response.statusText
|
|
}:${await response.text()}`
|
|
);
|
|
}
|
|
|
|
return response.ok;
|
|
}
|
|
|
|
async function getReusableMasksAsync(browser, _origin) {
|
|
const response = await fetchWithReauth(
|
|
browser,
|
|
headers =>
|
|
new Request(gConfig.addressesUrl, {
|
|
method: "GET",
|
|
headers,
|
|
})
|
|
);
|
|
|
|
if (!response) {
|
|
// fetchWithReauth only returns undefined if login / obtaining a token failed.
|
|
// Otherwise, it will return a response object.
|
|
return [undefined, RelayFeature.AUTH_TOKEN_ERROR_CODE];
|
|
}
|
|
|
|
if (response.ok) {
|
|
return [await response.json(), response.status];
|
|
}
|
|
|
|
lazy.log.error(
|
|
`failed to find reusable Relay masks: ${response.status}:${response.statusText}`
|
|
);
|
|
await showErrorAsync(browser, "firefox-relay-get-reusable-masks-failed", {
|
|
status: response.status,
|
|
});
|
|
|
|
return [undefined, response.status];
|
|
}
|
|
|
|
/**
|
|
* Show confirmation tooltip
|
|
* @param browser
|
|
* @param messageId message ID from browser/browser.properties
|
|
*/
|
|
function showConfirmation(browser, messageId) {
|
|
const anchor = browser.ownerDocument.getElementById("identity-icon");
|
|
anchor.ownerGlobal.ConfirmationHint.show(anchor, messageId, {});
|
|
}
|
|
|
|
/**
|
|
* Show localized notification.
|
|
* @param browser
|
|
* @param messageId messageId from browser/firefoxRelay.ftl
|
|
* @param messageArgs
|
|
*/
|
|
async function showErrorAsync(browser, messageId, messageArgs) {
|
|
const { PopupNotifications } = browser.ownerGlobal.wrappedJSObject;
|
|
const [message] = await lazy.strings.formatValues([
|
|
{ id: messageId, args: messageArgs },
|
|
]);
|
|
PopupNotifications.show(
|
|
browser,
|
|
"relay-integration-error",
|
|
message,
|
|
"password-notification-icon",
|
|
null,
|
|
null,
|
|
{
|
|
autofocus: true,
|
|
removeOnDismissal: true,
|
|
popupIconURL: "page-icon:https://relay.firefox.com",
|
|
learnMoreURL: gConfig.learnMoreURL,
|
|
}
|
|
);
|
|
}
|
|
|
|
function customizeNotificationHeader(notification) {
|
|
const document = notification.owner.panel.ownerDocument;
|
|
const description = document.querySelector(
|
|
`description[popupid=${notification.id}]`
|
|
);
|
|
const headerTemplate = document.getElementById("firefox-relay-header");
|
|
description.replaceChildren(headerTemplate.firstChild.cloneNode(true));
|
|
}
|
|
|
|
async function formatMessages(...ids) {
|
|
for (let i in ids) {
|
|
if (typeof ids[i] == "string") {
|
|
ids[i] = { id: ids[i] };
|
|
}
|
|
}
|
|
|
|
const messages = await lazy.strings.formatMessages(ids);
|
|
return messages.map(message => {
|
|
if (message.attributes) {
|
|
return message.attributes.reduce(
|
|
(result, { name, value }) => ({ ...result, [name]: value }),
|
|
{}
|
|
);
|
|
}
|
|
return message.value;
|
|
});
|
|
}
|
|
|
|
async function showReusableMasksAsync(browser, origin, error) {
|
|
const [reusableMasks, status] = await getReusableMasksAsync(browser, origin);
|
|
if (!reusableMasks) {
|
|
FirefoxRelayTelemetry.recordRelayReusePanelEvent(
|
|
"shown",
|
|
FirefoxRelay.flowId,
|
|
status
|
|
);
|
|
return null;
|
|
}
|
|
|
|
let fillUsername;
|
|
const fillUsernamePromise = new Promise(resolve => (fillUsername = resolve));
|
|
const [getUnlimitedMasksStrings] = await formatMessages(
|
|
"firefox-relay-get-unlimited-masks"
|
|
);
|
|
const getUnlimitedMasks = {
|
|
label: getUnlimitedMasksStrings.label,
|
|
accessKey: getUnlimitedMasksStrings.accesskey,
|
|
dismiss: true,
|
|
async callback() {
|
|
FirefoxRelayTelemetry.recordRelayReusePanelEvent(
|
|
"get_unlimited_masks",
|
|
FirefoxRelay.flowId
|
|
);
|
|
browser.ownerGlobal.openWebLinkIn(gConfig.manageURL, "tab");
|
|
},
|
|
};
|
|
|
|
let notification;
|
|
|
|
function getReusableMasksList() {
|
|
return notification.owner.panel.getElementsByClassName(
|
|
"reusable-relay-masks"
|
|
)[0];
|
|
}
|
|
|
|
function notificationShown() {
|
|
customizeNotificationHeader(notification);
|
|
|
|
notification.owner.panel.getElementsByClassName(
|
|
"error-message"
|
|
)[0].textContent = error.detail || "";
|
|
|
|
// rebuild "reuse mask" buttons list
|
|
const list = getReusableMasksList();
|
|
list.innerHTML = "";
|
|
|
|
const document = list.ownerDocument;
|
|
const fragment = document.createDocumentFragment();
|
|
reusableMasks
|
|
.filter(mask => mask.enabled)
|
|
.forEach(mask => {
|
|
const button = document.createElement("button");
|
|
|
|
const maskFullAddress = document.createElement("span");
|
|
maskFullAddress.textContent = mask.full_address;
|
|
button.appendChild(maskFullAddress);
|
|
|
|
const maskDescription = document.createElement("span");
|
|
maskDescription.textContent =
|
|
mask.description || mask.generated_for || mask.used_on;
|
|
button.appendChild(maskDescription);
|
|
|
|
button.addEventListener("click", () => {
|
|
notification.remove();
|
|
lazy.log.info("Reusing Relay mask");
|
|
fillUsername(mask.full_address);
|
|
FirefoxRelayTelemetry.recordRelayReusePanelEvent(
|
|
"reuse_mask",
|
|
FirefoxRelay.flowId
|
|
);
|
|
});
|
|
fragment.appendChild(button);
|
|
});
|
|
list.appendChild(fragment);
|
|
}
|
|
|
|
function notificationRemoved() {
|
|
const list = getReusableMasksList();
|
|
list.innerHTML = "";
|
|
}
|
|
|
|
function onNotificationEvent(event) {
|
|
switch (event) {
|
|
case "removed":
|
|
notificationRemoved();
|
|
break;
|
|
case "shown":
|
|
notificationShown();
|
|
FirefoxRelayTelemetry.recordRelayReusePanelEvent(
|
|
"shown",
|
|
FirefoxRelay.flowId
|
|
);
|
|
break;
|
|
}
|
|
}
|
|
|
|
const { PopupNotifications } = browser.ownerGlobal.wrappedJSObject;
|
|
notification = PopupNotifications.show(
|
|
browser,
|
|
"relay-integration-reuse-masks",
|
|
"", // content is provided after popup shown
|
|
"password-notification-icon",
|
|
getUnlimitedMasks,
|
|
[],
|
|
{
|
|
autofocus: true,
|
|
removeOnDismissal: true,
|
|
eventCallback: onNotificationEvent,
|
|
}
|
|
);
|
|
|
|
return fillUsernamePromise;
|
|
}
|
|
|
|
async function generateUsernameAsync(browser, origin) {
|
|
const body = JSON.stringify({
|
|
enabled: true,
|
|
description: origin.substr(0, 64),
|
|
generated_for: origin.substr(0, 255),
|
|
used_on: origin,
|
|
});
|
|
|
|
const response = await fetchWithReauth(
|
|
browser,
|
|
headers =>
|
|
new Request(gConfig.addressesUrl, {
|
|
method: "POST",
|
|
headers,
|
|
body,
|
|
})
|
|
);
|
|
|
|
if (!response) {
|
|
FirefoxRelayTelemetry.recordRelayUsernameFilledEvent(
|
|
"shown",
|
|
FirefoxRelay.flowId,
|
|
RelayFeature.AUTH_TOKEN_ERROR_CODE
|
|
);
|
|
return undefined;
|
|
}
|
|
|
|
if (response.ok) {
|
|
lazy.log.info(`generated Relay mask`);
|
|
const result = await response.json();
|
|
showConfirmation(browser, "confirmation-hint-firefox-relay-mask-generated");
|
|
return result.full_address;
|
|
}
|
|
|
|
if (response.status == 403) {
|
|
const error = await response.json();
|
|
if (error?.error_code == "free_tier_limit") {
|
|
FirefoxRelayTelemetry.recordRelayUsernameFilledEvent(
|
|
"shown",
|
|
FirefoxRelay.flowId,
|
|
error?.error_code
|
|
);
|
|
return showReusableMasksAsync(browser, origin, error);
|
|
}
|
|
}
|
|
|
|
lazy.log.error(
|
|
`failed to generate Relay mask: ${response.status}:${response.statusText}`
|
|
);
|
|
|
|
await showErrorAsync(browser, "firefox-relay-mask-generation-failed", {
|
|
status: response.status,
|
|
});
|
|
|
|
FirefoxRelayTelemetry.recordRelayReusePanelEvent(
|
|
"shown",
|
|
FirefoxRelay.flowId,
|
|
response.status
|
|
);
|
|
|
|
return undefined;
|
|
}
|
|
|
|
function isSignup(scenarioName) {
|
|
return scenarioName == "SignUpFormScenario";
|
|
}
|
|
|
|
class RelayOffered {
|
|
#isRelayUser;
|
|
|
|
async *autocompleteItemsAsync(_origin, scenarioName, hasInput) {
|
|
if (!hasInput && isSignup(scenarioName)) {
|
|
if (this.#isRelayUser === undefined) {
|
|
this.#isRelayUser = await isRelayUserAsync();
|
|
}
|
|
|
|
if (this.#isRelayUser) {
|
|
const [title, subtitle] = await formatMessages(
|
|
"firefox-relay-opt-in-title",
|
|
"firefox-relay-opt-in-subtitle"
|
|
);
|
|
yield new ParentAutocompleteOption(
|
|
"page-icon:https://relay.firefox.com",
|
|
title,
|
|
subtitle,
|
|
"PasswordManager:offerRelayIntegration",
|
|
{
|
|
telemetry: {
|
|
flowId: FirefoxRelay.flowId,
|
|
isRelayUser: this.#isRelayUser,
|
|
scenarioName,
|
|
},
|
|
}
|
|
);
|
|
FirefoxRelayTelemetry.recordRelayOfferedEvent(
|
|
"shown",
|
|
FirefoxRelay.flowId,
|
|
scenarioName,
|
|
this.#isRelayUser
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
async offerRelayIntegration(feature, browser, origin) {
|
|
const fxaUser = await lazy.fxAccounts.getSignedInUser();
|
|
|
|
if (!fxaUser) {
|
|
return null;
|
|
}
|
|
const { PopupNotifications } = browser.ownerGlobal.wrappedJSObject;
|
|
let fillUsername;
|
|
const fillUsernamePromise = new Promise(
|
|
resolve => (fillUsername = resolve)
|
|
);
|
|
const [
|
|
enableStrings,
|
|
disableStrings,
|
|
postponeStrings,
|
|
] = await formatMessages(
|
|
"firefox-relay-opt-in-confirmation-enable",
|
|
"firefox-relay-opt-in-confirmation-disable",
|
|
"firefox-relay-opt-in-confirmation-postpone"
|
|
);
|
|
const enableIntegration = {
|
|
label: enableStrings.label,
|
|
accessKey: enableStrings.accesskey,
|
|
dismiss: true,
|
|
async callback() {
|
|
lazy.log.info("user opted in to Firefox Relay integration");
|
|
feature.markAsEnabled();
|
|
FirefoxRelayTelemetry.recordRelayOptInPanelEvent(
|
|
"enabled",
|
|
FirefoxRelay.flowId
|
|
);
|
|
fillUsername(await generateUsernameAsync(browser, origin));
|
|
},
|
|
};
|
|
const postpone = {
|
|
label: postponeStrings.label,
|
|
accessKey: postponeStrings.accesskey,
|
|
dismiss: true,
|
|
callback() {
|
|
lazy.log.info(
|
|
"user decided not to decide about Firefox Relay integration"
|
|
);
|
|
feature.markAsOffered();
|
|
FirefoxRelayTelemetry.recordRelayOptInPanelEvent(
|
|
"postponed",
|
|
FirefoxRelay.flowId
|
|
);
|
|
},
|
|
};
|
|
const disableIntegration = {
|
|
label: disableStrings.label,
|
|
accessKey: disableStrings.accesskey,
|
|
dismiss: true,
|
|
callback() {
|
|
lazy.log.info("user opted out from Firefox Relay integration");
|
|
feature.markAsDisabled();
|
|
FirefoxRelayTelemetry.recordRelayOptInPanelEvent(
|
|
"disabled",
|
|
FirefoxRelay.flowId
|
|
);
|
|
},
|
|
};
|
|
let notification;
|
|
feature.markAsOffered();
|
|
notification = PopupNotifications.show(
|
|
browser,
|
|
"relay-integration-offer",
|
|
"", // content is provided after popup shown
|
|
"password-notification-icon",
|
|
enableIntegration,
|
|
[postpone, disableIntegration],
|
|
{
|
|
autofocus: true,
|
|
removeOnDismissal: true,
|
|
learnMoreURL: gConfig.learnMoreURL,
|
|
eventCallback: event => {
|
|
switch (event) {
|
|
case "shown":
|
|
customizeNotificationHeader(notification);
|
|
const document = notification.owner.panel.ownerDocument;
|
|
const content = document.querySelector(
|
|
`popupnotification[id=${notification.id}-notification] popupnotificationcontent`
|
|
);
|
|
const line3 = content.querySelector(
|
|
"[id=firefox-relay-offer-what-relay-does]"
|
|
);
|
|
document.l10n.setAttributes(
|
|
line3,
|
|
"firefox-relay-offer-what-relay-does",
|
|
{
|
|
sitename: origin,
|
|
useremail: fxaUser.email,
|
|
}
|
|
);
|
|
FirefoxRelayTelemetry.recordRelayOptInPanelEvent(
|
|
"shown",
|
|
FirefoxRelay.flowId
|
|
);
|
|
break;
|
|
}
|
|
},
|
|
}
|
|
);
|
|
|
|
return fillUsernamePromise;
|
|
}
|
|
}
|
|
|
|
class RelayEnabled {
|
|
async *autocompleteItemsAsync(origin, scenarioName, hasInput) {
|
|
if (
|
|
!hasInput &&
|
|
isSignup(scenarioName) &&
|
|
(await hasFirefoxAccountAsync())
|
|
) {
|
|
const [title, subtitle] = await formatMessages(
|
|
"firefox-relay-generate-mask-title",
|
|
"firefox-relay-generate-mask-subtitle"
|
|
);
|
|
yield new ParentAutocompleteOption(
|
|
"page-icon:https://relay.firefox.com",
|
|
title,
|
|
subtitle,
|
|
"PasswordManager:generateRelayUsername",
|
|
{
|
|
telemetry: {
|
|
flowId: FirefoxRelay.flowId,
|
|
},
|
|
}
|
|
);
|
|
FirefoxRelayTelemetry.recordRelayUsernameFilledEvent(
|
|
"shown",
|
|
FirefoxRelay.flowId
|
|
);
|
|
}
|
|
}
|
|
|
|
async generateUsername(browser, origin) {
|
|
return generateUsernameAsync(browser, origin);
|
|
}
|
|
}
|
|
|
|
class RelayDisabled {}
|
|
|
|
class RelayFeature extends OptInFeature {
|
|
// Using 418 to avoid conflict with other standard http error code
|
|
static AUTH_TOKEN_ERROR_CODE = 418;
|
|
|
|
constructor() {
|
|
super(RelayOffered, RelayEnabled, RelayDisabled, gConfig.relayFeaturePref);
|
|
Services.telemetry.setEventRecordingEnabled("relay_integration", true);
|
|
// Update the config when the signon.firefoxRelay.base_url pref is changed.
|
|
// This is added mainly for tests.
|
|
Services.prefs.addObserver(
|
|
"signon.firefoxRelay.base_url",
|
|
this.updateConfig
|
|
);
|
|
}
|
|
|
|
get learnMoreUrl() {
|
|
return gConfig.learnMoreURL;
|
|
}
|
|
|
|
updateConfig() {
|
|
const newBaseUrl = Services.prefs.getStringPref(
|
|
"signon.firefoxRelay.base_url"
|
|
);
|
|
gConfig.addressesUrl = newBaseUrl + `relayaddresses/`;
|
|
gConfig.profilesUrl = newBaseUrl + `profiles/`;
|
|
}
|
|
|
|
async autocompleteItemsAsync({ origin, scenarioName, hasInput }) {
|
|
const result = [];
|
|
|
|
// Generate a flowID to unique identify a series of user action. FlowId
|
|
// allows us to link users' interaction on different UI component (Ex. autocomplete, notification)
|
|
// We can use flowID to build the Funnel Diagram
|
|
// This value need to always be regenerated in the entry point of an user
|
|
// action so we overwrite the previous one.
|
|
this.flowId = TelemetryUtils.generateUUID();
|
|
|
|
if (this.implementation.autocompleteItemsAsync) {
|
|
for await (const item of this.implementation.autocompleteItemsAsync(
|
|
origin,
|
|
scenarioName,
|
|
hasInput
|
|
)) {
|
|
result.push(item);
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
async generateUsername(browser, origin) {
|
|
return this.implementation.generateUsername?.(browser, origin);
|
|
}
|
|
|
|
async offerRelayIntegration(browser, origin) {
|
|
return this.implementation.offerRelayIntegration?.(this, browser, origin);
|
|
}
|
|
}
|
|
|
|
export const FirefoxRelay = new RelayFeature();
|