/* 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/. */ const EXPORTED_SYMBOLS = ["SocialService"]; const { classes: Cc, interfaces: Ci, utils: Cu } = Components; Cu.import("resource://gre/modules/Services.jsm"); Cu.import("resource://gre/modules/XPCOMUtils.jsm"); XPCOMUtils.defineLazyModuleGetter(this, "getFrameWorkerHandle", "resource://gre/modules/FrameWorker.jsm"); XPCOMUtils.defineLazyModuleGetter(this, "WorkerAPI", "resource://gre/modules/WorkerAPI.jsm"); /** * The SocialService is the public API to social providers - it tracks which * providers are installed and enabled, and is the entry-point for access to * the provider itself. */ // Internal helper methods and state let SocialServiceInternal = { enabled: Services.prefs.getBoolPref("social.enabled"), get providerArray() { return [p for ([, p] of Iterator(this.providers))]; } }; XPCOMUtils.defineLazyGetter(SocialServiceInternal, "providers", function () { // Initialize the service (add a pref observer) function prefObserver(subject, topic, data) { SocialService._setEnabled(Services.prefs.getBoolPref(data)); } Services.prefs.addObserver("social.enabled", prefObserver, false); Services.obs.addObserver(function xpcomShutdown() { Services.obs.removeObserver(xpcomShutdown, "xpcom-shutdown"); Services.prefs.removeObserver("social.enabled", prefObserver); }, "xpcom-shutdown", false); // Now retrieve the providers let providers = {}; let MANIFEST_PREFS = Services.prefs.getBranch("social.manifest."); let prefs = MANIFEST_PREFS.getChildList("", {}); prefs.forEach(function (pref) { try { var manifest = JSON.parse(MANIFEST_PREFS.getCharPref(pref)); if (manifest && typeof(manifest) == "object") { let provider = new SocialProvider(manifest, SocialServiceInternal.enabled); providers[provider.origin] = provider; } } catch (err) { Cu.reportError("SocialService: failed to load provider: " + pref + ", exception: " + err); } }); return providers; }); function schedule(callback) { Services.tm.mainThread.dispatch(callback, Ci.nsIThread.DISPATCH_NORMAL); } // Public API const SocialService = { get enabled() { return SocialServiceInternal.enabled; }, set enabled(val) { let enable = !!val; if (enable == SocialServiceInternal.enabled) return; Services.prefs.setBoolPref("social.enabled", enable); this._setEnabled(enable); }, _setEnabled: function _setEnabled(enable) { SocialServiceInternal.providerArray.forEach(function (p) p.enabled = enable); SocialServiceInternal.enabled = enable; Services.obs.notifyObservers(null, "social:pref-changed", enable ? "enabled" : "disabled"); }, // Adds a provider given a manifest, and returns the added provider. addProvider: function addProvider(manifest, onDone) { if (SocialServiceInternal.providers[manifest.origin]) throw new Error("SocialService.addProvider: provider with this origin already exists"); let provider = new SocialProvider(manifest, SocialServiceInternal.enabled); SocialServiceInternal.providers[provider.origin] = provider; schedule(function () { onDone(provider); }); }, // Removes a provider with the given origin, and notifies when the removal is // complete. removeProvider: function removeProvider(origin, onDone) { if (!(origin in SocialServiceInternal.providers)) throw new Error("SocialService.removeProvider: no provider with this origin exists!"); let provider = SocialServiceInternal.providers[origin]; provider.enabled = false; delete SocialServiceInternal.providers[origin]; if (onDone) schedule(onDone); }, // Returns a single provider object with the specified origin. getProvider: function getProvider(origin, onDone) { schedule((function () { onDone(SocialServiceInternal.providers[origin] || null); }).bind(this)); }, // Returns an array of installed provider origins. getProviderList: function getProviderList(onDone) { schedule(function () { onDone(SocialServiceInternal.providerArray); }); } }; /** * The SocialProvider object represents a social provider, and allows * access to its FrameWorker (if it has one). * * @constructor * @param {jsobj} object representing the manifest file describing this provider * @param {bool} whether the provider should be initially enabled (defaults to true) */ function SocialProvider(input, enabled) { if (!input.name) throw new Error("SocialProvider must be passed a name"); if (!input.origin) throw new Error("SocialProvider must be passed an origin"); this.name = input.name; this.iconURL = input.iconURL; this.workerURL = input.workerURL; this.sidebarURL = input.sidebarURL; this.origin = input.origin; this.ambientNotificationIcons = {}; // If enabled is |undefined|, default to true. this._enabled = !(enabled == false); if (this._enabled) this._activate(); } SocialProvider.prototype = { // Provider enabled/disabled state. Disabled providers do not have active // connections to their FrameWorkers. _enabled: true, get enabled() { return this._enabled; }, set enabled(val) { let enable = !!val; if (enable == this._enabled) return; this._enabled = enable; if (enable) { this._activate(); } else { this._terminate(); } }, // Active port to the provider's FrameWorker. Null if the provider has no // FrameWorker, or is disabled. port: null, // Reference to a workerAPI object for this provider. Null if the provider has // no FrameWorker, or is disabled. workerAPI: null, // Contains information related to the user's profile. Populated by the // workerAPI via updateUserProfile. Null if the provider has no FrameWorker. // Properties: // iconURL, portrait, userName, displayName, profileURL // See https://github.com/mozilla/socialapi-dev/blob/develop/docs/socialAPI.md profile: null, // Map of objects describing the provider's notification icons, whose // properties include: // name, iconURL, counter, contentPanel // See https://github.com/mozilla/socialapi-dev/blob/develop/docs/socialAPI.md ambientNotificationIcons: null, // Called by the workerAPI to update our profile information. updateUserProfile: function(profile) { this.profile = profile; if (profile.iconURL) this.iconURL = profile.iconURL; if (!profile.displayName) profile.displayName = profile.userName; // if no userName, consider this a logged out state, emtpy the // users ambient notifications. notify both profile and ambient // changes to clear everything if (!profile.userName) { this.profile = {}; this.ambientNotificationIcons = {}; Services.obs.notifyObservers(null, "social:ambient-notification-changed", this.origin); } Services.obs.notifyObservers(null, "social:profile-changed", this.origin); }, // Called by the workerAPI to add/update a notification icon. setAmbientNotification: function(notification) { if (!this.profile.userName) throw new Error("unable to set notifications while logged out"); this.ambientNotificationIcons[notification.name] = notification; Services.obs.notifyObservers(null, "social:ambient-notification-changed", this.origin); }, // Internal helper methods _activate: function _activate() { // Initialize the workerAPI and its port first, so that its initialization // occurs before any other messages are processed by other ports. let workerAPIPort = this._getWorkerPort(); if (workerAPIPort) this.workerAPI = new WorkerAPI(this, workerAPIPort); this.port = this._getWorkerPort(); }, _terminate: function _terminate() { if (this.workerURL) { try { getFrameWorkerHandle(this.workerURL, null).terminate(); } catch (e) { Cu.reportError("SocialProvider FrameWorker termination failed: " + e); } } this.port = null; this.workerAPI = null; }, /** * Instantiates a FrameWorker for the provider if one doesn't exist, and * returns a reference to a new port to that FrameWorker. * * Returns null if this provider has no workerURL, or is disabled. * * @param {DOMWindow} window (optional) */ _getWorkerPort: function _getWorkerPort(window) { if (!this.workerURL || !this.enabled) return null; try { return getFrameWorkerHandle(this.workerURL, window).port; } catch (ex) { Cu.reportError("SocialProvider: retrieving worker port failed:" + ex); return null; } } }