-
Notifications
You must be signed in to change notification settings - Fork 0
/
ExtensionPreferencesManager.jsm
404 lines (377 loc) · 13.4 KB
/
ExtensionPreferencesManager.jsm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set sts=2 sw=2 et tw=80: */
/* 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";
/**
* @fileOverview
* This module is used for managing preferences from WebExtension APIs.
* It takes care of the precedence chain and decides whether a preference
* needs to be updated when a change is requested by an API.
*
* It deals with preferences via settings objects, which are objects with
* the following properties:
*
* prefNames: An array of strings, each of which is a preference on
* which the setting depends.
* setCallback: A function that returns an object containing properties and
* values that correspond to the prefs to be set.
*/
this.EXPORTED_SYMBOLS = ["ExtensionPreferencesManager"];
const {Management} = ChromeUtils.import("resource://gre/modules/Extension.jsm", {});
ChromeUtils.import("resource://gre/modules/XPCOMUtils.jsm");
ChromeUtils.defineModuleGetter(this, "ExtensionSettingsStore",
"resource://gre/modules/ExtensionSettingsStore.jsm");
ChromeUtils.defineModuleGetter(this, "Preferences",
"resource://gre/modules/Preferences.jsm");
XPCOMUtils.defineLazyGetter(this, "defaultPreferences", function() {
return new Preferences({defaultBranch: true});
});
/* eslint-disable mozilla/balanced-listeners */
Management.on("uninstall", (type, {id}) => {
ExtensionPreferencesManager.removeAll(id);
});
Management.on("shutdown", (type, extension) => {
if (extension.shutdownReason == "ADDON_DISABLE") {
this.ExtensionPreferencesManager.disableAll(extension.id);
}
});
Management.on("startup", async (type, extension) => {
if (extension.startupReason == "ADDON_ENABLE") {
this.ExtensionPreferencesManager.enableAll(extension.id);
}
});
/* eslint-enable mozilla/balanced-listeners */
const STORE_TYPE = "prefs";
// Definitions of settings, each of which correspond to a different API.
let settingsMap = new Map();
/**
* This function is passed into the ExtensionSettingsStore to determine the
* initial value of the setting. It reads an array of preference names from
* the this scope, which gets bound to a settings object.
*
* @returns {Object}
* An object with one property per preference, which holds the current
* value of that preference.
*/
function initialValueCallback() {
let initialValue = {};
for (let pref of this.prefNames) {
initialValue[pref] = Preferences.get(pref);
}
return initialValue;
}
/**
* Loops through a set of prefs, either setting or resetting them.
*
* @param {Object} setting
* An object that represents a setting, which will have a setCallback
* property. If a onPrefsChanged function is provided it will be called
* with item when the preferences change.
* @param {Object} item
* An object that represents an item handed back from the setting store
* from which the new pref values can be calculated.
*/
function setPrefs(setting, item) {
let prefs = item.initialValue || setting.setCallback(item.value);
let changed = false;
for (let pref in prefs) {
if (prefs[pref] === undefined) {
if (Preferences.isSet(pref)) {
changed = true;
Preferences.reset(pref);
}
} else if (Preferences.get(pref) != prefs[pref]) {
Preferences.set(pref, prefs[pref]);
changed = true;
}
}
if (changed && typeof setting.onPrefsChanged == "function") {
setting.onPrefsChanged(item);
}
}
/**
* Commits a change to a setting and conditionally sets preferences.
*
* If the change to the setting causes a different extension to gain
* control of the pref (or removes all extensions with control over the pref)
* then the prefs should be updated, otherwise they should not be.
* In addition, if the current value of any of the prefs does not
* match what we expect the value to be (which could be the result of a
* user manually changing the pref value), then we do not change any
* of the prefs.
*
* @param {string} id
* The id of the extension for which a setting is being modified.
* @param {string} name
* The name of the setting being processed.
* @param {string} action
* The action that is being performed. Will be one of disable, enable
* or removeSetting.
* @returns {Promise}
* Resolves to true if preferences were set as a result and to false
* if preferences were not set.
*/
async function processSetting(id, name, action) {
await ExtensionSettingsStore.initialize();
let expectedItem = ExtensionSettingsStore.getSetting(STORE_TYPE, name);
let item = ExtensionSettingsStore[action](id, STORE_TYPE, name);
if (item) {
let setting = settingsMap.get(name);
let expectedPrefs = expectedItem.initialValue
|| setting.setCallback(expectedItem.value);
if (Object.keys(expectedPrefs)
.some(pref => (expectedPrefs[pref] &&
Preferences.get(pref) != expectedPrefs[pref]))) {
return false;
}
setPrefs(setting, item);
return true;
}
return false;
}
var ExtensionPreferencesManager = {
/**
* Adds a setting to the settingsMap. This is how an API tells the
* preferences manager what its setting object is. The preferences
* manager needs to know this when settings need to be removed
* automatically.
*
* @param {string} name The unique id of the setting.
* @param {Object} setting
* A setting object that should have properties for
* prefNames, getCallback and setCallback.
*/
addSetting(name, setting) {
settingsMap.set(name, setting);
},
/**
* Gets the default value for a preference.
*
* @param {string} prefName The name of the preference.
*
* @returns {string|number|boolean} The default value of the preference.
*/
getDefaultValue(prefName) {
return defaultPreferences.get(prefName);
},
/**
* Indicates that an extension would like to change the value of a previously
* defined setting.
*
* @param {string} id
* The id of the extension for which a setting is being set.
* @param {string} name
* The unique id of the setting.
* @param {any} value
* The value to be stored in the settings store for this
* group of preferences.
*
* @returns {Promise}
* Resolves to true if the preferences were changed and to false if
* the preferences were not changed.
*/
async setSetting(id, name, value) {
let setting = settingsMap.get(name);
await ExtensionSettingsStore.initialize();
let item = await ExtensionSettingsStore.addSetting(
id, STORE_TYPE, name, value, initialValueCallback.bind(setting));
if (item) {
setPrefs(setting, item);
return true;
}
return false;
},
/**
* Indicates that this extension wants to temporarily cede control over the
* given setting.
*
* @param {string} id
* The id of the extension for which a preference setting is being disabled.
* @param {string} name
* The unique id of the setting.
*
* @returns {Promise}
* Resolves to true if the preferences were changed and to false if
* the preferences were not changed.
*/
disableSetting(id, name) {
return processSetting(id, name, "disable");
},
/**
* Enable a setting that has been disabled.
*
* @param {string} id
* The id of the extension for which a setting is being enabled.
* @param {string} name
* The unique id of the setting.
*
* @returns {Promise}
* Resolves to true if the preferences were changed and to false if
* the preferences were not changed.
*/
enableSetting(id, name) {
return processSetting(id, name, "enable");
},
/**
* Indicates that this extension no longer wants to set the given setting.
*
* @param {string} id
* The id of the extension for which a preference setting is being removed.
* @param {string} name
* The unique id of the setting.
*
* @returns {Promise}
* Resolves to true if the preferences were changed and to false if
* the preferences were not changed.
*/
removeSetting(id, name) {
return processSetting(id, name, "removeSetting");
},
/**
* Disables all previously set settings for an extension. This can be called when
* an extension is being disabled, for example.
*
* @param {string} id
* The id of the extension for which all settings are being unset.
*/
async disableAll(id) {
await ExtensionSettingsStore.initialize();
let settings = ExtensionSettingsStore.getAllForExtension(id, STORE_TYPE);
let disablePromises = [];
for (let name of settings) {
disablePromises.push(this.disableSetting(id, name));
}
await Promise.all(disablePromises);
},
/**
* Enables all disabled settings for an extension. This can be called when
* an extension has finished updating or is being re-enabled, for example.
*
* @param {string} id
* The id of the extension for which all settings are being enabled.
*/
async enableAll(id) {
await ExtensionSettingsStore.initialize();
let settings = ExtensionSettingsStore.getAllForExtension(id, STORE_TYPE);
let enablePromises = [];
for (let name of settings) {
enablePromises.push(this.enableSetting(id, name));
}
await Promise.all(enablePromises);
},
/**
* Removes all previously set settings for an extension. This can be called when
* an extension is being uninstalled, for example.
*
* @param {string} id
* The id of the extension for which all settings are being unset.
*/
async removeAll(id) {
await ExtensionSettingsStore.initialize();
let settings = ExtensionSettingsStore.getAllForExtension(id, STORE_TYPE);
let removePromises = [];
for (let name of settings) {
removePromises.push(this.removeSetting(id, name));
}
await Promise.all(removePromises);
},
/**
* Return the currently active value for a setting.
*
* @param {string} name
* The unique id of the setting.
*
* @returns {Promise<object>} The current setting object.
*/
async getSetting(name) {
await ExtensionSettingsStore.initialize();
return ExtensionSettingsStore.getSetting(STORE_TYPE, name);
},
/**
* Return the levelOfControl for a setting / extension combo.
* This queries the levelOfControl from the ExtensionSettingsStore and also
* takes into account whether any of the setting's preferences are locked.
*
* @param {string} id
* The id of the extension for which levelOfControl is being requested.
* @param {string} name
* The unique id of the setting.
* @param {string} storeType
* The name of the store in ExtensionSettingsStore.
* Defaults to STORE_TYPE.
*
* @returns {Promise}
* Resolves to the level of control of the extension over the setting.
*/
async getLevelOfControl(id, name, storeType = STORE_TYPE) {
// This could be called for a setting that isn't defined to the PreferencesManager,
// in which case we simply defer to the SettingsStore.
if (storeType === STORE_TYPE) {
let setting = settingsMap.get(name);
if (!setting) {
return "not_controllable";
}
for (let prefName of setting.prefNames) {
if (Preferences.locked(prefName)) {
return "not_controllable";
}
}
}
await ExtensionSettingsStore.initialize();
return ExtensionSettingsStore.getLevelOfControl(id, storeType, name);
},
/**
* Returns an API object with get/set/clear used for a setting.
*
* @param {string} extensionId
* @param {string} name
* The unique id of the setting.
* @param {Function} callback
* The function that retreives the current setting from prefs.
* @param {string} storeType
* The name of the store in ExtensionSettingsStore.
* Defaults to STORE_TYPE.
* @param {boolean} readOnly
* @param {Function} validate
* Utility function for any specific validation, such as checking
* for supported platform. Function should throw an error if necessary.
*
* @returns {object} API object with get/set/clear methods
*/
getSettingsAPI(extensionId, name, callback, storeType, readOnly = false, validate = () => {}) {
return {
async get(details) {
validate();
let levelOfControl = details.incognito ?
"not_controllable" :
await ExtensionPreferencesManager.getLevelOfControl(
extensionId, name, storeType);
levelOfControl =
(readOnly && levelOfControl === "controllable_by_this_extension") ?
"not_controllable" :
levelOfControl;
return {
levelOfControl,
value: await callback(),
};
},
set(details) {
validate();
if (!readOnly) {
return ExtensionPreferencesManager.setSetting(
extensionId, name, details.value);
}
return false;
},
clear(details) {
validate();
if (!readOnly) {
return ExtensionPreferencesManager.removeSetting(extensionId, name);
}
return false;
},
};
},
};