123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266 |
- /*******************************************************************************
- ηMatrix - a browser extension to black/white list requests.
- Copyright (C) 2014-2019 The uMatrix/uBlock Origin authors
- Copyright (C) 2019 Alessio Vanni
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see {http://www.gnu.org/licenses/}.
- Home: https://libregit.org/heckyel/ematrix
- uMatrix Home: https://github.com/gorhill/uMatrix
- */
- /* jshint bitwise: false, esnext: true */
- /* global self, Components, punycode */
- // For background page
- 'use strict';
- /******************************************************************************/
- (function () {
- Cu.import('chrome://ematrix/content/HttpRequestHeaders.jsm');
- // Icon-related stuff
- vAPI.setIcon = function (tabId, iconId, badge) {
- // If badge is undefined, then setIcon was called from the
- // TabSelect event
- let win;
- if (badge === undefined) {
- win = iconId;
- } else {
- win = vAPI.window.getCurrentWindow();
- }
- let tabBrowser = vAPI.browser.getTabBrowser(win);
- if (tabBrowser === null) {
- return;
- }
- let curTabId = vAPI.tabs.manager.tabIdFromTarget(tabBrowser.selectedTab);
- let tb = vAPI.toolbarButton;
- // from 'TabSelect' event
- if (tabId === undefined) {
- tabId = curTabId;
- } else if (badge !== undefined) {
- tb.tabs[tabId] = {
- badge: badge, img: iconId
- };
- }
- if (tabId === curTabId) {
- tb.updateState(win, tabId);
- }
- };
- vAPI.httpObserver = {
- classDescription: 'net-channel-event-sinks for ' + location.host,
- classID: Components.ID('{5d2e2797-6d68-42e2-8aeb-81ce6ba16b95}'),
- contractID: '@' + location.host + '/net-channel-event-sinks;1',
- REQDATAKEY: location.host + 'reqdata',
- ABORT: Components.results.NS_BINDING_ABORTED,
- ACCEPT: Components.results.NS_SUCCEEDED,
- // Request types:
- // https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIContentPolicy#Constants
- // eMatrix: we can just use nsIContentPolicy's built-in
- // constants, can we?
- frameTypeMap: {
- 6: 'main_frame',
- 7: 'sub_frame'
- },
- typeMap: {
- 1: 'other',
- 2: 'script',
- 3: 'image',
- 4: 'stylesheet',
- 5: 'object',
- 6: 'main_frame',
- 7: 'sub_frame',
- 9: 'xbl',
- 10: 'ping',
- 11: 'xmlhttprequest',
- 12: 'object',
- 13: 'xml_dtd',
- 14: 'font',
- 15: 'media',
- 16: 'websocket',
- 17: 'csp_report',
- 18: 'xslt',
- 19: 'beacon',
- 20: 'xmlhttprequest',
- 21: 'imageset',
- 22: 'web_manifest'
- },
- mimeTypeMap: {
- 'audio': 15,
- 'video': 15
- },
- get componentRegistrar () {
- return Components.manager.QueryInterface(Ci.nsIComponentRegistrar);
- },
- get categoryManager () {
- return Cc['@mozilla.org/categorymanager;1']
- .getService(Ci.nsICategoryManager);
- },
- QueryInterface: (function () {
- var {XPCOMUtils} =
- Cu.import('resource://gre/modules/XPCOMUtils.jsm', null);
- return XPCOMUtils.generateQI([
- Ci.nsIFactory,
- Ci.nsIObserver,
- Ci.nsIChannelEventSink,
- Ci.nsISupportsWeakReference
- ]);
- })(),
- createInstance: function (outer, iid) {
- if (outer) {
- throw Components.results.NS_ERROR_NO_AGGREGATION;
- }
- return this.QueryInterface(iid);
- },
- register: function () {
- this.pendingRingBufferInit();
- Services.obs.addObserver(this, 'http-on-modify-request', true);
- Services.obs.addObserver(this, 'http-on-examine-response', true);
- Services.obs.addObserver(this, 'http-on-examine-cached-response', true);
- // Guard against stale instances not having been unregistered
- if (this.componentRegistrar.isCIDRegistered(this.classID)) {
- try {
- this.componentRegistrar
- .unregisterFactory(this.classID,
- Components.manager
- .getClassObject(this.classID,
- Ci.nsIFactory));
- } catch (ex) {
- console.error('eMatrix> httpObserver > '
- +'unable to unregister stale instance: ', ex);
- }
- }
- this.componentRegistrar.registerFactory(this.classID,
- this.classDescription,
- this.contractID,
- this);
- this.categoryManager.addCategoryEntry('net-channel-event-sinks',
- this.contractID,
- this.contractID,
- false,
- true);
- },
- unregister: function () {
- Services.obs.removeObserver(this, 'http-on-modify-request');
- Services.obs.removeObserver(this, 'http-on-examine-response');
- Services.obs.removeObserver(this, 'http-on-examine-cached-response');
- this.componentRegistrar.unregisterFactory(this.classID, this);
- this.categoryManager.deleteCategoryEntry('net-channel-event-sinks',
- this.contractID,
- false);
- },
- PendingRequest: function () {
- this.rawType = 0;
- this.tabId = 0;
- this._key = ''; // key is url, from URI.spec
- },
- // If all work fine, this map should not grow indefinitely. It
- // can have stale items in it, but these will be taken care of
- // when entries in the ring buffer are overwritten.
- pendingURLToIndex: new Map(),
- pendingWritePointer: 0,
- pendingRingBuffer: new Array(256),
- pendingRingBufferInit: function () {
- // Use and reuse pre-allocated PendingRequest objects =
- // less memory churning.
- for (let i=this.pendingRingBuffer.length-1; i>=0; --i) {
- this.pendingRingBuffer[i] = new this.PendingRequest();
- }
- },
- createPendingRequest: function (url) {
- // Pending request ring buffer:
- // +-------+-------+-------+-------+-------+-------+-------
- // |0 |1 |2 |3 |4 |5 |...
- // +-------+-------+-------+-------+-------+-------+-------
- //
- // URL to ring buffer index map:
- // { k = URL, s = ring buffer indices }
- //
- // s is a string which character codes map to ring buffer
- // indices -- for when the same URL is received multiple times
- // by shouldLoadListener() before the existing one is serviced
- // by the network request observer. I believe the use of a
- // string in lieu of an array reduces memory churning.
- let bucket;
- let i = this.pendingWritePointer;
- this.pendingWritePointer = i + 1 & 255;
- let preq = this.pendingRingBuffer[i];
- let si = String.fromCharCode(i);
- // Cleanup unserviced pending request
- if (preq._key !== '') {
- bucket = this.pendingURLToIndex.get(preq._key);
- if (bucket.length === 1) {
- this.pendingURLToIndex.delete(preq._key);
- } else {
- let pos = bucket.indexOf(si);
- this.pendingURLToIndex.set(preq._key,
- bucket.slice(0, pos)
- + bucket.slice(pos + 1));
- }
- }
- bucket = this.pendingURLToIndex.get(url);
- this.pendingURLToIndex.set(url, bucket === undefined
- ? si
- : bucket + si);
- preq._key = url;
- return preq;
- },
- lookupPendingRequest: function (url) {
- let bucket = this.pendingURLToIndex.get(url);
- if (bucket === undefined) {
- return null;
- }
- let i = bucket.charCodeAt(0);
- if (bucket.length === 1) {
- this.pendingURLToIndex.delete(url);
- } else {
- this.pendingURLToIndex.set(url, bucket.slice(1));
- }
- let preq = this.pendingRingBuffer[i];
- preq._key = ''; // mark as "serviced"
- return preq;
- },
- handleRequest: function (channel, URI, tabId, rawType) {
- let type = this.typeMap[rawType] || 'other';
- let onBeforeRequest = vAPI.net.onBeforeRequest;
- if (onBeforeRequest.types === null
- || onBeforeRequest.types.has(type)) {
- let result = onBeforeRequest.callback({
- parentFrameId: type === 'main_frame' ? -1 : 0,
- tabId: tabId,
- type: type,
- url: URI.asciiSpec
- });
- if (typeof result === 'object') {
- channel.cancel(this.ABORT);
- return true;
- }
- }
- let onBeforeSendHeaders = vAPI.net.onBeforeSendHeaders;
- if (onBeforeSendHeaders.types === null
- || onBeforeSendHeaders.types.has(type)) {
- let requestHeaders = HTTPRequestHeaders.factory(channel);
- let newHeaders = onBeforeSendHeaders.callback({
- parentFrameId: type === 'main_frame' ? -1 : 0,
- requestHeaders: requestHeaders.headers,
- tabId: tabId,
- type: type,
- url: URI.asciiSpec,
- method: channel.requestMethod
- });
- if (newHeaders) {
- requestHeaders.update();
- }
- requestHeaders.dispose();
- }
- return false;
- },
- channelDataFromChannel: function (channel) {
- if (channel instanceof Ci.nsIWritablePropertyBag) {
- try {
- return channel.getProperty(this.REQDATAKEY) || null;
- } catch (ex) {
- // Ignore
- }
- }
- return null;
- },
- // https://github.com/gorhill/uMatrix/issues/165
- // https://developer.mozilla.org/en-US/Firefox/Releases/3.5/Updating_extensions#Getting_a_load_context_from_a_request
- // Not sure `ematrix:shouldLoad` is still needed, eMatrix does
- // not care about embedded frames topography.
- // Also:
- // https://developer.mozilla.org/en-US/Firefox/Multiprocess_Firefox/Limitations_of_chrome_scripts
- tabIdFromChannel: function (channel) {
- let lc;
- try {
- lc = channel.notificationCallbacks.getInterface(Ci.nsILoadContext);
- } catch(ex) {
- // Ignore
- }
- if (!lc) {
- try {
- lc = channel.loadGroup.notificationCallbacks
- .getInterface(Ci.nsILoadContext);
- } catch(ex) {
- // Ignore
- }
- if (!lc) {
- return vAPI.noTabId;
- }
- }
- if (lc.topFrameElement) {
- return vAPI.tabs.manager.tabIdFromTarget(lc.topFrameElement);
- }
- let win;
- try {
- win = lc.associatedWindow;
- } catch (ex) {
- // Ignore
- }
- if (!win) {
- return vAPI.noTabId;
- }
- if (win.top) {
- win = win.top;
- }
- let tabBrowser;
- try {
- tabBrowser =
- vAPI.browser.getTabBrowser
- (win.QueryInterface(Ci.nsIInterfaceRequestor)
- .getInterface(Ci.nsIWebNavigation)
- .QueryInterface(Ci.nsIDocShell).rootTreeItem
- .QueryInterface(Ci.nsIInterfaceRequestor)
- .getInterface(Ci.nsIDOMWindow));
- } catch (ex) {
- // Ignore
- }
- if (!tabBrowser) {
- return vAPI.noTabId;
- }
- if (tabBrowser.getBrowserForContentWindow) {
- return vAPI.tabs.manager
- .tabIdFromTarget(tabBrowser.getBrowserForContentWindow(win));
- }
- // Falling back onto _getTabForContentWindow to ensure older
- // versions of Firefox work well.
- return tabBrowser._getTabForContentWindow
- ? vAPI.tabs.manager
- .tabIdFromTarget(tabBrowser._getTabForContentWindow(win))
- : vAPI.noTabId;
- },
- rawtypeFromContentType: function (channel) {
- let mime = channel.contentType;
- if (!mime) {
- return 0;
- }
- let pos = mime.indexOf('/');
- if (pos === -1) {
- pos = mime.length;
- }
- return this.mimeTypeMap[mime.slice(0, pos)] || 0;
- },
- observe: function (channel, topic) {
- if (channel instanceof Ci.nsIHttpChannel === false) {
- return;
- }
- let URI = channel.URI;
- let channelData = this.channelDataFromChannel(channel);
- if (topic.lastIndexOf('http-on-examine-', 0) === 0) {
- if (channelData === null) {
- return;
- }
- let type = this.frameTypeMap[channelData[1]];
- if (!type) {
- return;
- }
- // topic = ['Content-Security-Policy',
- // 'Content-Security-Policy-Report-Only'];
- //
- // Can send empty responseHeaders as these headers are
- // only added to and then merged.
- //
- // TODO: Find better place for this, needs to be set
- // before onHeadersReceived.callback. Web workers not
- // blocked in Pale Moon as child-src currently
- // unavailable, see:
- //
- // https://github.com/MoonchildProductions/Pale-Moon/issues/949
- //
- // eMatrix: as of Pale Moon 28 it seems child-src is
- // available and depracated(?)
- if (ηMatrix.cspNoWorker === undefined) {
- // ηMatrix.cspNoWorker = "child-src 'none'; "
- // +"frame-src data: blob: *; "
- // +"report-uri about:blank";
- ηMatrix.cspNoWorker = "worker-src 'none'; "
- +"frame-src data: blob: *; "
- +"report-uri about:blank";
- }
- let result = vAPI.net.onHeadersReceived.callback({
- parentFrameId: type === 'main_frame' ? -1 : 0,
- responseHeaders: [],
- tabId: channelData[0],
- type: type,
- url: URI.asciiSpec
- });
- if (result) {
- for (let header of result.responseHeaders) {
- channel.setResponseHeader(header.name,
- header.value,
- true);
- }
- }
- return;
- }
- // http-on-modify-request
- // The channel was previously serviced.
- if (channelData !== null) {
- this.handleRequest(channel, URI,
- channelData[0], channelData[1]);
- return;
- }
- // The channel was never serviced.
- let tabId;
- let pendingRequest = this.lookupPendingRequest(URI.asciiSpec);
- let rawType = 1;
- let loadInfo = channel.loadInfo;
- // https://github.com/gorhill/uMatrix/issues/390#issuecomment-155717004
- if (loadInfo) {
- rawType = (loadInfo.externalContentPolicyType !== undefined)
- ? loadInfo.externalContentPolicyType
- : loadInfo.contentPolicyType;
- if (!rawType) {
- rawType = 1;
- }
- }
- if (pendingRequest !== null) {
- tabId = pendingRequest.tabId;
- // https://github.com/gorhill/uBlock/issues/654
- // Use the request type from the HTTP observer point of view.
- if (rawType !== 1) {
- pendingRequest.rawType = rawType;
- } else {
- rawType = pendingRequest.rawType;
- }
- } else {
- tabId = this.tabIdFromChannel(channel);
- }
- if (this.handleRequest(channel, URI, tabId, rawType)) {
- return;
- }
- if (channel instanceof Ci.nsIWritablePropertyBag === false) {
- return;
- }
- // Carry data for behind-the-scene redirects
- channel.setProperty(this.REQDATAKEY, [tabId, rawType]);
- },
- asyncOnChannelRedirect: function (oldChannel, newChannel,
- flags, callback) {
- // contentPolicy.shouldLoad doesn't detect redirects, this
- // needs to be used
- // If error thrown, the redirect will fail
- try {
- let URI = newChannel.URI;
- if (!URI.schemeIs('http') && !URI.schemeIs('https')) {
- return;
- }
- if (newChannel instanceof Ci.nsIWritablePropertyBag === false) {
- return;
- }
- let channelData = this.channelDataFromChannel(oldChannel);
- if (channelData === null) {
- return;
- }
- // Carry the data on in case of multiple redirects
- newChannel.setProperty(this.REQDATAKEY, channelData);
- } catch (ex) {
- // console.error(ex);
- // Ignore
- } finally {
- callback.onRedirectVerifyCallback(this.ACCEPT);
- }
- }
- };
- vAPI.toolbarButton = {
- id: location.host + '-button',
- type: 'view',
- viewId: location.host + '-panel',
- label: vAPI.app.name,
- tooltiptext: vAPI.app.name,
- tabs: {/*tabId: {badge: 0, img: boolean}*/},
- init: null,
- codePath: ''
- };
- // Non-Fennec: common code paths.
- (function () {
- if (vAPI.fennec) {
- return;
- }
- let tbb = vAPI.toolbarButton;
- let popupCommittedWidth = 0;
- let popupCommittedHeight = 0;
- tbb.onViewShowing = function ({target}) {
- popupCommittedWidth = popupCommittedHeight = 0;
- target.firstChild.setAttribute('src', vAPI.getURL('popup.html'));
- };
- tbb.onViewHiding = function ({target}) {
- target.parentNode.style.maxWidth = '';
- target.firstChild.setAttribute('src', 'about:blank');
- };
- tbb.updateState = function (win, tabId) {
- let button = win.document.getElementById(this.id);
- if (!button) {
- return;
- }
- let icon = this.tabs[tabId];
- button.setAttribute('badge', icon && icon.badge || '');
- button.classList.toggle('off', !icon || !icon.img);
- let iconId = icon && icon.img ? icon.img : 'off';
- icon = 'url(' + vAPI.getURL('img/browsericons/icon19-' + iconId + '.png') + ')';
- button.style.listStyleImage = icon;
- };
- tbb.populatePanel = function (doc, panel) {
- panel.setAttribute('id', this.viewId);
- let iframe = doc.createElement('iframe');
- iframe.setAttribute('type', 'content');
- panel.appendChild(iframe);
- let toPx = function (pixels) {
- return pixels.toString() + 'px';
- };
- let scrollBarWidth = 0;
- let resizeTimer = null;
- let resizePopupDelayed = function (attempts) {
- if (resizeTimer !== null) {
- return false;
- }
- // Sanity check
- attempts = (attempts || 0) + 1;
- if ( attempts > 1/*000*/ ) {
- //console.error('eMatrix> resizePopupDelayed: giving up after too many attempts');
- return false;
- }
- resizeTimer = vAPI.setTimeout(resizePopup, 10, attempts);
- return true;
- };
- let resizePopup = function (attempts) {
- resizeTimer = null;
- panel.parentNode.style.maxWidth = 'none';
- let body = iframe.contentDocument.body;
- // https://github.com/gorhill/uMatrix/issues/301
- // Don't resize if committed size did not change.
- if (popupCommittedWidth === body.clientWidth
- && popupCommittedHeight === body.clientHeight) {
- return;
- }
- // We set a limit for height
- let height = Math.min(body.clientHeight, 600);
- // https://github.com/chrisaljoudi/uBlock/issues/730
- // Voodoo programming: this recipe works
- panel.style.setProperty('height', toPx(height));
- iframe.style.setProperty('height', toPx(height));
- // Adjust width for presence/absence of vertical scroll bar which may
- // have appeared as a result of last operation.
- let contentWindow = iframe.contentWindow;
- let width = body.clientWidth;
- if (contentWindow.scrollMaxY !== 0) {
- width += scrollBarWidth;
- }
- panel.style.setProperty('width', toPx(width));
- // scrollMaxX should always be zero once we know the scrollbar width
- if (contentWindow.scrollMaxX !== 0) {
- scrollBarWidth = contentWindow.scrollMaxX;
- width += scrollBarWidth;
- panel.style.setProperty('width', toPx(width));
- }
- if (iframe.clientHeight !== height
- || panel.clientWidth !== width) {
- if (resizePopupDelayed(attempts)) {
- return;
- }
- // resizePopupDelayed won't be called again, so commit
- // dimentsions.
- }
- popupCommittedWidth = body.clientWidth;
- popupCommittedHeight = body.clientHeight;
- };
- let onResizeRequested = function () {
- let body = iframe.contentDocument.body;
- if (body.getAttribute('data-resize-popup') !== 'true') {
- return;
- }
- body.removeAttribute('data-resize-popup');
- resizePopupDelayed();
- };
- let onPopupReady = function () {
- let win = this.contentWindow;
- if (!win || win.location.host !== location.host) {
- return;
- }
- if (typeof tbb.onBeforePopupReady === 'function') {
- tbb.onBeforePopupReady.call(this);
- }
- resizePopupDelayed();
- let body = win.document.body;
- body.removeAttribute('data-resize-popup');
- let mutationObserver =
- new win.MutationObserver(onResizeRequested);
- mutationObserver.observe(body, {
- attributes: true,
- attributeFilter: [ 'data-resize-popup' ]
- });
- };
- iframe.addEventListener('load', onPopupReady, true);
- };
- })();
- /******************************************************************************/
- (function () {
- // Add toolbar button for not-Basilisk
- if (Services.appinfo.ID === "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}") {
- return;
- }
- let tbb = vAPI.toolbarButton;
- if (tbb.init !== null) {
- return;
- }
- tbb.codePath = 'legacy';
- tbb.viewId = tbb.id + '-panel';
- let styleSheetUri = null;
- let createToolbarButton = function (window) {
- let document = window.document;
- let toolbarButton = document.createElement('toolbarbutton');
- toolbarButton.setAttribute('id', tbb.id);
- // type = panel would be more accurate, but doesn't look as good
- toolbarButton.setAttribute('type', 'menu');
- toolbarButton.setAttribute('removable', 'true');
- toolbarButton.setAttribute('class', 'toolbarbutton-1 '
- +'chromeclass-toolbar-additional');
- toolbarButton.setAttribute('label', tbb.label);
- toolbarButton.setAttribute('tooltiptext', tbb.tooltiptext);
- let toolbarButtonPanel = document.createElement('panel');
- // NOTE: Setting level to parent breaks the popup for PaleMoon under
- // linux (mouse pointer misaligned with content). For some reason.
- // eMatrix: TODO check if it's still true
- // toolbarButtonPanel.setAttribute('level', 'parent');
- tbb.populatePanel(document, toolbarButtonPanel);
- toolbarButtonPanel.addEventListener('popupshowing',
- tbb.onViewShowing);
- toolbarButtonPanel.addEventListener('popuphiding',
- tbb.onViewHiding);
- toolbarButton.appendChild(toolbarButtonPanel);
- toolbarButtonPanel.setAttribute('tooltiptext', '');
- return toolbarButton;
- };
- let addLegacyToolbarButton = function (window) {
- // eMatrix's stylesheet lazily added.
- if (styleSheetUri === null) {
- var sss = Cc["@mozilla.org/content/style-sheet-service;1"]
- .getService(Ci.nsIStyleSheetService);
- styleSheetUri = Services.io
- .newURI(vAPI.getURL("css/legacy-toolbar-button.css"),
- null, null);
- // Register global so it works in all windows, including palette
- if (!sss.sheetRegistered(styleSheetUri, sss.AUTHOR_SHEET)) {
- sss.loadAndRegisterSheet(styleSheetUri, sss.AUTHOR_SHEET);
- }
- }
- let document = window.document;
- // https://github.com/gorhill/uMatrix/issues/357
- // Already installed?
- if (document.getElementById(tbb.id) !== null) {
- return;
- }
- let toolbox = document.getElementById('navigator-toolbox')
- || document.getElementById('mail-toolbox');
- if (toolbox === null) {
- return;
- }
- let toolbarButton = createToolbarButton(window);
- let palette = toolbox.palette;
- if (palette && palette.querySelector('#' + tbb.id) === null) {
- palette.appendChild(toolbarButton);
- }
- // Find the place to put the button.
- // Pale Moon: `toolbox.externalToolbars` can be
- // undefined. Seen while testing popup test number 3:
- // http://raymondhill.net/ublock/popup.html
- let toolbars = toolbox.externalToolbars
- ? toolbox.externalToolbars.slice()
- : [];
- for (let child of toolbox.children) {
- if (child.localName === 'toolbar') {
- toolbars.push(child);
- }
- }
- for (let toolbar of toolbars) {
- let currentsetString = toolbar.getAttribute('currentset');
- if (!currentsetString) {
- continue;
- }
- let currentset = currentsetString.split(/\s*,\s*/);
- let index = currentset.indexOf(tbb.id);
- if (index === -1) {
- continue;
- }
- // This can occur with Pale Moon:
- // "TypeError: toolbar.insertItem is not a function"
- if (typeof toolbar.insertItem !== 'function') {
- continue;
- }
- // Found our button on this toolbar - but where on it?
- let before = null;
- for (let i = index+1; i<currentset.length; ++i) {
- // The [id=...] notation doesn't work on
- // space elements as they get a random ID each session
- // (or something like that)
- // https://libregit.org/heckyel/ematrix/issues/5
- // https://libregit.org/heckyel/ematrix/issues/6
- // Based on JustOff's snippet from the Pale Moon
- // forum. It was reorganized because I find it
- // more readable like this, but he did most of the
- // work.
- let space = /^(spring|spacer|separator)$/.exec(currentset[i]);
- if (space !== null) {
- let elems = toolbar.querySelectorAll('toolbar'+space[1]);
- let count = currentset.slice(i-currentset.length)
- .filter(function (x) {return x == space[1];})
- .length;
- before =
- toolbar.querySelector('[id="'
- + elems[elems.length-count].id
- + '"]');
- } else {
- before = toolbar.querySelector('[id="'+currentset[i]+'"]');
- }
- if ( before !== null ) {
- break;
- }
- }
- toolbar.insertItem(tbb.id, before);
- break;
- }
- // https://github.com/gorhill/uBlock/issues/763
- // We are done if our toolbar button is already installed
- // in one of the toolbar.
- if (palette !== null && toolbarButton.parentElement !== palette) {
- return;
- }
- // No button yet so give it a default location. If forcing
- // the button, just put in in the palette rather than on
- // any specific toolbar (who knows what toolbars will be
- // available or visible!)
- let navbar = document.getElementById('nav-bar');
- if (navbar !== null
- && !vAPI.localStorage.getBool('legacyToolbarButtonAdded')) {
- // https://github.com/gorhill/uBlock/issues/264
- // Find a child customizable palette, if any.
- navbar = navbar.querySelector('.customization-target') || navbar;
- navbar.appendChild(toolbarButton);
- navbar.setAttribute('currentset', navbar.currentSet);
- document.persist(navbar.id, 'currentset');
- vAPI.localStorage.setBool('legacyToolbarButtonAdded', 'true');
- }
- };
- let canAddLegacyToolbarButton = function (window) {
- let document = window.document;
- if (!document
- || document.readyState !== 'complete'
- || document.getElementById('nav-bar') === null) {
- return false;
- }
- let toolbox = document.getElementById('navigator-toolbox')
- || document.getElementById('mail-toolbox');
- return toolbox !== null && !!toolbox.palette;
- };
- let onPopupCloseRequested = function ({target}) {
- let document = target.ownerDocument;
- if (!document) {
- return;
- }
- let toolbarButtonPanel = document.getElementById(tbb.viewId);
- if (toolbarButtonPanel === null) {
- return;
- }
- // `hidePopup` reported as not existing while testing
- // legacy button on FF 41.0.2.
- // https://bugzilla.mozilla.org/show_bug.cgi?id=1151796
- if (typeof toolbarButtonPanel.hidePopup === 'function') {
- toolbarButtonPanel.hidePopup();
- }
- };
- let shutdown = function () {
- for (let win of vAPI.window.getWindows()) {
- let toolbarButton = win.document.getElementById(tbb.id);
- if (toolbarButton) {
- toolbarButton.parentNode.removeChild(toolbarButton);
- }
- }
- if (styleSheetUri !== null) {
- var sss = Cc["@mozilla.org/content/style-sheet-service;1"]
- .getService(Ci.nsIStyleSheetService);
- if (sss.sheetRegistered(styleSheetUri, sss.AUTHOR_SHEET)) {
- sss.unregisterSheet(styleSheetUri, sss.AUTHOR_SHEET);
- }
- styleSheetUri = null;
- }
- vAPI.messaging.globalMessageManager
- .removeMessageListener(location.host + ':closePopup',
- onPopupCloseRequested);
- };
- tbb.attachToNewWindow = function (win) {
- vAPI.deferUntil(canAddLegacyToolbarButton.bind(null, win),
- addLegacyToolbarButton.bind(null, win));
- };
- tbb.init = function () {
- vAPI.messaging.globalMessageManager
- .addMessageListener(location.host + ':closePopup',
- onPopupCloseRequested);
- vAPI.addCleanUpTask(shutdown);
- };
- })();
- (function() {
- // Add toolbar button for Basilisk
- if (Services.appinfo.ID !== "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}") {
- return;
- }
- let tbb = vAPI.toolbarButton;
- if (tbb.init !== null) {
- return;
- }
- // if ( Services.vc.compare(Services.appinfo.version, '36.0') < 0 ) {
- // return null;
- // }
- let CustomizableUI = null;
- try {
- CustomizableUI =
- Cu.import('resource:///modules/CustomizableUI.jsm', null)
- .CustomizableUI;
- } catch (ex) {
- // Ignore
- }
- if (CustomizableUI === null) {
- return null;
- }
- tbb.codePath = 'australis';
- tbb.CustomizableUI = CustomizableUI;
- tbb.defaultArea = CustomizableUI.AREA_NAVBAR;
- let CUIEvents = {};
- let badgeCSSRules = 'background: #000;color: #fff';
- let updateBadgeStyle = function () {
- for (let win of vAPI.window.getWindows()) {
- let button = win.document.getElementById(tbb.id);
- if (button === null) {
- continue;
- }
- let badge = button.ownerDocument
- .getAnonymousElementByAttribute(button,
- 'class',
- 'toolbarbutton-badge');
- if (!badge) {
- continue;
- }
- badge.style.cssText = badgeCSSRules;
- }
- };
- let updateBadge = function () {
- let wId = tbb.id;
- let buttonInPanel =
- CustomizableUI.getWidget(wId).areaType
- === CustomizableUI.TYPE_MENU_PANEL;
- for (let win of vAPI.window.getWindows()) {
- let button = win.document.getElementById(wId);
- if (button === null) {
- continue;
- }
- if (buttonInPanel) {
- button.classList.remove('badged-button');
- continue;
- }
- button.classList.add('badged-button');
- }
- if (buttonInPanel) {
- return;
- }
- // Anonymous elements need some time to be reachable
- vAPI.setTimeout(updateBadgeStyle, 250);
- }.bind(CUIEvents);
- CUIEvents.onCustomizeEnd = updateBadge;
- CUIEvents.onWidgetAdded = updateBadge;
- CUIEvents.onWidgetUnderflow = updateBadge;
- let onPopupCloseRequested = function ({target}) {
- if (typeof tbb.closePopup === 'function') {
- tbb.closePopup(target);
- }
- };
- let shutdown = function () {
- for (let win of vAPI.window.getWindows()) {
- let panel = win.document.getElementById(tbb.viewId);
- if (panel !== null && panel.parentNode !== null) {
- panel.parentNode.removeChild(panel);
- }
- win.QueryInterface(Ci.nsIInterfaceRequestor)
- .getInterface(Ci.nsIDOMWindowUtils)
- .removeSheet(styleURI, 1);
- }
- CustomizableUI.removeListener(CUIEvents);
- CustomizableUI.destroyWidget(tbb.id);
- vAPI.messaging.globalMessageManager
- .removeMessageListener(location.host + ':closePopup',
- onPopupCloseRequested);
- };
- let styleURI = null;
- tbb.onBeforeCreated = function (doc) {
- let panel = doc.createElement('panelview');
- this.populatePanel(doc, panel);
- doc.getElementById('PanelUI-multiView').appendChild(panel);
- doc.defaultView.QueryInterface(Ci.nsIInterfaceRequestor)
- .getInterface(Ci.nsIDOMWindowUtils)
- .loadSheet(styleURI, 1);
- };
- tbb.onCreated = function (button) {
- button.setAttribute('badge', '');
- vAPI.setTimeout(updateBadge, 250);
- };
- tbb.onBeforePopupReady = function () {
- // https://github.com/gorhill/uBlock/issues/83
- // Add `portrait` class if width is constrained.
- try {
- this.contentDocument.body
- .classList.toggle('portrait',
- CustomizableUI.getWidget(tbb.id).areaType
- === CustomizableUI.TYPE_MENU_PANEL);
- } catch (ex) {
- // Ignore
- }
- };
- tbb.closePopup = function (tabBrowser) {
- CustomizableUI.hidePanelForNode(tabBrowser
- .ownerDocument
- .getElementById(tbb.viewId));
- };
- tbb.init = function () {
- vAPI.messaging.globalMessageManager
- .addMessageListener(location.host + ':closePopup',
- onPopupCloseRequested);
- CustomizableUI.addListener(CUIEvents);
- var style = [
- '#' + this.id + '.off {',
- 'list-style-image: url(',
- vAPI.getURL('img/browsericons/icon19-off.png'),
- ');',
- '}',
- '#' + this.id + ' {',
- 'list-style-image: url(',
- vAPI.getURL('img/browsericons/icon19-19.png'),
- ');',
- '}',
- '#' + this.viewId + ', #' + this.viewId + ' > iframe {',
- 'height: 290px;',
- 'max-width: none !important;',
- 'min-width: 0 !important;',
- 'overflow: hidden !important;',
- 'padding: 0 !important;',
- 'width: 160px;',
- '}'
- ];
- styleURI =
- Services.io.newURI('data:text/css,'
- +encodeURIComponent(style.join('')),
- null,
- null);
- CustomizableUI.createWidget(this);
- vAPI.addCleanUpTask(shutdown);
- };
- })();
- // No toolbar button.
- (function () {
- // Just to ensure the number of cleanup tasks is as expected: toolbar
- // button code is one single cleanup task regardless of platform.
- // eMatrix: might not be needed anymore
- if (vAPI.toolbarButton.init === null) {
- vAPI.addCleanUpTask(function(){});
- }
- })();
- if (vAPI.toolbarButton.init !== null) {
- vAPI.toolbarButton.init();
- }
- let optionsObserver = (function () {
- let addonId = 'eMatrix@vannilla.org';
- let commandHandler = function () {
- switch (this.id) {
- case 'showDashboardButton':
- vAPI.tabs.open({
- url: 'dashboard.html',
- index: -1,
- });
- break;
- case 'showLoggerButton':
- vAPI.tabs.open({
- url: 'logger-ui.html',
- index: -1,
- });
- break;
- default:
- break;
- }
- };
- let setupOptionsButton = function (doc, id) {
- let button = doc.getElementById(id);
- if (button === null) {
- return;
- }
- button.addEventListener('command', commandHandler);
- button.label = vAPI.i18n(id);
- };
- let setupOptionsButtons = function (doc) {
- setupOptionsButton(doc, 'showDashboardButton');
- setupOptionsButton(doc, 'showLoggerButton');
- };
- let observer = {
- observe: function (doc, topic, id) {
- if (id !== addonId) {
- return;
- }
- setupOptionsButtons(doc);
- }
- };
- var canInit = function() {
- // https://github.com/gorhill/uBlock/issues/948
- // Older versions of Firefox can throw here when looking
- // up `currentURI`.
- try {
- let tabBrowser = vAPI.tabs.manager.currentBrowser();
- return tabBrowser
- && tabBrowser.currentURI
- && tabBrowser.currentURI.spec === 'about:addons'
- && tabBrowser.contentDocument
- && tabBrowser.contentDocument.readyState === 'complete';
- } catch (ex) {
- // Ignore
- }
- };
- // Manually add the buttons if the `about:addons` page is
- // already opened.
- let init = function () {
- if (canInit()) {
- setupOptionsButtons(vAPI.tabs.manager
- .currentBrowser().contentDocument);
- }
- };
- let unregister = function () {
- Services.obs.removeObserver(observer, 'addon-options-displayed');
- };
- let register = function () {
- Services.obs.addObserver(observer,
- 'addon-options-displayed',
- false);
- vAPI.addCleanUpTask(unregister);
- vAPI.deferUntil(canInit, init, { next: 463 });
- };
- return {
- register: register,
- unregister: unregister
- };
- })();
- optionsObserver.register();
- vAPI.onLoadAllCompleted = function() {
- // This is called only once, when everything has been loaded
- // in memory after the extension was launched. It can be used
- // to inject content scripts in already opened web pages, to
- // remove whatever nuisance could make it to the web pages
- // before uBlock was ready.
- for (let browser of vAPI.tabs.manager.browsers()) {
- browser.messageManager
- .sendAsyncMessage(location.host + '-load-completed');
- }
- };
- // Likelihood is that we do not have to punycode: given punycode overhead,
- // it's faster to check and skip than do it unconditionally all the time.
- var punycodeHostname = punycode.toASCII;
- var isNotASCII = /[^\x21-\x7F]/;
- vAPI.punycodeHostname = function (hostname) {
- return isNotASCII.test(hostname)
- ? punycodeHostname(hostname)
- : hostname;
- };
- vAPI.punycodeURL = function (url) {
- if (isNotASCII.test(url)) {
- return Services.io.newURI(url, null, null).asciiSpec;
- }
- return url;
- };
- })();
|