addon-sdk/source/lib/sdk/self.js

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

michael@0 1 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 2 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 4 "use strict";
michael@0 5
michael@0 6 module.metadata = {
michael@0 7 "stability": "stable"
michael@0 8 };
michael@0 9
michael@0 10 const { CC } = require('chrome');
michael@0 11 const { id, name, prefixURI, rootURI, metadata,
michael@0 12 version, loadReason, preferencesBranch } = require('@loader/options');
michael@0 13
michael@0 14 const { readURISync } = require('./net/url');
michael@0 15
michael@0 16 const addonDataURI = prefixURI + name + '/data/';
michael@0 17
michael@0 18 const uri = (path="") =>
michael@0 19 path.contains(":") ? path : addonDataURI + path;
michael@0 20
michael@0 21
michael@0 22 // Some XPCOM APIs require valid URIs as an argument for certain operations
michael@0 23 // (see `nsILoginManager` for example). This property represents add-on
michael@0 24 // associated unique URI string that can be used for that.
michael@0 25 exports.uri = 'addon:' + id;
michael@0 26 exports.id = id;
michael@0 27 exports.preferencesBranch = preferencesBranch || id;
michael@0 28 exports.name = name;
michael@0 29 exports.loadReason = loadReason;
michael@0 30 exports.version = version;
michael@0 31 // If `rootURI` is jar:file://...!/ than add-on is packed.
michael@0 32 exports.packed = (rootURI || '').indexOf('jar:') === 0;
michael@0 33 exports.data = Object.freeze({
michael@0 34 url: uri,
michael@0 35 load: function read(path) {
michael@0 36 return readURISync(uri(path));
michael@0 37 }
michael@0 38 });
michael@0 39 exports.isPrivateBrowsingSupported = ((metadata || {}).permissions || {})['private-browsing'] === true;

mercurial