Additionally, we now record durations of all migrations and whether or not they occured during first startup. Differential Revision: https://phabricator.services.mozilla.com/D303897
1212 lines
33 KiB
JavaScript
1212 lines
33 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 { ExperimentManager } from "./lib/ExperimentManager.sys.mjs"
|
|
* @import { RemoteSettingsExperimentLoader } from "./lib/RemoteSettingsExperimentLoader.sys.mjs"
|
|
*/
|
|
|
|
import { XPCOMUtils } from "resource://gre/modules/XPCOMUtils.sys.mjs";
|
|
import { AppConstants } from "resource://gre/modules/AppConstants.sys.mjs";
|
|
|
|
const lazy = {};
|
|
|
|
ChromeUtils.defineESModuleGetters(lazy, {
|
|
CleanupManager: "resource://normandy/lib/CleanupManager.sys.mjs",
|
|
ExperimentManager: "resource://nimbus/lib/ExperimentManager.sys.mjs",
|
|
FeatureManifest: "resource://nimbus/FeatureManifest.sys.mjs",
|
|
FirstStartup: "resource://gre/modules/FirstStartup.sys.mjs",
|
|
NimbusMigrations: "resource://nimbus/lib/Migrations.sys.mjs",
|
|
NimbusTelemetry: "resource://nimbus/lib/Telemetry.sys.mjs",
|
|
RemoteSettings: "resource://services-settings/remote-settings.sys.mjs",
|
|
RemoteSettingsExperimentLoader:
|
|
"resource://nimbus/lib/RemoteSettingsExperimentLoader.sys.mjs",
|
|
UnenrollmentCause: "resource://nimbus/lib/ExperimentManager.sys.mjs",
|
|
});
|
|
|
|
ChromeUtils.defineLazyGetter(lazy, "log", () => {
|
|
const { Logger } = ChromeUtils.importESModule(
|
|
"resource://messaging-system/lib/Logger.sys.mjs"
|
|
);
|
|
return new Logger("ExperimentAPI");
|
|
});
|
|
|
|
const CRASHREPORTER_ENABLED =
|
|
AppConstants.MOZ_CRASHREPORTER && AppConstants.MOZ_APP_NAME !== "thunderbird";
|
|
|
|
const IS_MAIN_PROCESS =
|
|
Services.appinfo.processType === Services.appinfo.PROCESS_TYPE_DEFAULT;
|
|
|
|
const Prefs = Object.freeze({
|
|
AI_FEATURES_ENABLED: "browser.ai.control.default",
|
|
ROLLOUTS_ENABLED: "nimbus.rollouts.enabled",
|
|
TELEMETRY_ENABLED: "datareporting.healthreport.uploadEnabled",
|
|
STUDIES_ENABLED: "app.shield.optoutstudies.enabled",
|
|
COLLECTION_ID: "messaging-system.rsexperimentloader.collection_id",
|
|
NIMBUS_PROFILE_ID: "nimbus.profileId",
|
|
});
|
|
|
|
XPCOMUtils.defineLazyPreferenceGetter(
|
|
lazy,
|
|
"COLLECTION_ID",
|
|
Prefs.COLLECTION_ID,
|
|
"nimbus-desktop-experiments"
|
|
);
|
|
|
|
function parseJSON(value) {
|
|
if (value) {
|
|
try {
|
|
return JSON.parse(value);
|
|
} catch (e) {
|
|
console.error(e);
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
const experimentBranchAccessor = {
|
|
get: (target, prop) => {
|
|
// Offer an API where we can access `branch.feature.*`.
|
|
// This is a useful shorthand that hides the fact that
|
|
// even single-feature recipes are still represented
|
|
// as an array with 1 item
|
|
if (!(prop in target) && target.features) {
|
|
return target.features.find(f => f.featureId === prop);
|
|
} else if (target.feature?.featureId === prop) {
|
|
// Backwards compatibility for version 1.6.2 and older
|
|
return target.feature;
|
|
}
|
|
|
|
return target[prop];
|
|
},
|
|
};
|
|
|
|
/**
|
|
* Metadata about an enrollment.
|
|
*
|
|
* @typedef {object} EnrollmentMetadata
|
|
* @property {string} slug
|
|
* The enrollment slug.
|
|
* @property {string} branch
|
|
* The slug of the enrolled branch.
|
|
* @property {boolean} isRollout
|
|
* Whether or not the enrollment is a rollout.
|
|
*/
|
|
|
|
/**
|
|
* Return metadata about an enrollment.
|
|
*
|
|
* @param {object} enrollment
|
|
* The enrollment.
|
|
*
|
|
* @returns {EnrollmentMetadata}
|
|
* Metadata about the enrollment.
|
|
*/
|
|
function _getEnrollmentMetadata(enrollment) {
|
|
return {
|
|
slug: enrollment.slug,
|
|
branch: enrollment.branch.slug,
|
|
isRollout: enrollment.isRollout,
|
|
};
|
|
}
|
|
|
|
/**
|
|
* @typedef {"experiment"|"rollout"} EnrollmentType
|
|
*/
|
|
export const EnrollmentType = Object.freeze({
|
|
EXPERIMENT: "experiment",
|
|
ROLLOUT: "rollout",
|
|
});
|
|
|
|
export const ExperimentAPI = new (class {
|
|
/**
|
|
* Whether or not the ExperimentAPI has been initialized.
|
|
* Returns the in-flight or settled init() promise, or null if init has not been
|
|
* called. Is truthy once init has been kicked off.
|
|
*
|
|
* @type {Promise<void> | null}
|
|
*/
|
|
#initializedPromise = null;
|
|
|
|
/**
|
|
* The current ExperimentManager.
|
|
*
|
|
* @type {ExperimentManager | null}
|
|
*/
|
|
#experimentManager = null;
|
|
|
|
/**
|
|
* The current RemoteSettingsExperimentLoader.
|
|
*
|
|
* @type {RemoteSettingsExperimentLoader | null}
|
|
*/
|
|
#experimentLoader = null;
|
|
|
|
/**
|
|
* The unique ID of this Profile.
|
|
*
|
|
* @type {string | null}
|
|
*/
|
|
#cachedProfileId = null;
|
|
|
|
/**
|
|
* Cached pref values.
|
|
*/
|
|
#prefValues = {
|
|
/**
|
|
* Whether or not AI features are enabled.
|
|
*
|
|
* @see {@link Prefs.AI_FEATURES_ENABLED}
|
|
*/
|
|
aiFeaturesEnabled: "blocked",
|
|
|
|
/**
|
|
* Whether or not rollouts are enabled.
|
|
*
|
|
* @see {@link Prefs.ROLLOUTS_ENABLED}
|
|
*/
|
|
rolloutsEnabled: false,
|
|
|
|
/**
|
|
* Whether or not opt-out studies are enabled.
|
|
*
|
|
* @see {@link Prefs.STUDIES_ENABLED}
|
|
*/
|
|
studiesEnabled: false,
|
|
|
|
/**
|
|
* Whether or not telemetry is enabled.
|
|
*
|
|
* @see {@link Prefs.TELEMETRY_ENABLED}
|
|
*/
|
|
telemetryEnabled: false,
|
|
};
|
|
|
|
/**
|
|
* Whether or not studies are enabled.
|
|
*
|
|
* @see {@link studiesEnabled}
|
|
*/
|
|
#studiesEnabled = false;
|
|
|
|
/**
|
|
* @type {FirstStartupTimestamps | null }
|
|
*/
|
|
#firstStartupTimestamps = null;
|
|
|
|
constructor() {
|
|
if (IS_MAIN_PROCESS) {
|
|
// Ensure that the profile ID is cached in a pref.
|
|
if (Services.prefs.prefHasUserValue(Prefs.NIMBUS_PROFILE_ID)) {
|
|
this.#cachedProfileId = Services.prefs.getStringPref(
|
|
Prefs.NIMBUS_PROFILE_ID
|
|
);
|
|
} else {
|
|
this.#cachedProfileId = Services.uuid
|
|
.generateUUID()
|
|
.toString()
|
|
.slice(1, -1);
|
|
Services.prefs.setStringPref(
|
|
Prefs.NIMBUS_PROFILE_ID,
|
|
this.#cachedProfileId
|
|
);
|
|
}
|
|
}
|
|
|
|
this._onEnabledPrefChange = this._onEnabledPrefChange.bind(this);
|
|
this._annotateCrashReport = this._annotateCrashReport.bind(this);
|
|
this._removeCrashReportAnnotator =
|
|
this._removeCrashReportAnnotator.bind(this);
|
|
|
|
ChromeUtils.defineLazyGetter(this, "_remoteSettingsClient", function () {
|
|
return lazy.RemoteSettings(lazy.COLLECTION_ID);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* The topic that is notified when the Nimbus enabled state changes.
|
|
*
|
|
* Consumers can listen for notifications on this topic to react to
|
|
* Nimbus being enabled or disabled.
|
|
*/
|
|
get STUDIES_ENABLED_CHANGED() {
|
|
return "nimbus:studies-enabled-changed";
|
|
}
|
|
|
|
/**
|
|
* The topic that is notified when Nimbus updates enrollmments.
|
|
*/
|
|
get ENROLLMENTS_UPDATED() {
|
|
return "nimbus:enrollments-updated";
|
|
}
|
|
|
|
/**
|
|
* Initialize the ExperimentAPI.
|
|
*
|
|
* This will initialize the ExperimentManager and the
|
|
* RemoteSettingsExperimentLoader. It will also trigger The
|
|
* RemoteSettingsExperimentLoader to update recipes.
|
|
*
|
|
* @param {object} options
|
|
* @param {object?} options.extraContext
|
|
* Additional context to use in the ExperimentManager's targeting
|
|
* context.
|
|
* @param {boolean?} options.forceSync
|
|
* Force the RemoteSettingsExperimentLoader to trigger a RemoteSettings
|
|
* sync before updating recipes for the first time.
|
|
*
|
|
* @returns {Promise<boolean>}
|
|
* Whether or not the ExperimentAPI was initialized.
|
|
*/
|
|
async init({ extraContext, forceSync = false } = {}) {
|
|
if (this.#initializedPromise) {
|
|
// Either init has already finished, or it is in flight. Either way,
|
|
// chain off the promise so we only return once init is actually complete.
|
|
return this.#initializedPromise.then(() => false);
|
|
}
|
|
|
|
await (this.#initializedPromise = this.#init({ extraContext, forceSync }));
|
|
return true;
|
|
}
|
|
|
|
async #init({ extraContext, forceSync }) {
|
|
if (lazy.FirstStartup.state === lazy.FirstStartup.IN_PROGRESS) {
|
|
this.#firstStartupTimestamps = {};
|
|
}
|
|
|
|
// Compute the enabled state and cache it. It is possible for the enabled
|
|
// state to change during ExperimentAPI initialization, but we do not
|
|
// register our observers until the end of this function.
|
|
this.#computeEnabled();
|
|
|
|
try {
|
|
await lazy.NimbusMigrations.applyMigrations(
|
|
lazy.NimbusMigrations.Phase.INIT_STARTED
|
|
);
|
|
} catch (e) {
|
|
lazy.log.error(
|
|
`Failed to apply migrations in phase ${
|
|
lazy.NimbusMigrations.Phase.INIT_STARTED
|
|
}`,
|
|
e
|
|
);
|
|
}
|
|
|
|
this.#computeEnabled();
|
|
|
|
try {
|
|
await this.manager.store.init();
|
|
} catch (e) {
|
|
lazy.log.error("Failed to initialize ExperimentStore:", e);
|
|
}
|
|
|
|
try {
|
|
await lazy.NimbusMigrations.applyMigrations(
|
|
lazy.NimbusMigrations.Phase.AFTER_STORE_INITIALIZED
|
|
);
|
|
} catch (e) {
|
|
lazy.log.error(
|
|
`Failed to apply migrations in phase ${lazy.NimbusMigrations.Phase.AFTER_STORE_INITIALIZED}`,
|
|
e
|
|
);
|
|
}
|
|
|
|
if (this.#firstStartupTimestamps) {
|
|
this.#firstStartupTimestamps.storeInitEnd = ChromeUtils.now();
|
|
}
|
|
|
|
try {
|
|
await this.manager.onStartup(extraContext);
|
|
} catch (e) {
|
|
lazy.log.error("Failed to initialize ExperimentManager:", e);
|
|
}
|
|
|
|
if (this.#firstStartupTimestamps) {
|
|
this.#firstStartupTimestamps.managerInitEnd = ChromeUtils.now();
|
|
}
|
|
|
|
try {
|
|
await this._rsLoader.enable({ forceSync });
|
|
} catch (e) {
|
|
lazy.log.error("Failed to enable RemoteSettingsExperimentLoader:", e);
|
|
}
|
|
|
|
try {
|
|
await lazy.NimbusMigrations.applyMigrations(
|
|
lazy.NimbusMigrations.Phase.AFTER_REMOTE_SETTINGS_UPDATE
|
|
);
|
|
} catch (e) {
|
|
lazy.log.error(
|
|
`Failed to apply migrations in phase ${
|
|
lazy.NimbusMigrations.Phase.AFTER_REMOTE_SETTINGS_UPDATE
|
|
}`,
|
|
e
|
|
);
|
|
}
|
|
|
|
if (this.#firstStartupTimestamps) {
|
|
this.#firstStartupTimestamps.loaderInitEnd = ChromeUtils.now();
|
|
}
|
|
|
|
if (CRASHREPORTER_ENABLED) {
|
|
this.manager.store.on("update", this._annotateCrashReport);
|
|
this._annotateCrashReport();
|
|
|
|
lazy.CleanupManager.addCleanupHandler(
|
|
ExperimentAPI._removeCrashReportAnnotator
|
|
);
|
|
}
|
|
|
|
Services.prefs.addObserver(
|
|
Prefs.ROLLOUTS_ENABLED,
|
|
this._onEnabledPrefChange
|
|
);
|
|
Services.prefs.addObserver(
|
|
Prefs.STUDIES_ENABLED,
|
|
this._onEnabledPrefChange
|
|
);
|
|
Services.prefs.addObserver(
|
|
Prefs.TELEMETRY_ENABLED,
|
|
this._onEnabledPrefChange
|
|
);
|
|
Services.prefs.addObserver(
|
|
Prefs.AI_FEATURES_ENABLED,
|
|
this._onEnabledPrefChange
|
|
);
|
|
|
|
// If Nimbus was disabled between the start of this function and registering
|
|
// the pref observers we have not handled it yet.
|
|
//
|
|
// If the enabled state hasn't actually changed, calling this function is a
|
|
// no-op.
|
|
await this._onEnabledPrefChange();
|
|
|
|
if (this.#firstStartupTimestamps) {
|
|
this.#firstStartupTimestamps.nimbusInitEnd = ChromeUtils.now();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Return the global ExperimentManager.
|
|
*
|
|
* The ExperimentManager will be lazily created upon first access to this
|
|
* property.
|
|
*
|
|
* @type {ExperimentManager}
|
|
*/
|
|
get manager() {
|
|
if (this.#experimentManager === null) {
|
|
this.#experimentManager = new lazy.ExperimentManager();
|
|
}
|
|
|
|
return this.#experimentManager;
|
|
}
|
|
|
|
/**
|
|
* Return the global ExperimentManager.
|
|
*
|
|
* @deprecated Use ExperimentAPI.Manager instead of this property.
|
|
*
|
|
* @type {ExperimentManager}
|
|
*/
|
|
get _manager() {
|
|
return this.manager;
|
|
}
|
|
|
|
/**
|
|
* Return the global RemoteSettingsExperimentLoader.
|
|
*
|
|
* @type {RemoteSettingsExperimentLoader}
|
|
*/
|
|
get _rsLoader() {
|
|
if (this.#experimentLoader === null) {
|
|
this.#experimentLoader = new lazy.RemoteSettingsExperimentLoader(
|
|
this.manager
|
|
);
|
|
}
|
|
|
|
return this.#experimentLoader;
|
|
}
|
|
|
|
_resetForTests() {
|
|
this.#experimentLoader?.disable();
|
|
this.#experimentLoader = null;
|
|
|
|
lazy.CleanupManager.removeCleanupHandler(this._removeCrashReportAnnotator);
|
|
this.#experimentManager?.store.off("update", this._annotateCrashReport);
|
|
this.#experimentManager = null;
|
|
|
|
Services.prefs.removeObserver(
|
|
Prefs.ROLLOUTS_ENABLED,
|
|
this._onEnabledPrefChange
|
|
);
|
|
Services.prefs.removeObserver(
|
|
Prefs.STUDIES_ENABLED,
|
|
this._onEnabledPrefChange
|
|
);
|
|
Services.prefs.removeObserver(
|
|
Prefs.TELEMETRY_ENABLED,
|
|
this._onEnabledPrefChange
|
|
);
|
|
|
|
this.#initializedPromise = null;
|
|
}
|
|
|
|
#computeEnabled() {
|
|
this.#prefValues.rolloutsEnabled = Services.prefs.getBoolPref(
|
|
Prefs.ROLLOUTS_ENABLED,
|
|
false
|
|
);
|
|
this.#prefValues.studiesEnabled = Services.prefs.getBoolPref(
|
|
Prefs.STUDIES_ENABLED,
|
|
false
|
|
);
|
|
this.#prefValues.telemetryEnabled = Services.prefs.getBoolPref(
|
|
Prefs.TELEMETRY_ENABLED,
|
|
false
|
|
);
|
|
|
|
this.#prefValues.aiFeaturesEnabled = Services.prefs.getStringPref(
|
|
Prefs.AI_FEATURES_ENABLED
|
|
);
|
|
|
|
this.#studiesEnabled =
|
|
this.#prefValues.studiesEnabled &&
|
|
this.#prefValues.telemetryEnabled &&
|
|
Services.policies.isAllowed("Shield");
|
|
}
|
|
|
|
get enabled() {
|
|
return this.labsEnabled || this.rolloutsEnabled || this.studiesEnabled;
|
|
}
|
|
|
|
get labsEnabled() {
|
|
return Services.policies.isAllowed("FirefoxLabs");
|
|
}
|
|
|
|
get rolloutsEnabled() {
|
|
return (
|
|
this.#prefValues.rolloutsEnabled &&
|
|
Services.policies.isAllowed("NimbusRollouts")
|
|
);
|
|
}
|
|
|
|
get studiesEnabled() {
|
|
return this.#studiesEnabled;
|
|
}
|
|
|
|
get aiFeaturesEnabled() {
|
|
return this.#prefValues.aiFeaturesEnabled === "available";
|
|
}
|
|
|
|
/**
|
|
* Return the profile ID.
|
|
*
|
|
* This is used to distinguish different profiles in a shared profile group
|
|
* apart. Each profile has a persistent and stable profile ID. It is stored as
|
|
* a user branch pref.
|
|
*
|
|
* This is still susceptible to user.js editing, but there's nothing we can do
|
|
* about that.
|
|
*
|
|
* @throws {Error} If accessed outside the main process.
|
|
*
|
|
* @returns {string} The profile ID.
|
|
*/
|
|
get profileId() {
|
|
if (!IS_MAIN_PROCESS) {
|
|
throw new Error(
|
|
"ExperimentAPI.profileId is not available outside the main process"
|
|
);
|
|
}
|
|
|
|
return this.#cachedProfileId;
|
|
}
|
|
|
|
/**
|
|
* Wait for the ExperimentAPI to become ready.
|
|
*
|
|
* NB: This method will not initialize the ExperimentAPI. This is intentional
|
|
* and doing so breaks a lot of tests due to enabling the
|
|
* RemoteSettingsExperimentLoader et al.
|
|
*
|
|
* @returns {Promise}
|
|
* A promise that resolves when the API has synchronized to the main
|
|
* store
|
|
*/
|
|
async ready() {
|
|
return this.manager.store.ready();
|
|
}
|
|
|
|
/**
|
|
* Annotate the current crash report with current enrollments.
|
|
*/
|
|
_annotateCrashReport() {
|
|
if (!Services.appinfo.crashReporterEnabled) {
|
|
return;
|
|
}
|
|
|
|
const activeEnrollments = this.manager.store
|
|
.getAll()
|
|
.filter(e => e.active)
|
|
.map(e => `${e.slug}:${e.branch.slug}`)
|
|
.join(",");
|
|
|
|
Services.appinfo.annotateCrashReport(
|
|
"NimbusEnrollments",
|
|
activeEnrollments
|
|
);
|
|
}
|
|
|
|
_removeCrashReportAnnotator() {
|
|
if (this.#initializedPromise) {
|
|
this.#experimentManager?.store.off("update", this._annotateCrashReport);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Handle a pref change that may result in Nimbus being enabled or disabled.
|
|
*/
|
|
async _onEnabledPrefChange() {
|
|
if (!this.#initializedPromise) {
|
|
return;
|
|
}
|
|
|
|
const studiesPreviouslyEnabled = this.studiesEnabled;
|
|
const rolloutsPreviouslyEnabled = this.rolloutsEnabled;
|
|
const aiFeaturesPreviouslyEnabled = this.aiFeaturesEnabled;
|
|
|
|
this.#computeEnabled();
|
|
|
|
const studiesEnabledChanged =
|
|
studiesPreviouslyEnabled !== this.studiesEnabled;
|
|
const rolloutsEnabledChanged =
|
|
rolloutsPreviouslyEnabled !== this.rolloutsEnabled;
|
|
const aiFeaturesEnabledChanged =
|
|
aiFeaturesPreviouslyEnabled !== this.aiFeaturesEnabled;
|
|
|
|
if (studiesEnabledChanged || rolloutsEnabledChanged) {
|
|
if (!this.studiesEnabled) {
|
|
this.manager._handleStudiesOptOut();
|
|
}
|
|
|
|
if (!this.rolloutsEnabled) {
|
|
this.manager._handleRolloutsOptOut();
|
|
}
|
|
|
|
// Labs is disabled only by policy, so it cannot be disabled at runtime.
|
|
// Thus we only need to notify the RemoteSettingsExperimentLoader when
|
|
// studies or rollouts become enabled or disabled.
|
|
await this._rsLoader.onEnabledPrefChange();
|
|
|
|
Services.obs.notifyObservers(null, this.STUDIES_ENABLED_CHANGED);
|
|
}
|
|
|
|
if (aiFeaturesEnabledChanged) {
|
|
await this._rsLoader.updateRecipes("ai-features-changed");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns the recipe for a given experiment slug
|
|
*
|
|
* This should noly be called from the main process.
|
|
*
|
|
* Note that the recipe is directly fetched from RemoteSettings, which has
|
|
* all the recipe metadata available without relying on the `this.manager.store`.
|
|
* Therefore, calling this function does not require to call `this.ready()` first.
|
|
*
|
|
* @param slug {String} An experiment identifier
|
|
* @returns {Recipe|undefined} A matching experiment recipe if one is found
|
|
*/
|
|
async getRecipe(slug) {
|
|
if (!IS_MAIN_PROCESS) {
|
|
throw new Error(
|
|
"getRecipe() should only be called from the main process"
|
|
);
|
|
}
|
|
|
|
let recipe;
|
|
|
|
try {
|
|
[recipe] = await this._remoteSettingsClient.get({
|
|
// Do not sync the RS store, let RemoteSettingsExperimentLoader do that
|
|
syncIfEmpty: false,
|
|
filters: { slug },
|
|
});
|
|
} catch (e) {
|
|
// If an error occurs in .get(), an empty list is returned and the destructuring
|
|
// assignment will throw.
|
|
console.error(e);
|
|
recipe = undefined;
|
|
}
|
|
|
|
return recipe;
|
|
}
|
|
|
|
/**
|
|
* Returns all the branches for a given experiment slug
|
|
*
|
|
* This should only be called from the main process. Like `getRecipe()`,
|
|
* calling this function does not require to call `this.ready()` first.
|
|
*
|
|
* @param slug {String} An experiment identifier
|
|
* @returns {[Branches]|undefined} An array of branches for the given slug
|
|
*/
|
|
async getAllBranches(slug) {
|
|
if (!IS_MAIN_PROCESS) {
|
|
throw new Error(
|
|
"getAllBranches() should only be called from the main process"
|
|
);
|
|
}
|
|
|
|
const recipe = await this.getRecipe(slug);
|
|
return recipe?.branches.map(
|
|
branch => new Proxy(branch, experimentBranchAccessor)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Opt-in to the given experiment on the given branch.
|
|
*
|
|
* @param {object} options
|
|
*
|
|
* @param {string} options.slug
|
|
* The slug of the experiment to enroll in.
|
|
*
|
|
* @param {string} options.branch
|
|
* The slug of the specific branch to enroll in.
|
|
*
|
|
* @param {string | undefined} options.collection
|
|
* The collection to fetch the recipe from. If not provided it will be fetched
|
|
* from the default experiment collection.
|
|
*
|
|
* @param {boolean | undefined} options.applyTargeting
|
|
* Whether or not to apply targeting. Defaults to false.
|
|
*
|
|
* @returns {Promise<void>}
|
|
* A promise that resolves when the enrollment is successful or rejects when
|
|
* it is unsuccessful.
|
|
*
|
|
* @throws {Error} If enrollment fails.
|
|
*/
|
|
async optInToExperiment(options) {
|
|
return this._rsLoader._optInToExperiment(options);
|
|
}
|
|
|
|
/**
|
|
* @typedef {object} FirstStartupTimestamps
|
|
*
|
|
* All properties are timestamps in milliseconds, as reported by
|
|
* `ChromeUtils.now`.
|
|
*
|
|
* @property {number | undefined} storeInitEnd
|
|
* The time that the ExperimentStore finished initializing.
|
|
*
|
|
* @property {number | undefined} managerInitEnd
|
|
* The time that the ExperimentManager finished initialization.
|
|
*
|
|
* @property {number | undefined} loaderInitEnd
|
|
* The time that the RemoteSettingsExperimentLoader finished
|
|
* initialization.
|
|
*
|
|
* @property {number | undefined} nimbusInitEnd
|
|
* The time that Nimbus became fully initialized.
|
|
*/
|
|
|
|
/**
|
|
* Return the first startup timestamps.
|
|
*
|
|
* The timestamps will be cleared.
|
|
*
|
|
* @returns {FirstStartupTimestamps | null} The timestamps, if any.
|
|
*/
|
|
getAndClearFirstStartupTimestamps() {
|
|
const timestamps = this.#firstStartupTimestamps;
|
|
this.#firstStartupTimestamps = null;
|
|
return timestamps;
|
|
}
|
|
})();
|
|
|
|
/**
|
|
* Singleton that holds lazy references to _ExperimentFeature instances
|
|
* defined by the FeatureManifest
|
|
*/
|
|
export const NimbusFeatures = {};
|
|
|
|
for (let feature in lazy.FeatureManifest) {
|
|
ChromeUtils.defineLazyGetter(NimbusFeatures, feature, () => {
|
|
return new _ExperimentFeature(feature);
|
|
});
|
|
}
|
|
|
|
export class _ExperimentFeature {
|
|
constructor(featureId, manifest) {
|
|
this.featureId = featureId;
|
|
this.prefGetters = {};
|
|
this.manifest = manifest || lazy.FeatureManifest[featureId];
|
|
if (!this.manifest) {
|
|
console.error(
|
|
`No manifest entry for ${featureId}. Please add one to toolkit/components/nimbus/FeatureManifest.yaml`
|
|
);
|
|
}
|
|
this._didSendExposureEvent = false;
|
|
const variables = this.manifest?.variables || {};
|
|
|
|
Object.keys(variables).forEach(key => {
|
|
const { type, fallbackPref } = variables[key];
|
|
if (fallbackPref) {
|
|
XPCOMUtils.defineLazyPreferenceGetter(
|
|
this.prefGetters,
|
|
key,
|
|
fallbackPref,
|
|
null,
|
|
() => {
|
|
ExperimentAPI.manager.store._emitFeatureUpdate(
|
|
this.featureId,
|
|
"pref-updated"
|
|
);
|
|
},
|
|
type === "json" ? parseJSON : val => val
|
|
);
|
|
}
|
|
});
|
|
}
|
|
|
|
getSetPrefName(variable) {
|
|
const setPref = this.manifest?.variables?.[variable]?.setPref;
|
|
|
|
return setPref?.pref ?? setPref ?? undefined;
|
|
}
|
|
|
|
getSetPref(variable) {
|
|
return this.manifest?.variables?.[variable]?.setPref;
|
|
}
|
|
|
|
getFallbackPrefName(variable) {
|
|
return this.manifest?.variables?.[variable]?.fallbackPref;
|
|
}
|
|
|
|
/**
|
|
* Wait for ExperimentStore to load giving access to experiment features that
|
|
* do not have a pref cache
|
|
*/
|
|
ready() {
|
|
return ExperimentAPI.ready();
|
|
}
|
|
|
|
/**
|
|
* Lookup feature variables in experiments, rollouts, and fallback prefs.
|
|
*
|
|
* @param {{defaultValues?: {[variableName: string]: any}}} options
|
|
* @returns {{[variableName: string]: any}} The feature value
|
|
*/
|
|
getAllVariables({ defaultValues = null } = {}) {
|
|
if (this.allowCoenrollment) {
|
|
throw new Error(
|
|
"Co-enrolling features must use the getAllEnrollments API"
|
|
);
|
|
}
|
|
|
|
let enrollment = null;
|
|
try {
|
|
enrollment = ExperimentAPI.manager.store.getExperimentForFeature(
|
|
this.featureId
|
|
);
|
|
} catch (e) {
|
|
console.error(e);
|
|
}
|
|
let featureValue = this._getLocalizedValue(enrollment);
|
|
|
|
if (typeof featureValue === "undefined") {
|
|
try {
|
|
enrollment = ExperimentAPI.manager.store.getRolloutForFeature(
|
|
this.featureId
|
|
);
|
|
} catch (e) {
|
|
console.error(e);
|
|
}
|
|
featureValue = this._getLocalizedValue(enrollment);
|
|
}
|
|
|
|
return {
|
|
...this.prefGetters,
|
|
...defaultValues,
|
|
...featureValue,
|
|
};
|
|
}
|
|
|
|
getVariable(variable) {
|
|
if (this.allowCoenrollment) {
|
|
throw new Error(
|
|
"Co-enrolling features must use the getAllEnrollments API"
|
|
);
|
|
}
|
|
|
|
if (!this.manifest?.variables?.[variable]) {
|
|
// Only throw in nightly/tests
|
|
if (Cu.isInAutomation || AppConstants.NIGHTLY_BUILD) {
|
|
throw new Error(
|
|
`Nimbus: Warning - variable "${variable}" is not defined in FeatureManifest.yaml`
|
|
);
|
|
}
|
|
}
|
|
|
|
// Next, check if an experiment is defined
|
|
let enrollment = null;
|
|
try {
|
|
enrollment = ExperimentAPI.manager.store.getExperimentForFeature(
|
|
this.featureId
|
|
);
|
|
} catch (e) {
|
|
console.error(e);
|
|
}
|
|
let value = this._getLocalizedValue(enrollment, variable);
|
|
if (typeof value !== "undefined") {
|
|
return value;
|
|
}
|
|
|
|
// Next, check for a rollout.
|
|
try {
|
|
enrollment = ExperimentAPI.manager.store.getRolloutForFeature(
|
|
this.featureId
|
|
);
|
|
} catch (e) {
|
|
console.error(e);
|
|
}
|
|
value = this._getLocalizedValue(enrollment, variable);
|
|
if (typeof value !== "undefined") {
|
|
return value;
|
|
}
|
|
|
|
// Return the default preference value
|
|
const prefName = this.getFallbackPrefName(variable);
|
|
return prefName ? this.prefGetters[variable] : undefined;
|
|
}
|
|
|
|
/**
|
|
* Return metadata about the requested enrollment that uses this feature ID.
|
|
*
|
|
* N.B.: This API cannot be used for co-enrolling features. The
|
|
* `getAllEnrollmentMetadata` API must be used instead.
|
|
*
|
|
* @param {EnrollmentType?} enrollmentType
|
|
* The type of enrollment that you want metadata for.
|
|
*
|
|
* If not provided, metadata for the active experiment
|
|
*
|
|
* @returns {EnrollmentMetadata | null}
|
|
* The metadata for the requested enrollment if one exists, otherwise
|
|
* null.
|
|
*/
|
|
getEnrollmentMetadata(enrollmentType = undefined) {
|
|
if (this.allowCoenrollment) {
|
|
throw new Error(
|
|
"Co-enrolling features must use the getAllEnrollments or getAllEnrollmentMetadata APIs"
|
|
);
|
|
}
|
|
|
|
let enrollment = null;
|
|
|
|
try {
|
|
if (typeof enrollmentType === "undefined" || enrollmentType === null) {
|
|
enrollment =
|
|
ExperimentAPI.manager.store.getExperimentForFeature(this.featureId) ??
|
|
ExperimentAPI.manager.store.getRolloutForFeature(this.featureId);
|
|
} else {
|
|
switch (enrollmentType) {
|
|
case EnrollmentType.EXPERIMENT:
|
|
enrollment = ExperimentAPI.manager.store.getExperimentForFeature(
|
|
this.featureId
|
|
);
|
|
break;
|
|
|
|
case EnrollmentType.ROLLOUT:
|
|
enrollment = ExperimentAPI.manager.store.getRolloutForFeature(
|
|
this.featureId
|
|
);
|
|
break;
|
|
}
|
|
}
|
|
} catch (e) {
|
|
lazy.log.error("Failed to get enrollment metadata:", e);
|
|
}
|
|
|
|
if (!enrollment) {
|
|
return null;
|
|
}
|
|
|
|
return _getEnrollmentMetadata(enrollment);
|
|
}
|
|
|
|
/**
|
|
* Return all active enrollments.
|
|
*
|
|
* @param {object[]}
|
|
* An array containing metadata and the feature value for every active
|
|
* enrollment using this feature.
|
|
*/
|
|
getAllEnrollments() {
|
|
return ExperimentAPI.manager.store
|
|
.getAll()
|
|
.filter(e => e.active && e.featureIds.includes(this.featureId))
|
|
.map(enrollment => {
|
|
const meta = _getEnrollmentMetadata(enrollment);
|
|
const values = this._getLocalizedValue(enrollment);
|
|
const value = {
|
|
...this.prefGetters,
|
|
...values,
|
|
};
|
|
|
|
return {
|
|
meta,
|
|
value,
|
|
};
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Return metadata for all active enrollments that use this feature.
|
|
*
|
|
* @returns {object[]}
|
|
* Metadata for each active enrollment, including
|
|
* - the slug;
|
|
* - the branch slug; and
|
|
* - whether or not the enrollment is a rollout.
|
|
*/
|
|
getAllEnrollmentMetadata() {
|
|
return ExperimentAPI.manager.store
|
|
.getAll()
|
|
.filter(e => e.active && e.featureIds.includes(this.featureId))
|
|
.map(_getEnrollmentMetadata);
|
|
}
|
|
|
|
recordExposureEvent({ once = false, slug } = {}) {
|
|
if (this.allowCoenrollment && typeof slug !== "string") {
|
|
throw new Error("Co-enrolling features must provide slug");
|
|
}
|
|
|
|
if (once && this._didSendExposureEvent) {
|
|
return;
|
|
}
|
|
|
|
let metadata = null;
|
|
if (this.allowCoenrollment) {
|
|
const enrollment = ExperimentAPI.manager.store.get(slug);
|
|
if (enrollment.active) {
|
|
metadata = _getEnrollmentMetadata(enrollment);
|
|
}
|
|
} else {
|
|
metadata = this.getEnrollmentMetadata();
|
|
}
|
|
|
|
// Exposure is only sent if user is enrolled in an experiment or rollout.
|
|
if (metadata) {
|
|
lazy.NimbusTelemetry.recordExposure(
|
|
metadata.slug,
|
|
metadata.branch,
|
|
this.featureId
|
|
);
|
|
this._didSendExposureEvent = true;
|
|
}
|
|
}
|
|
|
|
onUpdate(callback) {
|
|
ExperimentAPI.manager.store._onFeatureUpdate(this.featureId, callback);
|
|
}
|
|
|
|
offUpdate(callback) {
|
|
ExperimentAPI.manager.store._offFeatureUpdate(this.featureId, callback);
|
|
}
|
|
|
|
/**
|
|
* The applications this feature applies to.
|
|
*
|
|
*/
|
|
get applications() {
|
|
return this.manifest.applications ?? ["firefox-desktop"];
|
|
}
|
|
|
|
get allowCoenrollment() {
|
|
return this.manifest.allowCoenrollment ?? false;
|
|
}
|
|
|
|
/**
|
|
* Do recursive locale substitution on the values, if applicable.
|
|
*
|
|
* If there are no localizations provided, the value will be returned as-is.
|
|
*
|
|
* If the value is an object containing an $l10n key, its substitution will be
|
|
* returned.
|
|
*
|
|
* Otherwise, the value will be recursively substituted.
|
|
*
|
|
* @param {unknown} values The values to perform substitutions upon.
|
|
* @param {Record<string, string>} localizations The localization
|
|
* substitutions for a specific locale.
|
|
* @param {Set<string>?} missingIds An optional set to collect all the IDs of
|
|
* all missing l10n entries.
|
|
*
|
|
* @returns {any} The values, potentially locale substituted.
|
|
*/
|
|
static substituteLocalizations(
|
|
values,
|
|
localizations,
|
|
missingIds = undefined
|
|
) {
|
|
const result = _ExperimentFeature._substituteLocalizations(
|
|
values,
|
|
localizations,
|
|
missingIds
|
|
);
|
|
|
|
if (missingIds?.size) {
|
|
throw new ExperimentLocalizationError(
|
|
lazy.NimbusTelemetry.ValidationFailureReason.L10N_MISSING_ENTRY,
|
|
Services.locale.appLocaleAsBCP47
|
|
);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
* The implementation of localization substitution.
|
|
*
|
|
* @param {unknown} values The values to perform substitutions upon.
|
|
* @param {Record<string, string>} localizations The localization
|
|
* substitutions for a specific locale.
|
|
* @param {Set<string>?} missingIds An optional set to collect all the IDs of
|
|
* all missing l10n entries.
|
|
*
|
|
* @returns {any} The values, potentially locale substituted.
|
|
*/
|
|
static _substituteLocalizations(values, localizations, missingIds) {
|
|
// If the recipe is not localized, we don't need to do anything.
|
|
// Likewise, if the value we are attempting to localize is not an object,
|
|
// there is nothing to localize.
|
|
if (
|
|
typeof localizations === "undefined" ||
|
|
typeof values !== "object" ||
|
|
values === null
|
|
) {
|
|
return values;
|
|
}
|
|
|
|
if (Array.isArray(values)) {
|
|
return values.map(value =>
|
|
_ExperimentFeature._substituteLocalizations(
|
|
value,
|
|
localizations,
|
|
missingIds
|
|
)
|
|
);
|
|
}
|
|
|
|
const substituted = Object.assign({}, values);
|
|
|
|
for (const [key, value] of Object.entries(values)) {
|
|
if (
|
|
key === "$l10n" &&
|
|
typeof value === "object" &&
|
|
value !== null &&
|
|
value?.id
|
|
) {
|
|
if (!Object.hasOwn(localizations, value.id)) {
|
|
if (missingIds) {
|
|
missingIds.add(value.id);
|
|
break;
|
|
} else {
|
|
throw new ExperimentLocalizationError(
|
|
lazy.NimbusTelemetry.ValidationFailureReason.L10N_MISSING_ENTRY,
|
|
Services.locale.appLocaleAsBCP47
|
|
);
|
|
}
|
|
}
|
|
|
|
return localizations[value.id];
|
|
}
|
|
|
|
substituted[key] = _ExperimentFeature._substituteLocalizations(
|
|
value,
|
|
localizations,
|
|
missingIds
|
|
);
|
|
}
|
|
|
|
return substituted;
|
|
}
|
|
|
|
/**
|
|
* Return a value (or all values) from an enrollment, potentially localized.
|
|
*
|
|
* @param {Enrollment} enrollment - The enrollment to query for the value or values.
|
|
* @param {string?} variable - The name of the variable to query for. If not
|
|
* provided, all variables will be returned.
|
|
*
|
|
* @returns {any} The value for the variable(s) in question.
|
|
*/
|
|
_getLocalizedValue(enrollment, variable = undefined) {
|
|
if (enrollment) {
|
|
const locale = Services.locale.appLocaleAsBCP47;
|
|
|
|
if (
|
|
typeof enrollment.localizations === "object" &&
|
|
enrollment.localizations !== null &&
|
|
(typeof enrollment.localizations[locale] !== "object" ||
|
|
enrollment.localizations[locale] === null)
|
|
) {
|
|
ExperimentAPI.manager._unenroll(
|
|
enrollment,
|
|
lazy.UnenrollmentCause.MissingLocale(locale)
|
|
);
|
|
return undefined;
|
|
}
|
|
|
|
const allValues = lazy.ExperimentManager.getFeatureConfigFromBranch(
|
|
enrollment.branch,
|
|
this.featureId
|
|
)?.value;
|
|
const value =
|
|
typeof variable === "undefined" ? allValues : allValues?.[variable];
|
|
|
|
if (typeof value !== "undefined") {
|
|
try {
|
|
return _ExperimentFeature.substituteLocalizations(
|
|
value,
|
|
enrollment.localizations?.[locale]
|
|
);
|
|
} catch (e) {
|
|
// This should never happen.
|
|
if (e instanceof ExperimentLocalizationError) {
|
|
ExperimentAPI.manager._unenroll(
|
|
enrollment,
|
|
e.asUnenrollmentCause()
|
|
);
|
|
} else {
|
|
throw e;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return undefined;
|
|
}
|
|
}
|
|
|
|
class ExperimentLocalizationError extends Error {
|
|
constructor(reason, locale) {
|
|
super(`Localized experiment error (${reason})`);
|
|
this.reason = reason;
|
|
this.locale = locale;
|
|
}
|
|
|
|
asUnenrollmentCause() {
|
|
return {
|
|
reason: this.reason,
|
|
locale: this.locale,
|
|
};
|
|
}
|
|
}
|