123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- /* 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/. */
- this.EXPORTED_SYMBOLS = ['PrefsEngine', 'PrefRec'];
- var Cc = Components.classes;
- var Ci = Components.interfaces;
- var Cu = Components.utils;
- const SYNC_PREFS_PREFIX = "services.sync.prefs.sync.";
- Cu.import("resource://services-sync/engines.js");
- Cu.import("resource://services-sync/record.js");
- Cu.import("resource://services-sync/util.js");
- Cu.import("resource://services-sync/constants.js");
- Cu.import("resource://services-common/utils.js");
- Cu.import("resource://gre/modules/LightweightThemeManager.jsm");
- Cu.import("resource://gre/modules/Preferences.jsm");
- const PREFS_GUID = CommonUtils.encodeBase64URL(Services.appinfo.ID);
- this.PrefRec = function PrefRec(collection, id) {
- CryptoWrapper.call(this, collection, id);
- }
- PrefRec.prototype = {
- __proto__: CryptoWrapper.prototype,
- _logName: "Sync.Record.Pref",
- };
- Utils.deferGetSet(PrefRec, "cleartext", ["value"]);
- this.PrefsEngine = function PrefsEngine(service) {
- SyncEngine.call(this, "Prefs", service);
- }
- PrefsEngine.prototype = {
- __proto__: SyncEngine.prototype,
- _storeObj: PrefStore,
- _trackerObj: PrefTracker,
- _recordObj: PrefRec,
- version: 2,
- syncPriority: 1,
- getChangedIDs: function () {
- // No need for a proper timestamp (no conflict resolution needed).
- let changedIDs = {};
- if (this._tracker.modified)
- changedIDs[PREFS_GUID] = 0;
- return changedIDs;
- },
- _wipeClient: function () {
- SyncEngine.prototype._wipeClient.call(this);
- this.justWiped = true;
- },
- _reconcile: function (item) {
- // Apply the incoming item if we don't care about the local data
- if (this.justWiped) {
- this.justWiped = false;
- return true;
- }
- return SyncEngine.prototype._reconcile.call(this, item);
- }
- };
- function PrefStore(name, engine) {
- Store.call(this, name, engine);
- Svc.Obs.add("profile-before-change", function () {
- this.__prefs = null;
- }, this);
- }
- PrefStore.prototype = {
- __proto__: Store.prototype,
- __prefs: null,
- get _prefs() {
- if (!this.__prefs) {
- this.__prefs = new Preferences();
- }
- return this.__prefs;
- },
- _getSyncPrefs: function () {
- let syncPrefs = Cc["@mozilla.org/preferences-service;1"]
- .getService(Ci.nsIPrefService)
- .getBranch(SYNC_PREFS_PREFIX)
- .getChildList("", {});
- // Also sync preferences that determine which prefs get synced.
- let controlPrefs = syncPrefs.map(pref => SYNC_PREFS_PREFIX + pref);
- return controlPrefs.concat(syncPrefs);
- },
- _isSynced: function (pref) {
- return pref.startsWith(SYNC_PREFS_PREFIX) ||
- this._prefs.get(SYNC_PREFS_PREFIX + pref, false);
- },
- _getAllPrefs: function () {
- let values = {};
- for each (let pref in this._getSyncPrefs()) {
- if (this._isSynced(pref)) {
- // Missing prefs get the null value.
- values[pref] = this._prefs.get(pref, null);
- }
- }
- return values;
- },
- _setAllPrefs: function (values) {
- let enabledPref = "lightweightThemes.isThemeSelected";
- let enabledBefore = this._prefs.get(enabledPref, false);
- let prevTheme = LightweightThemeManager.currentTheme;
- // Update 'services.sync.prefs.sync.foo.pref' before 'foo.pref', otherwise
- // _isSynced returns false when 'foo.pref' doesn't exist (e.g., on a new device).
- let prefs = Object.keys(values).sort(a => -a.indexOf(SYNC_PREFS_PREFIX));
- for (let pref of prefs) {
- if (!this._isSynced(pref)) {
- continue;
- }
- let value = values[pref];
- // Pref has gone missing. The best we can do is reset it.
- if (value == null) {
- this._prefs.reset(pref);
- continue;
- }
- try {
- this._prefs.set(pref, value);
- } catch(ex) {
- this._log.trace("Failed to set pref: " + pref + ": " + ex);
- }
- }
- // Notify the lightweight theme manager of all the new values
- let enabledNow = this._prefs.get(enabledPref, false);
- if (enabledBefore && !enabledNow) {
- LightweightThemeManager.currentTheme = null;
- } else if (enabledNow && LightweightThemeManager.usedThemes[0] != prevTheme) {
- LightweightThemeManager.currentTheme = null;
- LightweightThemeManager.currentTheme = LightweightThemeManager.usedThemes[0];
- }
- },
- getAllIDs: function () {
- /* We store all prefs in just one WBO, with just one GUID */
- let allprefs = {};
- allprefs[PREFS_GUID] = true;
- return allprefs;
- },
- changeItemID: function (oldID, newID) {
- this._log.trace("PrefStore GUID is constant!");
- },
- itemExists: function (id) {
- return (id === PREFS_GUID);
- },
- createRecord: function (id, collection) {
- let record = new PrefRec(collection, id);
- if (id == PREFS_GUID) {
- record.value = this._getAllPrefs();
- } else {
- record.deleted = true;
- }
- return record;
- },
- create: function (record) {
- this._log.trace("Ignoring create request");
- },
- remove: function (record) {
- this._log.trace("Ignoring remove request");
- },
- update: function (record) {
- // Silently ignore pref updates that are for other apps.
- if (record.id != PREFS_GUID)
- return;
- this._log.trace("Received pref updates, applying...");
- this._setAllPrefs(record.value);
- },
- wipe: function () {
- this._log.trace("Ignoring wipe request");
- }
- };
- function PrefTracker(name, engine) {
- Tracker.call(this, name, engine);
- Svc.Obs.add("profile-before-change", this);
- Svc.Obs.add("weave:engine:start-tracking", this);
- Svc.Obs.add("weave:engine:stop-tracking", this);
- }
- PrefTracker.prototype = {
- __proto__: Tracker.prototype,
- get modified() {
- return Svc.Prefs.get("engine.prefs.modified", false);
- },
- set modified(value) {
- Svc.Prefs.set("engine.prefs.modified", value);
- },
- loadChangedIDs: function loadChangedIDs() {
- // Don't read changed IDs from disk at start up.
- },
- clearChangedIDs: function clearChangedIDs() {
- this.modified = false;
- },
- __prefs: null,
- get _prefs() {
- if (!this.__prefs) {
- this.__prefs = new Preferences();
- }
- return this.__prefs;
- },
- startTracking: function () {
- Services.prefs.addObserver("", this, false);
- },
- stopTracking: function () {
- this.__prefs = null;
- Services.prefs.removeObserver("", this);
- },
- observe: function (subject, topic, data) {
- Tracker.prototype.observe.call(this, subject, topic, data);
- switch (topic) {
- case "profile-before-change":
- this.stopTracking();
- break;
- case "nsPref:changed":
- // Trigger a sync for MULTI-DEVICE for a change that determines
- // which prefs are synced or a regular pref change.
- if (data.indexOf(SYNC_PREFS_PREFIX) == 0 ||
- this._prefs.get(SYNC_PREFS_PREFIX + data, false)) {
- this.score += SCORE_INCREMENT_XLARGE;
- this.modified = true;
- this._log.trace("Preference " + data + " changed");
- }
- break;
- }
- }
- };
|