vapi-background.js 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266
  1. /*******************************************************************************
  2. ηMatrix - a browser extension to black/white list requests.
  3. Copyright (C) 2014-2019 The uMatrix/uBlock Origin authors
  4. Copyright (C) 2019 Alessio Vanni
  5. This program is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program. If not, see {http://www.gnu.org/licenses/}.
  15. Home: https://libregit.org/heckyel/ematrix
  16. uMatrix Home: https://github.com/gorhill/uMatrix
  17. */
  18. /* jshint bitwise: false, esnext: true */
  19. /* global self, Components, punycode */
  20. // For background page
  21. 'use strict';
  22. /******************************************************************************/
  23. (function () {
  24. Cu.import('chrome://ematrix/content/HttpRequestHeaders.jsm');
  25. // Icon-related stuff
  26. vAPI.setIcon = function (tabId, iconId, badge) {
  27. // If badge is undefined, then setIcon was called from the
  28. // TabSelect event
  29. let win;
  30. if (badge === undefined) {
  31. win = iconId;
  32. } else {
  33. win = vAPI.window.getCurrentWindow();
  34. }
  35. let tabBrowser = vAPI.browser.getTabBrowser(win);
  36. if (tabBrowser === null) {
  37. return;
  38. }
  39. let curTabId = vAPI.tabs.manager.tabIdFromTarget(tabBrowser.selectedTab);
  40. let tb = vAPI.toolbarButton;
  41. // from 'TabSelect' event
  42. if (tabId === undefined) {
  43. tabId = curTabId;
  44. } else if (badge !== undefined) {
  45. tb.tabs[tabId] = {
  46. badge: badge, img: iconId
  47. };
  48. }
  49. if (tabId === curTabId) {
  50. tb.updateState(win, tabId);
  51. }
  52. };
  53. vAPI.httpObserver = {
  54. classDescription: 'net-channel-event-sinks for ' + location.host,
  55. classID: Components.ID('{5d2e2797-6d68-42e2-8aeb-81ce6ba16b95}'),
  56. contractID: '@' + location.host + '/net-channel-event-sinks;1',
  57. REQDATAKEY: location.host + 'reqdata',
  58. ABORT: Components.results.NS_BINDING_ABORTED,
  59. ACCEPT: Components.results.NS_SUCCEEDED,
  60. // Request types:
  61. // https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIContentPolicy#Constants
  62. // eMatrix: we can just use nsIContentPolicy's built-in
  63. // constants, can we?
  64. frameTypeMap: {
  65. 6: 'main_frame',
  66. 7: 'sub_frame'
  67. },
  68. typeMap: {
  69. 1: 'other',
  70. 2: 'script',
  71. 3: 'image',
  72. 4: 'stylesheet',
  73. 5: 'object',
  74. 6: 'main_frame',
  75. 7: 'sub_frame',
  76. 9: 'xbl',
  77. 10: 'ping',
  78. 11: 'xmlhttprequest',
  79. 12: 'object',
  80. 13: 'xml_dtd',
  81. 14: 'font',
  82. 15: 'media',
  83. 16: 'websocket',
  84. 17: 'csp_report',
  85. 18: 'xslt',
  86. 19: 'beacon',
  87. 20: 'xmlhttprequest',
  88. 21: 'imageset',
  89. 22: 'web_manifest'
  90. },
  91. mimeTypeMap: {
  92. 'audio': 15,
  93. 'video': 15
  94. },
  95. get componentRegistrar () {
  96. return Components.manager.QueryInterface(Ci.nsIComponentRegistrar);
  97. },
  98. get categoryManager () {
  99. return Cc['@mozilla.org/categorymanager;1']
  100. .getService(Ci.nsICategoryManager);
  101. },
  102. QueryInterface: (function () {
  103. var {XPCOMUtils} =
  104. Cu.import('resource://gre/modules/XPCOMUtils.jsm', null);
  105. return XPCOMUtils.generateQI([
  106. Ci.nsIFactory,
  107. Ci.nsIObserver,
  108. Ci.nsIChannelEventSink,
  109. Ci.nsISupportsWeakReference
  110. ]);
  111. })(),
  112. createInstance: function (outer, iid) {
  113. if (outer) {
  114. throw Components.results.NS_ERROR_NO_AGGREGATION;
  115. }
  116. return this.QueryInterface(iid);
  117. },
  118. register: function () {
  119. this.pendingRingBufferInit();
  120. Services.obs.addObserver(this, 'http-on-modify-request', true);
  121. Services.obs.addObserver(this, 'http-on-examine-response', true);
  122. Services.obs.addObserver(this, 'http-on-examine-cached-response', true);
  123. // Guard against stale instances not having been unregistered
  124. if (this.componentRegistrar.isCIDRegistered(this.classID)) {
  125. try {
  126. this.componentRegistrar
  127. .unregisterFactory(this.classID,
  128. Components.manager
  129. .getClassObject(this.classID,
  130. Ci.nsIFactory));
  131. } catch (ex) {
  132. console.error('eMatrix> httpObserver > '
  133. +'unable to unregister stale instance: ', ex);
  134. }
  135. }
  136. this.componentRegistrar.registerFactory(this.classID,
  137. this.classDescription,
  138. this.contractID,
  139. this);
  140. this.categoryManager.addCategoryEntry('net-channel-event-sinks',
  141. this.contractID,
  142. this.contractID,
  143. false,
  144. true);
  145. },
  146. unregister: function () {
  147. Services.obs.removeObserver(this, 'http-on-modify-request');
  148. Services.obs.removeObserver(this, 'http-on-examine-response');
  149. Services.obs.removeObserver(this, 'http-on-examine-cached-response');
  150. this.componentRegistrar.unregisterFactory(this.classID, this);
  151. this.categoryManager.deleteCategoryEntry('net-channel-event-sinks',
  152. this.contractID,
  153. false);
  154. },
  155. PendingRequest: function () {
  156. this.rawType = 0;
  157. this.tabId = 0;
  158. this._key = ''; // key is url, from URI.spec
  159. },
  160. // If all work fine, this map should not grow indefinitely. It
  161. // can have stale items in it, but these will be taken care of
  162. // when entries in the ring buffer are overwritten.
  163. pendingURLToIndex: new Map(),
  164. pendingWritePointer: 0,
  165. pendingRingBuffer: new Array(256),
  166. pendingRingBufferInit: function () {
  167. // Use and reuse pre-allocated PendingRequest objects =
  168. // less memory churning.
  169. for (let i=this.pendingRingBuffer.length-1; i>=0; --i) {
  170. this.pendingRingBuffer[i] = new this.PendingRequest();
  171. }
  172. },
  173. createPendingRequest: function (url) {
  174. // Pending request ring buffer:
  175. // +-------+-------+-------+-------+-------+-------+-------
  176. // |0 |1 |2 |3 |4 |5 |...
  177. // +-------+-------+-------+-------+-------+-------+-------
  178. //
  179. // URL to ring buffer index map:
  180. // { k = URL, s = ring buffer indices }
  181. //
  182. // s is a string which character codes map to ring buffer
  183. // indices -- for when the same URL is received multiple times
  184. // by shouldLoadListener() before the existing one is serviced
  185. // by the network request observer. I believe the use of a
  186. // string in lieu of an array reduces memory churning.
  187. let bucket;
  188. let i = this.pendingWritePointer;
  189. this.pendingWritePointer = i + 1 & 255;
  190. let preq = this.pendingRingBuffer[i];
  191. let si = String.fromCharCode(i);
  192. // Cleanup unserviced pending request
  193. if (preq._key !== '') {
  194. bucket = this.pendingURLToIndex.get(preq._key);
  195. if (bucket.length === 1) {
  196. this.pendingURLToIndex.delete(preq._key);
  197. } else {
  198. let pos = bucket.indexOf(si);
  199. this.pendingURLToIndex.set(preq._key,
  200. bucket.slice(0, pos)
  201. + bucket.slice(pos + 1));
  202. }
  203. }
  204. bucket = this.pendingURLToIndex.get(url);
  205. this.pendingURLToIndex.set(url, bucket === undefined
  206. ? si
  207. : bucket + si);
  208. preq._key = url;
  209. return preq;
  210. },
  211. lookupPendingRequest: function (url) {
  212. let bucket = this.pendingURLToIndex.get(url);
  213. if (bucket === undefined) {
  214. return null;
  215. }
  216. let i = bucket.charCodeAt(0);
  217. if (bucket.length === 1) {
  218. this.pendingURLToIndex.delete(url);
  219. } else {
  220. this.pendingURLToIndex.set(url, bucket.slice(1));
  221. }
  222. let preq = this.pendingRingBuffer[i];
  223. preq._key = ''; // mark as "serviced"
  224. return preq;
  225. },
  226. handleRequest: function (channel, URI, tabId, rawType) {
  227. let type = this.typeMap[rawType] || 'other';
  228. let onBeforeRequest = vAPI.net.onBeforeRequest;
  229. if (onBeforeRequest.types === null
  230. || onBeforeRequest.types.has(type)) {
  231. let result = onBeforeRequest.callback({
  232. parentFrameId: type === 'main_frame' ? -1 : 0,
  233. tabId: tabId,
  234. type: type,
  235. url: URI.asciiSpec
  236. });
  237. if (typeof result === 'object') {
  238. channel.cancel(this.ABORT);
  239. return true;
  240. }
  241. }
  242. let onBeforeSendHeaders = vAPI.net.onBeforeSendHeaders;
  243. if (onBeforeSendHeaders.types === null
  244. || onBeforeSendHeaders.types.has(type)) {
  245. let requestHeaders = HTTPRequestHeaders.factory(channel);
  246. let newHeaders = onBeforeSendHeaders.callback({
  247. parentFrameId: type === 'main_frame' ? -1 : 0,
  248. requestHeaders: requestHeaders.headers,
  249. tabId: tabId,
  250. type: type,
  251. url: URI.asciiSpec,
  252. method: channel.requestMethod
  253. });
  254. if (newHeaders) {
  255. requestHeaders.update();
  256. }
  257. requestHeaders.dispose();
  258. }
  259. return false;
  260. },
  261. channelDataFromChannel: function (channel) {
  262. if (channel instanceof Ci.nsIWritablePropertyBag) {
  263. try {
  264. return channel.getProperty(this.REQDATAKEY) || null;
  265. } catch (ex) {
  266. // Ignore
  267. }
  268. }
  269. return null;
  270. },
  271. // https://github.com/gorhill/uMatrix/issues/165
  272. // https://developer.mozilla.org/en-US/Firefox/Releases/3.5/Updating_extensions#Getting_a_load_context_from_a_request
  273. // Not sure `ematrix:shouldLoad` is still needed, eMatrix does
  274. // not care about embedded frames topography.
  275. // Also:
  276. // https://developer.mozilla.org/en-US/Firefox/Multiprocess_Firefox/Limitations_of_chrome_scripts
  277. tabIdFromChannel: function (channel) {
  278. let lc;
  279. try {
  280. lc = channel.notificationCallbacks.getInterface(Ci.nsILoadContext);
  281. } catch(ex) {
  282. // Ignore
  283. }
  284. if (!lc) {
  285. try {
  286. lc = channel.loadGroup.notificationCallbacks
  287. .getInterface(Ci.nsILoadContext);
  288. } catch(ex) {
  289. // Ignore
  290. }
  291. if (!lc) {
  292. return vAPI.noTabId;
  293. }
  294. }
  295. if (lc.topFrameElement) {
  296. return vAPI.tabs.manager.tabIdFromTarget(lc.topFrameElement);
  297. }
  298. let win;
  299. try {
  300. win = lc.associatedWindow;
  301. } catch (ex) {
  302. // Ignore
  303. }
  304. if (!win) {
  305. return vAPI.noTabId;
  306. }
  307. if (win.top) {
  308. win = win.top;
  309. }
  310. let tabBrowser;
  311. try {
  312. tabBrowser =
  313. vAPI.browser.getTabBrowser
  314. (win.QueryInterface(Ci.nsIInterfaceRequestor)
  315. .getInterface(Ci.nsIWebNavigation)
  316. .QueryInterface(Ci.nsIDocShell).rootTreeItem
  317. .QueryInterface(Ci.nsIInterfaceRequestor)
  318. .getInterface(Ci.nsIDOMWindow));
  319. } catch (ex) {
  320. // Ignore
  321. }
  322. if (!tabBrowser) {
  323. return vAPI.noTabId;
  324. }
  325. if (tabBrowser.getBrowserForContentWindow) {
  326. return vAPI.tabs.manager
  327. .tabIdFromTarget(tabBrowser.getBrowserForContentWindow(win));
  328. }
  329. // Falling back onto _getTabForContentWindow to ensure older
  330. // versions of Firefox work well.
  331. return tabBrowser._getTabForContentWindow
  332. ? vAPI.tabs.manager
  333. .tabIdFromTarget(tabBrowser._getTabForContentWindow(win))
  334. : vAPI.noTabId;
  335. },
  336. rawtypeFromContentType: function (channel) {
  337. let mime = channel.contentType;
  338. if (!mime) {
  339. return 0;
  340. }
  341. let pos = mime.indexOf('/');
  342. if (pos === -1) {
  343. pos = mime.length;
  344. }
  345. return this.mimeTypeMap[mime.slice(0, pos)] || 0;
  346. },
  347. observe: function (channel, topic) {
  348. if (channel instanceof Ci.nsIHttpChannel === false) {
  349. return;
  350. }
  351. let URI = channel.URI;
  352. let channelData = this.channelDataFromChannel(channel);
  353. if (topic.lastIndexOf('http-on-examine-', 0) === 0) {
  354. if (channelData === null) {
  355. return;
  356. }
  357. let type = this.frameTypeMap[channelData[1]];
  358. if (!type) {
  359. return;
  360. }
  361. // topic = ['Content-Security-Policy',
  362. // 'Content-Security-Policy-Report-Only'];
  363. //
  364. // Can send empty responseHeaders as these headers are
  365. // only added to and then merged.
  366. //
  367. // TODO: Find better place for this, needs to be set
  368. // before onHeadersReceived.callback. Web workers not
  369. // blocked in Pale Moon as child-src currently
  370. // unavailable, see:
  371. //
  372. // https://github.com/MoonchildProductions/Pale-Moon/issues/949
  373. //
  374. // eMatrix: as of Pale Moon 28 it seems child-src is
  375. // available and depracated(?)
  376. if (ηMatrix.cspNoWorker === undefined) {
  377. // ηMatrix.cspNoWorker = "child-src 'none'; "
  378. // +"frame-src data: blob: *; "
  379. // +"report-uri about:blank";
  380. ηMatrix.cspNoWorker = "worker-src 'none'; "
  381. +"frame-src data: blob: *; "
  382. +"report-uri about:blank";
  383. }
  384. let result = vAPI.net.onHeadersReceived.callback({
  385. parentFrameId: type === 'main_frame' ? -1 : 0,
  386. responseHeaders: [],
  387. tabId: channelData[0],
  388. type: type,
  389. url: URI.asciiSpec
  390. });
  391. if (result) {
  392. for (let header of result.responseHeaders) {
  393. channel.setResponseHeader(header.name,
  394. header.value,
  395. true);
  396. }
  397. }
  398. return;
  399. }
  400. // http-on-modify-request
  401. // The channel was previously serviced.
  402. if (channelData !== null) {
  403. this.handleRequest(channel, URI,
  404. channelData[0], channelData[1]);
  405. return;
  406. }
  407. // The channel was never serviced.
  408. let tabId;
  409. let pendingRequest = this.lookupPendingRequest(URI.asciiSpec);
  410. let rawType = 1;
  411. let loadInfo = channel.loadInfo;
  412. // https://github.com/gorhill/uMatrix/issues/390#issuecomment-155717004
  413. if (loadInfo) {
  414. rawType = (loadInfo.externalContentPolicyType !== undefined)
  415. ? loadInfo.externalContentPolicyType
  416. : loadInfo.contentPolicyType;
  417. if (!rawType) {
  418. rawType = 1;
  419. }
  420. }
  421. if (pendingRequest !== null) {
  422. tabId = pendingRequest.tabId;
  423. // https://github.com/gorhill/uBlock/issues/654
  424. // Use the request type from the HTTP observer point of view.
  425. if (rawType !== 1) {
  426. pendingRequest.rawType = rawType;
  427. } else {
  428. rawType = pendingRequest.rawType;
  429. }
  430. } else {
  431. tabId = this.tabIdFromChannel(channel);
  432. }
  433. if (this.handleRequest(channel, URI, tabId, rawType)) {
  434. return;
  435. }
  436. if (channel instanceof Ci.nsIWritablePropertyBag === false) {
  437. return;
  438. }
  439. // Carry data for behind-the-scene redirects
  440. channel.setProperty(this.REQDATAKEY, [tabId, rawType]);
  441. },
  442. asyncOnChannelRedirect: function (oldChannel, newChannel,
  443. flags, callback) {
  444. // contentPolicy.shouldLoad doesn't detect redirects, this
  445. // needs to be used
  446. // If error thrown, the redirect will fail
  447. try {
  448. let URI = newChannel.URI;
  449. if (!URI.schemeIs('http') && !URI.schemeIs('https')) {
  450. return;
  451. }
  452. if (newChannel instanceof Ci.nsIWritablePropertyBag === false) {
  453. return;
  454. }
  455. let channelData = this.channelDataFromChannel(oldChannel);
  456. if (channelData === null) {
  457. return;
  458. }
  459. // Carry the data on in case of multiple redirects
  460. newChannel.setProperty(this.REQDATAKEY, channelData);
  461. } catch (ex) {
  462. // console.error(ex);
  463. // Ignore
  464. } finally {
  465. callback.onRedirectVerifyCallback(this.ACCEPT);
  466. }
  467. }
  468. };
  469. vAPI.toolbarButton = {
  470. id: location.host + '-button',
  471. type: 'view',
  472. viewId: location.host + '-panel',
  473. label: vAPI.app.name,
  474. tooltiptext: vAPI.app.name,
  475. tabs: {/*tabId: {badge: 0, img: boolean}*/},
  476. init: null,
  477. codePath: ''
  478. };
  479. // Non-Fennec: common code paths.
  480. (function () {
  481. if (vAPI.fennec) {
  482. return;
  483. }
  484. let tbb = vAPI.toolbarButton;
  485. let popupCommittedWidth = 0;
  486. let popupCommittedHeight = 0;
  487. tbb.onViewShowing = function ({target}) {
  488. popupCommittedWidth = popupCommittedHeight = 0;
  489. target.firstChild.setAttribute('src', vAPI.getURL('popup.html'));
  490. };
  491. tbb.onViewHiding = function ({target}) {
  492. target.parentNode.style.maxWidth = '';
  493. target.firstChild.setAttribute('src', 'about:blank');
  494. };
  495. tbb.updateState = function (win, tabId) {
  496. let button = win.document.getElementById(this.id);
  497. if (!button) {
  498. return;
  499. }
  500. let icon = this.tabs[tabId];
  501. button.setAttribute('badge', icon && icon.badge || '');
  502. button.classList.toggle('off', !icon || !icon.img);
  503. let iconId = icon && icon.img ? icon.img : 'off';
  504. icon = 'url(' + vAPI.getURL('img/browsericons/icon19-' + iconId + '.png') + ')';
  505. button.style.listStyleImage = icon;
  506. };
  507. tbb.populatePanel = function (doc, panel) {
  508. panel.setAttribute('id', this.viewId);
  509. let iframe = doc.createElement('iframe');
  510. iframe.setAttribute('type', 'content');
  511. panel.appendChild(iframe);
  512. let toPx = function (pixels) {
  513. return pixels.toString() + 'px';
  514. };
  515. let scrollBarWidth = 0;
  516. let resizeTimer = null;
  517. let resizePopupDelayed = function (attempts) {
  518. if (resizeTimer !== null) {
  519. return false;
  520. }
  521. // Sanity check
  522. attempts = (attempts || 0) + 1;
  523. if ( attempts > 1/*000*/ ) {
  524. //console.error('eMatrix> resizePopupDelayed: giving up after too many attempts');
  525. return false;
  526. }
  527. resizeTimer = vAPI.setTimeout(resizePopup, 10, attempts);
  528. return true;
  529. };
  530. let resizePopup = function (attempts) {
  531. resizeTimer = null;
  532. panel.parentNode.style.maxWidth = 'none';
  533. let body = iframe.contentDocument.body;
  534. // https://github.com/gorhill/uMatrix/issues/301
  535. // Don't resize if committed size did not change.
  536. if (popupCommittedWidth === body.clientWidth
  537. && popupCommittedHeight === body.clientHeight) {
  538. return;
  539. }
  540. // We set a limit for height
  541. let height = Math.min(body.clientHeight, 600);
  542. // https://github.com/chrisaljoudi/uBlock/issues/730
  543. // Voodoo programming: this recipe works
  544. panel.style.setProperty('height', toPx(height));
  545. iframe.style.setProperty('height', toPx(height));
  546. // Adjust width for presence/absence of vertical scroll bar which may
  547. // have appeared as a result of last operation.
  548. let contentWindow = iframe.contentWindow;
  549. let width = body.clientWidth;
  550. if (contentWindow.scrollMaxY !== 0) {
  551. width += scrollBarWidth;
  552. }
  553. panel.style.setProperty('width', toPx(width));
  554. // scrollMaxX should always be zero once we know the scrollbar width
  555. if (contentWindow.scrollMaxX !== 0) {
  556. scrollBarWidth = contentWindow.scrollMaxX;
  557. width += scrollBarWidth;
  558. panel.style.setProperty('width', toPx(width));
  559. }
  560. if (iframe.clientHeight !== height
  561. || panel.clientWidth !== width) {
  562. if (resizePopupDelayed(attempts)) {
  563. return;
  564. }
  565. // resizePopupDelayed won't be called again, so commit
  566. // dimentsions.
  567. }
  568. popupCommittedWidth = body.clientWidth;
  569. popupCommittedHeight = body.clientHeight;
  570. };
  571. let onResizeRequested = function () {
  572. let body = iframe.contentDocument.body;
  573. if (body.getAttribute('data-resize-popup') !== 'true') {
  574. return;
  575. }
  576. body.removeAttribute('data-resize-popup');
  577. resizePopupDelayed();
  578. };
  579. let onPopupReady = function () {
  580. let win = this.contentWindow;
  581. if (!win || win.location.host !== location.host) {
  582. return;
  583. }
  584. if (typeof tbb.onBeforePopupReady === 'function') {
  585. tbb.onBeforePopupReady.call(this);
  586. }
  587. resizePopupDelayed();
  588. let body = win.document.body;
  589. body.removeAttribute('data-resize-popup');
  590. let mutationObserver =
  591. new win.MutationObserver(onResizeRequested);
  592. mutationObserver.observe(body, {
  593. attributes: true,
  594. attributeFilter: [ 'data-resize-popup' ]
  595. });
  596. };
  597. iframe.addEventListener('load', onPopupReady, true);
  598. };
  599. })();
  600. /******************************************************************************/
  601. (function () {
  602. // Add toolbar button for not-Basilisk
  603. if (Services.appinfo.ID === "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}") {
  604. return;
  605. }
  606. let tbb = vAPI.toolbarButton;
  607. if (tbb.init !== null) {
  608. return;
  609. }
  610. tbb.codePath = 'legacy';
  611. tbb.viewId = tbb.id + '-panel';
  612. let styleSheetUri = null;
  613. let createToolbarButton = function (window) {
  614. let document = window.document;
  615. let toolbarButton = document.createElement('toolbarbutton');
  616. toolbarButton.setAttribute('id', tbb.id);
  617. // type = panel would be more accurate, but doesn't look as good
  618. toolbarButton.setAttribute('type', 'menu');
  619. toolbarButton.setAttribute('removable', 'true');
  620. toolbarButton.setAttribute('class', 'toolbarbutton-1 '
  621. +'chromeclass-toolbar-additional');
  622. toolbarButton.setAttribute('label', tbb.label);
  623. toolbarButton.setAttribute('tooltiptext', tbb.tooltiptext);
  624. let toolbarButtonPanel = document.createElement('panel');
  625. // NOTE: Setting level to parent breaks the popup for PaleMoon under
  626. // linux (mouse pointer misaligned with content). For some reason.
  627. // eMatrix: TODO check if it's still true
  628. // toolbarButtonPanel.setAttribute('level', 'parent');
  629. tbb.populatePanel(document, toolbarButtonPanel);
  630. toolbarButtonPanel.addEventListener('popupshowing',
  631. tbb.onViewShowing);
  632. toolbarButtonPanel.addEventListener('popuphiding',
  633. tbb.onViewHiding);
  634. toolbarButton.appendChild(toolbarButtonPanel);
  635. toolbarButtonPanel.setAttribute('tooltiptext', '');
  636. return toolbarButton;
  637. };
  638. let addLegacyToolbarButton = function (window) {
  639. // eMatrix's stylesheet lazily added.
  640. if (styleSheetUri === null) {
  641. var sss = Cc["@mozilla.org/content/style-sheet-service;1"]
  642. .getService(Ci.nsIStyleSheetService);
  643. styleSheetUri = Services.io
  644. .newURI(vAPI.getURL("css/legacy-toolbar-button.css"),
  645. null, null);
  646. // Register global so it works in all windows, including palette
  647. if (!sss.sheetRegistered(styleSheetUri, sss.AUTHOR_SHEET)) {
  648. sss.loadAndRegisterSheet(styleSheetUri, sss.AUTHOR_SHEET);
  649. }
  650. }
  651. let document = window.document;
  652. // https://github.com/gorhill/uMatrix/issues/357
  653. // Already installed?
  654. if (document.getElementById(tbb.id) !== null) {
  655. return;
  656. }
  657. let toolbox = document.getElementById('navigator-toolbox')
  658. || document.getElementById('mail-toolbox');
  659. if (toolbox === null) {
  660. return;
  661. }
  662. let toolbarButton = createToolbarButton(window);
  663. let palette = toolbox.palette;
  664. if (palette && palette.querySelector('#' + tbb.id) === null) {
  665. palette.appendChild(toolbarButton);
  666. }
  667. // Find the place to put the button.
  668. // Pale Moon: `toolbox.externalToolbars` can be
  669. // undefined. Seen while testing popup test number 3:
  670. // http://raymondhill.net/ublock/popup.html
  671. let toolbars = toolbox.externalToolbars
  672. ? toolbox.externalToolbars.slice()
  673. : [];
  674. for (let child of toolbox.children) {
  675. if (child.localName === 'toolbar') {
  676. toolbars.push(child);
  677. }
  678. }
  679. for (let toolbar of toolbars) {
  680. let currentsetString = toolbar.getAttribute('currentset');
  681. if (!currentsetString) {
  682. continue;
  683. }
  684. let currentset = currentsetString.split(/\s*,\s*/);
  685. let index = currentset.indexOf(tbb.id);
  686. if (index === -1) {
  687. continue;
  688. }
  689. // This can occur with Pale Moon:
  690. // "TypeError: toolbar.insertItem is not a function"
  691. if (typeof toolbar.insertItem !== 'function') {
  692. continue;
  693. }
  694. // Found our button on this toolbar - but where on it?
  695. let before = null;
  696. for (let i = index+1; i<currentset.length; ++i) {
  697. // The [id=...] notation doesn't work on
  698. // space elements as they get a random ID each session
  699. // (or something like that)
  700. // https://libregit.org/heckyel/ematrix/issues/5
  701. // https://libregit.org/heckyel/ematrix/issues/6
  702. // Based on JustOff's snippet from the Pale Moon
  703. // forum. It was reorganized because I find it
  704. // more readable like this, but he did most of the
  705. // work.
  706. let space = /^(spring|spacer|separator)$/.exec(currentset[i]);
  707. if (space !== null) {
  708. let elems = toolbar.querySelectorAll('toolbar'+space[1]);
  709. let count = currentset.slice(i-currentset.length)
  710. .filter(function (x) {return x == space[1];})
  711. .length;
  712. before =
  713. toolbar.querySelector('[id="'
  714. + elems[elems.length-count].id
  715. + '"]');
  716. } else {
  717. before = toolbar.querySelector('[id="'+currentset[i]+'"]');
  718. }
  719. if ( before !== null ) {
  720. break;
  721. }
  722. }
  723. toolbar.insertItem(tbb.id, before);
  724. break;
  725. }
  726. // https://github.com/gorhill/uBlock/issues/763
  727. // We are done if our toolbar button is already installed
  728. // in one of the toolbar.
  729. if (palette !== null && toolbarButton.parentElement !== palette) {
  730. return;
  731. }
  732. // No button yet so give it a default location. If forcing
  733. // the button, just put in in the palette rather than on
  734. // any specific toolbar (who knows what toolbars will be
  735. // available or visible!)
  736. let navbar = document.getElementById('nav-bar');
  737. if (navbar !== null
  738. && !vAPI.localStorage.getBool('legacyToolbarButtonAdded')) {
  739. // https://github.com/gorhill/uBlock/issues/264
  740. // Find a child customizable palette, if any.
  741. navbar = navbar.querySelector('.customization-target') || navbar;
  742. navbar.appendChild(toolbarButton);
  743. navbar.setAttribute('currentset', navbar.currentSet);
  744. document.persist(navbar.id, 'currentset');
  745. vAPI.localStorage.setBool('legacyToolbarButtonAdded', 'true');
  746. }
  747. };
  748. let canAddLegacyToolbarButton = function (window) {
  749. let document = window.document;
  750. if (!document
  751. || document.readyState !== 'complete'
  752. || document.getElementById('nav-bar') === null) {
  753. return false;
  754. }
  755. let toolbox = document.getElementById('navigator-toolbox')
  756. || document.getElementById('mail-toolbox');
  757. return toolbox !== null && !!toolbox.palette;
  758. };
  759. let onPopupCloseRequested = function ({target}) {
  760. let document = target.ownerDocument;
  761. if (!document) {
  762. return;
  763. }
  764. let toolbarButtonPanel = document.getElementById(tbb.viewId);
  765. if (toolbarButtonPanel === null) {
  766. return;
  767. }
  768. // `hidePopup` reported as not existing while testing
  769. // legacy button on FF 41.0.2.
  770. // https://bugzilla.mozilla.org/show_bug.cgi?id=1151796
  771. if (typeof toolbarButtonPanel.hidePopup === 'function') {
  772. toolbarButtonPanel.hidePopup();
  773. }
  774. };
  775. let shutdown = function () {
  776. for (let win of vAPI.window.getWindows()) {
  777. let toolbarButton = win.document.getElementById(tbb.id);
  778. if (toolbarButton) {
  779. toolbarButton.parentNode.removeChild(toolbarButton);
  780. }
  781. }
  782. if (styleSheetUri !== null) {
  783. var sss = Cc["@mozilla.org/content/style-sheet-service;1"]
  784. .getService(Ci.nsIStyleSheetService);
  785. if (sss.sheetRegistered(styleSheetUri, sss.AUTHOR_SHEET)) {
  786. sss.unregisterSheet(styleSheetUri, sss.AUTHOR_SHEET);
  787. }
  788. styleSheetUri = null;
  789. }
  790. vAPI.messaging.globalMessageManager
  791. .removeMessageListener(location.host + ':closePopup',
  792. onPopupCloseRequested);
  793. };
  794. tbb.attachToNewWindow = function (win) {
  795. vAPI.deferUntil(canAddLegacyToolbarButton.bind(null, win),
  796. addLegacyToolbarButton.bind(null, win));
  797. };
  798. tbb.init = function () {
  799. vAPI.messaging.globalMessageManager
  800. .addMessageListener(location.host + ':closePopup',
  801. onPopupCloseRequested);
  802. vAPI.addCleanUpTask(shutdown);
  803. };
  804. })();
  805. (function() {
  806. // Add toolbar button for Basilisk
  807. if (Services.appinfo.ID !== "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}") {
  808. return;
  809. }
  810. let tbb = vAPI.toolbarButton;
  811. if (tbb.init !== null) {
  812. return;
  813. }
  814. // if ( Services.vc.compare(Services.appinfo.version, '36.0') < 0 ) {
  815. // return null;
  816. // }
  817. let CustomizableUI = null;
  818. try {
  819. CustomizableUI =
  820. Cu.import('resource:///modules/CustomizableUI.jsm', null)
  821. .CustomizableUI;
  822. } catch (ex) {
  823. // Ignore
  824. }
  825. if (CustomizableUI === null) {
  826. return null;
  827. }
  828. tbb.codePath = 'australis';
  829. tbb.CustomizableUI = CustomizableUI;
  830. tbb.defaultArea = CustomizableUI.AREA_NAVBAR;
  831. let CUIEvents = {};
  832. let badgeCSSRules = 'background: #000;color: #fff';
  833. let updateBadgeStyle = function () {
  834. for (let win of vAPI.window.getWindows()) {
  835. let button = win.document.getElementById(tbb.id);
  836. if (button === null) {
  837. continue;
  838. }
  839. let badge = button.ownerDocument
  840. .getAnonymousElementByAttribute(button,
  841. 'class',
  842. 'toolbarbutton-badge');
  843. if (!badge) {
  844. continue;
  845. }
  846. badge.style.cssText = badgeCSSRules;
  847. }
  848. };
  849. let updateBadge = function () {
  850. let wId = tbb.id;
  851. let buttonInPanel =
  852. CustomizableUI.getWidget(wId).areaType
  853. === CustomizableUI.TYPE_MENU_PANEL;
  854. for (let win of vAPI.window.getWindows()) {
  855. let button = win.document.getElementById(wId);
  856. if (button === null) {
  857. continue;
  858. }
  859. if (buttonInPanel) {
  860. button.classList.remove('badged-button');
  861. continue;
  862. }
  863. button.classList.add('badged-button');
  864. }
  865. if (buttonInPanel) {
  866. return;
  867. }
  868. // Anonymous elements need some time to be reachable
  869. vAPI.setTimeout(updateBadgeStyle, 250);
  870. }.bind(CUIEvents);
  871. CUIEvents.onCustomizeEnd = updateBadge;
  872. CUIEvents.onWidgetAdded = updateBadge;
  873. CUIEvents.onWidgetUnderflow = updateBadge;
  874. let onPopupCloseRequested = function ({target}) {
  875. if (typeof tbb.closePopup === 'function') {
  876. tbb.closePopup(target);
  877. }
  878. };
  879. let shutdown = function () {
  880. for (let win of vAPI.window.getWindows()) {
  881. let panel = win.document.getElementById(tbb.viewId);
  882. if (panel !== null && panel.parentNode !== null) {
  883. panel.parentNode.removeChild(panel);
  884. }
  885. win.QueryInterface(Ci.nsIInterfaceRequestor)
  886. .getInterface(Ci.nsIDOMWindowUtils)
  887. .removeSheet(styleURI, 1);
  888. }
  889. CustomizableUI.removeListener(CUIEvents);
  890. CustomizableUI.destroyWidget(tbb.id);
  891. vAPI.messaging.globalMessageManager
  892. .removeMessageListener(location.host + ':closePopup',
  893. onPopupCloseRequested);
  894. };
  895. let styleURI = null;
  896. tbb.onBeforeCreated = function (doc) {
  897. let panel = doc.createElement('panelview');
  898. this.populatePanel(doc, panel);
  899. doc.getElementById('PanelUI-multiView').appendChild(panel);
  900. doc.defaultView.QueryInterface(Ci.nsIInterfaceRequestor)
  901. .getInterface(Ci.nsIDOMWindowUtils)
  902. .loadSheet(styleURI, 1);
  903. };
  904. tbb.onCreated = function (button) {
  905. button.setAttribute('badge', '');
  906. vAPI.setTimeout(updateBadge, 250);
  907. };
  908. tbb.onBeforePopupReady = function () {
  909. // https://github.com/gorhill/uBlock/issues/83
  910. // Add `portrait` class if width is constrained.
  911. try {
  912. this.contentDocument.body
  913. .classList.toggle('portrait',
  914. CustomizableUI.getWidget(tbb.id).areaType
  915. === CustomizableUI.TYPE_MENU_PANEL);
  916. } catch (ex) {
  917. // Ignore
  918. }
  919. };
  920. tbb.closePopup = function (tabBrowser) {
  921. CustomizableUI.hidePanelForNode(tabBrowser
  922. .ownerDocument
  923. .getElementById(tbb.viewId));
  924. };
  925. tbb.init = function () {
  926. vAPI.messaging.globalMessageManager
  927. .addMessageListener(location.host + ':closePopup',
  928. onPopupCloseRequested);
  929. CustomizableUI.addListener(CUIEvents);
  930. var style = [
  931. '#' + this.id + '.off {',
  932. 'list-style-image: url(',
  933. vAPI.getURL('img/browsericons/icon19-off.png'),
  934. ');',
  935. '}',
  936. '#' + this.id + ' {',
  937. 'list-style-image: url(',
  938. vAPI.getURL('img/browsericons/icon19-19.png'),
  939. ');',
  940. '}',
  941. '#' + this.viewId + ', #' + this.viewId + ' > iframe {',
  942. 'height: 290px;',
  943. 'max-width: none !important;',
  944. 'min-width: 0 !important;',
  945. 'overflow: hidden !important;',
  946. 'padding: 0 !important;',
  947. 'width: 160px;',
  948. '}'
  949. ];
  950. styleURI =
  951. Services.io.newURI('data:text/css,'
  952. +encodeURIComponent(style.join('')),
  953. null,
  954. null);
  955. CustomizableUI.createWidget(this);
  956. vAPI.addCleanUpTask(shutdown);
  957. };
  958. })();
  959. // No toolbar button.
  960. (function () {
  961. // Just to ensure the number of cleanup tasks is as expected: toolbar
  962. // button code is one single cleanup task regardless of platform.
  963. // eMatrix: might not be needed anymore
  964. if (vAPI.toolbarButton.init === null) {
  965. vAPI.addCleanUpTask(function(){});
  966. }
  967. })();
  968. if (vAPI.toolbarButton.init !== null) {
  969. vAPI.toolbarButton.init();
  970. }
  971. let optionsObserver = (function () {
  972. let addonId = 'eMatrix@vannilla.org';
  973. let commandHandler = function () {
  974. switch (this.id) {
  975. case 'showDashboardButton':
  976. vAPI.tabs.open({
  977. url: 'dashboard.html',
  978. index: -1,
  979. });
  980. break;
  981. case 'showLoggerButton':
  982. vAPI.tabs.open({
  983. url: 'logger-ui.html',
  984. index: -1,
  985. });
  986. break;
  987. default:
  988. break;
  989. }
  990. };
  991. let setupOptionsButton = function (doc, id) {
  992. let button = doc.getElementById(id);
  993. if (button === null) {
  994. return;
  995. }
  996. button.addEventListener('command', commandHandler);
  997. button.label = vAPI.i18n(id);
  998. };
  999. let setupOptionsButtons = function (doc) {
  1000. setupOptionsButton(doc, 'showDashboardButton');
  1001. setupOptionsButton(doc, 'showLoggerButton');
  1002. };
  1003. let observer = {
  1004. observe: function (doc, topic, id) {
  1005. if (id !== addonId) {
  1006. return;
  1007. }
  1008. setupOptionsButtons(doc);
  1009. }
  1010. };
  1011. var canInit = function() {
  1012. // https://github.com/gorhill/uBlock/issues/948
  1013. // Older versions of Firefox can throw here when looking
  1014. // up `currentURI`.
  1015. try {
  1016. let tabBrowser = vAPI.tabs.manager.currentBrowser();
  1017. return tabBrowser
  1018. && tabBrowser.currentURI
  1019. && tabBrowser.currentURI.spec === 'about:addons'
  1020. && tabBrowser.contentDocument
  1021. && tabBrowser.contentDocument.readyState === 'complete';
  1022. } catch (ex) {
  1023. // Ignore
  1024. }
  1025. };
  1026. // Manually add the buttons if the `about:addons` page is
  1027. // already opened.
  1028. let init = function () {
  1029. if (canInit()) {
  1030. setupOptionsButtons(vAPI.tabs.manager
  1031. .currentBrowser().contentDocument);
  1032. }
  1033. };
  1034. let unregister = function () {
  1035. Services.obs.removeObserver(observer, 'addon-options-displayed');
  1036. };
  1037. let register = function () {
  1038. Services.obs.addObserver(observer,
  1039. 'addon-options-displayed',
  1040. false);
  1041. vAPI.addCleanUpTask(unregister);
  1042. vAPI.deferUntil(canInit, init, { next: 463 });
  1043. };
  1044. return {
  1045. register: register,
  1046. unregister: unregister
  1047. };
  1048. })();
  1049. optionsObserver.register();
  1050. vAPI.onLoadAllCompleted = function() {
  1051. // This is called only once, when everything has been loaded
  1052. // in memory after the extension was launched. It can be used
  1053. // to inject content scripts in already opened web pages, to
  1054. // remove whatever nuisance could make it to the web pages
  1055. // before uBlock was ready.
  1056. for (let browser of vAPI.tabs.manager.browsers()) {
  1057. browser.messageManager
  1058. .sendAsyncMessage(location.host + '-load-completed');
  1059. }
  1060. };
  1061. // Likelihood is that we do not have to punycode: given punycode overhead,
  1062. // it's faster to check and skip than do it unconditionally all the time.
  1063. var punycodeHostname = punycode.toASCII;
  1064. var isNotASCII = /[^\x21-\x7F]/;
  1065. vAPI.punycodeHostname = function (hostname) {
  1066. return isNotASCII.test(hostname)
  1067. ? punycodeHostname(hostname)
  1068. : hostname;
  1069. };
  1070. vAPI.punycodeURL = function (url) {
  1071. if (isNotASCII.test(url)) {
  1072. return Services.io.newURI(url, null, null).asciiSpec;
  1073. }
  1074. return url;
  1075. };
  1076. })();