2014-11-15 19:15:11 +01:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2016-03-22 15:19:41 +01:00
|
|
|
uBlock Origin - a browser extension to block requests.
|
2017-03-05 14:25:55 +01:00
|
|
|
Copyright (C) 2014-2017 The uBlock Origin authors
|
2014-11-15 19:15:11 +01:00
|
|
|
|
|
|
|
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://github.com/gorhill/uBlock
|
|
|
|
*/
|
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
// For background page
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2016-12-07 15:49:43 +01:00
|
|
|
'use strict';
|
|
|
|
|
2014-11-15 19:15:11 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2017-10-27 20:22:45 +02:00
|
|
|
/******************************************************************************/
|
2014-11-15 19:15:11 +01:00
|
|
|
|
|
|
|
var chrome = self.chrome;
|
2014-12-01 17:25:33 +01:00
|
|
|
var manifest = chrome.runtime.getManifest();
|
2014-11-15 19:15:11 +01:00
|
|
|
|
|
|
|
vAPI.chrome = true;
|
2017-05-12 16:35:11 +02:00
|
|
|
vAPI.chromiumVersion = (function(){
|
|
|
|
var matches = /\bChrom(?:e|ium)\/(\d+)\b/.exec(navigator.userAgent);
|
|
|
|
return matches !== null ? parseInt(matches[1], 10) : NaN;
|
|
|
|
})();
|
2017-09-26 22:09:35 +02:00
|
|
|
|
2017-05-12 16:35:11 +02:00
|
|
|
vAPI.cantWebsocket =
|
|
|
|
chrome.webRequest.ResourceType instanceof Object === false ||
|
|
|
|
chrome.webRequest.ResourceType.WEBSOCKET !== 'websocket';
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2017-09-26 22:09:35 +02:00
|
|
|
vAPI.webextFlavor = '';
|
|
|
|
if (
|
|
|
|
self.browser instanceof Object &&
|
|
|
|
typeof self.browser.runtime.getBrowserInfo === 'function'
|
|
|
|
) {
|
|
|
|
self.browser.runtime.getBrowserInfo().then(function(info) {
|
|
|
|
vAPI.webextFlavor = info.vendor + '-' + info.name + '-' + info.version;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-10-22 18:48:13 +02:00
|
|
|
// https://issues.adblockplus.org/ticket/5695
|
|
|
|
// - Good idea, adopted: cleaner way to detect user-stylesheet support.
|
|
|
|
vAPI.supportsUserStylesheets =
|
|
|
|
chrome.extensionTypes instanceof Object &&
|
|
|
|
chrome.extensionTypes.CSSOrigin instanceof Object &&
|
|
|
|
'USER' in chrome.extensionTypes.CSSOrigin;
|
2017-10-23 15:01:00 +02:00
|
|
|
vAPI.insertCSS = chrome.tabs.insertCSS;
|
2017-10-22 18:48:13 +02:00
|
|
|
|
2015-01-21 01:39:13 +01:00
|
|
|
var noopFunc = function(){};
|
|
|
|
|
2014-11-15 19:15:11 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-12-01 17:25:33 +01:00
|
|
|
vAPI.app = {
|
2017-10-01 16:28:33 +02:00
|
|
|
name: manifest.name.replace(' dev build', ''),
|
2014-12-01 17:25:33 +01:00
|
|
|
version: manifest.version
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-12-02 17:02:17 +01:00
|
|
|
vAPI.app.restart = function() {
|
|
|
|
chrome.runtime.reload();
|
|
|
|
};
|
|
|
|
|
2015-08-11 21:29:14 +02:00
|
|
|
/******************************************************************************/
|
2014-12-02 17:02:17 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-03-27 18:00:55 +01:00
|
|
|
// chrome.storage.local.get(null, function(bin){ console.debug('%o', bin); });
|
|
|
|
|
2014-11-15 19:15:11 +01:00
|
|
|
vAPI.storage = chrome.storage.local;
|
2016-10-28 14:40:38 +02:00
|
|
|
vAPI.cacheStorage = chrome.storage.local;
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2015-08-11 21:29:14 +02:00
|
|
|
/******************************************************************************/
|
2014-11-15 19:15:11 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-06-01 21:03:22 +02:00
|
|
|
// https://github.com/gorhill/uMatrix/issues/234
|
|
|
|
// https://developer.chrome.com/extensions/privacy#property-network
|
|
|
|
|
2015-08-14 01:42:30 +02:00
|
|
|
// 2015-08-12: Wrapped Chrome API in try-catch statements. I had a fluke
|
2015-08-16 14:17:01 +02:00
|
|
|
// event in which it appeared Chrome 46 decided to restart uBlock (for
|
2015-08-14 01:42:30 +02:00
|
|
|
// unknown reasons) and again for unknown reasons the browser acted as if
|
|
|
|
// uBlock did not declare the `privacy` permission in its manifest, putting
|
2015-08-16 14:17:01 +02:00
|
|
|
// uBlock in a bad, non-functional state -- because call to `chrome.privacy`
|
2015-08-14 01:42:30 +02:00
|
|
|
// API threw an exception.
|
|
|
|
|
2016-10-05 12:52:43 +02:00
|
|
|
// https://github.com/gorhill/uBlock/issues/2048
|
|
|
|
// Do not mess up with existing settings if not assigning them stricter
|
|
|
|
// values.
|
|
|
|
|
2016-10-19 16:20:26 +02:00
|
|
|
vAPI.browserSettings = (function() {
|
|
|
|
// Not all platforms support `chrome.privacy`.
|
|
|
|
if ( chrome.privacy instanceof Object === false ) {
|
|
|
|
return;
|
|
|
|
}
|
2015-12-31 15:24:55 +01:00
|
|
|
|
2016-10-19 16:20:26 +02:00
|
|
|
return {
|
|
|
|
webRTCSupported: undefined,
|
2016-08-31 23:28:10 +02:00
|
|
|
|
2016-10-19 16:20:26 +02:00
|
|
|
// https://github.com/gorhill/uBlock/issues/875
|
|
|
|
// Must not leave `lastError` unchecked.
|
|
|
|
noopCallback: function() {
|
|
|
|
void chrome.runtime.lastError;
|
|
|
|
},
|
2015-12-31 15:24:55 +01:00
|
|
|
|
2016-10-19 16:20:26 +02:00
|
|
|
// Calling with `true` means IP address leak is not prevented.
|
2015-12-31 15:24:55 +01:00
|
|
|
// https://github.com/gorhill/uBlock/issues/533
|
2016-10-19 16:20:26 +02:00
|
|
|
// We must first check wether this Chromium-based browser was compiled
|
|
|
|
// with WebRTC support. To do this, we use an iframe, this way the
|
|
|
|
// empty RTCPeerConnection object we create to test for support will
|
|
|
|
// be properly garbage collected. This prevents issues such as
|
|
|
|
// a computer unable to enter into sleep mode, as reported in the
|
|
|
|
// Chrome store:
|
|
|
|
// https://github.com/gorhill/uBlock/issues/533#issuecomment-167931681
|
|
|
|
setWebrtcIPAddress: function(setting) {
|
|
|
|
// We don't know yet whether this browser supports WebRTC: find out.
|
|
|
|
if ( this.webRTCSupported === undefined ) {
|
|
|
|
this.webRTCSupported = { setting: setting };
|
|
|
|
var iframe = document.createElement('iframe');
|
|
|
|
var me = this;
|
|
|
|
var messageHandler = function(ev) {
|
|
|
|
if ( ev.origin !== self.location.origin ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
window.removeEventListener('message', messageHandler);
|
|
|
|
var setting = me.webRTCSupported.setting;
|
|
|
|
me.webRTCSupported = ev.data === 'webRTCSupported';
|
|
|
|
me.setWebrtcIPAddress(setting);
|
|
|
|
iframe.parentNode.removeChild(iframe);
|
|
|
|
iframe = null;
|
|
|
|
};
|
|
|
|
window.addEventListener('message', messageHandler);
|
|
|
|
iframe.src = 'is-webrtc-supported.html';
|
|
|
|
document.body.appendChild(iframe);
|
|
|
|
return;
|
2016-08-31 23:28:10 +02:00
|
|
|
}
|
2015-12-31 15:24:55 +01:00
|
|
|
|
2016-10-19 16:20:26 +02:00
|
|
|
// We are waiting for a response from our iframe. This makes the code
|
|
|
|
// safe to re-entrancy.
|
|
|
|
if ( typeof this.webRTCSupported === 'object' ) {
|
|
|
|
this.webRTCSupported.setting = setting;
|
|
|
|
return;
|
2016-08-31 23:28:10 +02:00
|
|
|
}
|
2015-12-31 15:24:55 +01:00
|
|
|
|
2016-10-19 16:20:26 +02:00
|
|
|
// https://github.com/gorhill/uBlock/issues/533
|
|
|
|
// WebRTC not supported: `webRTCMultipleRoutesEnabled` can NOT be
|
|
|
|
// safely accessed. Accessing the property will cause full browser
|
|
|
|
// crash.
|
|
|
|
if ( this.webRTCSupported !== true ) {
|
|
|
|
return;
|
2015-06-01 21:03:22 +02:00
|
|
|
}
|
2016-10-19 16:20:26 +02:00
|
|
|
|
|
|
|
var cp = chrome.privacy,
|
|
|
|
cpn = cp.network;
|
|
|
|
|
|
|
|
// Older version of Chromium do not support this setting, and is
|
|
|
|
// marked as "deprecated" since Chromium 48.
|
|
|
|
if ( typeof cpn.webRTCMultipleRoutesEnabled === 'object' ) {
|
2015-08-14 01:42:30 +02:00
|
|
|
try {
|
2016-10-19 16:20:26 +02:00
|
|
|
if ( setting ) {
|
|
|
|
cpn.webRTCMultipleRoutesEnabled.clear({
|
2016-10-05 12:52:43 +02:00
|
|
|
scope: 'regular'
|
|
|
|
}, this.noopCallback);
|
|
|
|
} else {
|
2016-10-19 16:20:26 +02:00
|
|
|
cpn.webRTCMultipleRoutesEnabled.set({
|
2016-10-05 12:52:43 +02:00
|
|
|
value: false,
|
|
|
|
scope: 'regular'
|
|
|
|
}, this.noopCallback);
|
|
|
|
}
|
2015-08-14 01:42:30 +02:00
|
|
|
} catch(ex) {
|
|
|
|
console.error(ex);
|
|
|
|
}
|
2016-10-19 16:20:26 +02:00
|
|
|
}
|
2015-06-01 21:03:22 +02:00
|
|
|
|
2016-10-19 16:20:26 +02:00
|
|
|
// This setting became available in Chromium 48.
|
|
|
|
if ( typeof cpn.webRTCIPHandlingPolicy === 'object' ) {
|
2015-08-14 01:42:30 +02:00
|
|
|
try {
|
2016-10-19 16:20:26 +02:00
|
|
|
if ( setting ) {
|
|
|
|
cpn.webRTCIPHandlingPolicy.clear({
|
2016-10-05 12:52:43 +02:00
|
|
|
scope: 'regular'
|
|
|
|
}, this.noopCallback);
|
|
|
|
} else {
|
2017-03-27 16:09:10 +02:00
|
|
|
// https://github.com/uBlockOrigin/uAssets/issues/333#issuecomment-289426678
|
|
|
|
// - Leverage virtuous side-effect of strictest setting.
|
|
|
|
cpn.webRTCIPHandlingPolicy.set({
|
|
|
|
value: 'disable_non_proxied_udp',
|
|
|
|
scope: 'regular'
|
|
|
|
}, this.noopCallback);
|
2016-10-05 12:52:43 +02:00
|
|
|
}
|
2015-08-14 01:42:30 +02:00
|
|
|
} catch(ex) {
|
|
|
|
console.error(ex);
|
|
|
|
}
|
2016-10-19 16:20:26 +02:00
|
|
|
}
|
|
|
|
},
|
2015-06-02 14:26:35 +02:00
|
|
|
|
2016-10-19 16:20:26 +02:00
|
|
|
set: function(details) {
|
|
|
|
for ( var setting in details ) {
|
|
|
|
if ( details.hasOwnProperty(setting) === false ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
switch ( setting ) {
|
|
|
|
case 'prefetching':
|
|
|
|
try {
|
|
|
|
if ( !!details[setting] ) {
|
|
|
|
chrome.privacy.network.networkPredictionEnabled.clear({
|
|
|
|
scope: 'regular'
|
|
|
|
}, this.noopCallback);
|
|
|
|
} else {
|
|
|
|
chrome.privacy.network.networkPredictionEnabled.set({
|
|
|
|
value: false,
|
|
|
|
scope: 'regular'
|
|
|
|
}, this.noopCallback);
|
|
|
|
}
|
|
|
|
} catch(ex) {
|
|
|
|
console.error(ex);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'hyperlinkAuditing':
|
|
|
|
try {
|
|
|
|
if ( !!details[setting] ) {
|
|
|
|
chrome.privacy.websites.hyperlinkAuditingEnabled.clear({
|
|
|
|
scope: 'regular'
|
|
|
|
}, this.noopCallback);
|
|
|
|
} else {
|
|
|
|
chrome.privacy.websites.hyperlinkAuditingEnabled.set({
|
|
|
|
value: false,
|
|
|
|
scope: 'regular'
|
|
|
|
}, this.noopCallback);
|
|
|
|
}
|
|
|
|
} catch(ex) {
|
|
|
|
console.error(ex);
|
|
|
|
}
|
|
|
|
break;
|
2015-06-25 02:01:27 +02:00
|
|
|
|
2016-10-19 16:20:26 +02:00
|
|
|
case 'webrtcIPAddress':
|
|
|
|
this.setWebrtcIPAddress(!!details[setting]);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2015-06-01 21:03:22 +02:00
|
|
|
}
|
|
|
|
}
|
2016-10-19 16:20:26 +02:00
|
|
|
};
|
|
|
|
})();
|
2015-06-01 21:03:22 +02:00
|
|
|
|
2015-08-11 21:29:14 +02:00
|
|
|
/******************************************************************************/
|
2015-06-01 21:03:22 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
vAPI.tabs = {};
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
/******************************************************************************/
|
2015-01-20 00:42:58 +01:00
|
|
|
|
2015-04-05 18:03:14 +02:00
|
|
|
vAPI.isBehindTheSceneTabId = function(tabId) {
|
2015-01-20 00:42:58 +01:00
|
|
|
return tabId.toString() === '-1';
|
|
|
|
};
|
|
|
|
|
|
|
|
vAPI.noTabId = '-1';
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2015-04-20 14:28:19 +02:00
|
|
|
var toChromiumTabId = function(tabId) {
|
|
|
|
if ( typeof tabId === 'string' ) {
|
|
|
|
tabId = parseInt(tabId, 10);
|
|
|
|
}
|
|
|
|
if ( typeof tabId !== 'number' || isNaN(tabId) || tabId === -1 ) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return tabId;
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-03-20 20:14:56 +01:00
|
|
|
vAPI.tabs.registerListeners = function() {
|
|
|
|
var onNavigationClient = this.onNavigation || noopFunc;
|
2015-03-27 18:00:55 +01:00
|
|
|
var onUpdatedClient = this.onUpdated || noopFunc;
|
2015-03-20 20:14:56 +01:00
|
|
|
|
|
|
|
// https://developer.chrome.com/extensions/webNavigation
|
|
|
|
// [onCreatedNavigationTarget ->]
|
|
|
|
// onBeforeNavigate ->
|
|
|
|
// onCommitted ->
|
|
|
|
// onDOMContentLoaded ->
|
|
|
|
// onCompleted
|
|
|
|
|
2015-03-22 01:30:00 +01:00
|
|
|
// The chrome.webRequest.onBeforeRequest() won't be called for everything
|
|
|
|
// else than `http`/`https`. Thus, in such case, we will bind the tab as
|
|
|
|
// early as possible in order to increase the likelihood of a context
|
|
|
|
// properly setup if network requests are fired from within the tab.
|
|
|
|
// Example: Chromium + case #6 at
|
|
|
|
// http://raymondhill.net/ublock/popup.html
|
|
|
|
var reGoodForWebRequestAPI = /^https?:\/\//;
|
|
|
|
|
2016-09-15 15:06:22 +02:00
|
|
|
// https://forums.lanik.us/viewtopic.php?f=62&t=32826
|
2016-09-15 15:09:13 +02:00
|
|
|
// Chromium-based browsers: sanitize target URL. I've seen data: URI with
|
|
|
|
// newline characters in standard fields, possibly as a way of evading
|
|
|
|
// filters. As per spec, there should be no whitespaces in a data: URI's
|
2016-09-15 15:06:22 +02:00
|
|
|
// standard fields.
|
|
|
|
var sanitizeURL = function(url) {
|
|
|
|
if ( url.startsWith('data:') === false ) { return url; }
|
|
|
|
var pos = url.indexOf(',');
|
|
|
|
if ( pos === -1 ) { return url; }
|
|
|
|
var s = url.slice(0, pos);
|
|
|
|
if ( s.search(/\s/) === -1 ) { return url; }
|
|
|
|
return s.replace(/\s+/, '') + url.slice(pos);
|
|
|
|
};
|
|
|
|
|
2015-03-20 20:14:56 +01:00
|
|
|
var onCreatedNavigationTarget = function(details) {
|
2017-09-26 22:09:35 +02:00
|
|
|
if ( typeof details.url !== 'string' ) {
|
|
|
|
details.url = '';
|
|
|
|
}
|
2015-03-22 01:30:00 +01:00
|
|
|
if ( reGoodForWebRequestAPI.test(details.url) === false ) {
|
|
|
|
details.frameId = 0;
|
2016-09-15 15:06:22 +02:00
|
|
|
details.url = sanitizeURL(details.url);
|
2015-03-22 01:30:00 +01:00
|
|
|
onNavigationClient(details);
|
|
|
|
}
|
2015-12-01 21:07:22 +01:00
|
|
|
if ( typeof vAPI.tabs.onPopupCreated === 'function' ) {
|
2017-09-26 22:09:35 +02:00
|
|
|
vAPI.tabs.onPopupCreated(
|
|
|
|
details.tabId.toString(),
|
|
|
|
details.sourceTabId.toString()
|
|
|
|
);
|
2015-12-01 21:07:22 +01:00
|
|
|
}
|
2015-03-20 20:14:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
var onBeforeNavigate = function(details) {
|
2015-03-22 01:30:00 +01:00
|
|
|
if ( details.frameId !== 0 ) {
|
|
|
|
return;
|
2015-03-21 04:37:43 +01:00
|
|
|
}
|
2015-03-20 20:14:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
var onCommitted = function(details) {
|
2015-03-22 01:30:00 +01:00
|
|
|
if ( details.frameId !== 0 ) {
|
|
|
|
return;
|
2015-03-20 20:14:56 +01:00
|
|
|
}
|
2016-09-15 15:06:22 +02:00
|
|
|
details.url = sanitizeURL(details.url);
|
2015-03-20 20:14:56 +01:00
|
|
|
onNavigationClient(details);
|
|
|
|
};
|
|
|
|
|
2016-01-17 19:30:43 +01:00
|
|
|
var onActivated = function(details) {
|
2017-07-25 01:25:49 +02:00
|
|
|
if ( vAPI.contextMenu instanceof Object ) {
|
|
|
|
vAPI.contextMenu.onMustUpdate(details.tabId);
|
|
|
|
}
|
2016-01-17 19:30:43 +01:00
|
|
|
};
|
|
|
|
|
2017-09-30 13:56:35 +02:00
|
|
|
// https://github.com/gorhill/uBlock/issues/3073
|
|
|
|
// - Fall back to `tab.url` when `changeInfo.url` is not set.
|
2016-01-17 19:30:43 +01:00
|
|
|
var onUpdated = function(tabId, changeInfo, tab) {
|
2017-09-30 14:07:10 +02:00
|
|
|
if ( typeof changeInfo.url !== 'string' ) {
|
|
|
|
changeInfo.url = tab && tab.url;
|
|
|
|
}
|
2016-09-15 15:06:22 +02:00
|
|
|
if ( changeInfo.url ) {
|
|
|
|
changeInfo.url = sanitizeURL(changeInfo.url);
|
|
|
|
}
|
2016-10-23 00:10:49 +02:00
|
|
|
onUpdatedClient(tabId.toString(), changeInfo, tab);
|
2016-01-17 19:30:43 +01:00
|
|
|
};
|
|
|
|
|
2015-03-20 20:14:56 +01:00
|
|
|
chrome.webNavigation.onBeforeNavigate.addListener(onBeforeNavigate);
|
|
|
|
chrome.webNavigation.onCommitted.addListener(onCommitted);
|
2016-10-19 16:20:26 +02:00
|
|
|
// Not supported on Firefox WebExtensions yet.
|
|
|
|
if ( chrome.webNavigation.onCreatedNavigationTarget instanceof Object ) {
|
|
|
|
chrome.webNavigation.onCreatedNavigationTarget.addListener(onCreatedNavigationTarget);
|
|
|
|
}
|
2016-01-17 19:30:43 +01:00
|
|
|
chrome.tabs.onActivated.addListener(onActivated);
|
2015-03-27 18:00:55 +01:00
|
|
|
chrome.tabs.onUpdated.addListener(onUpdated);
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
if ( typeof this.onClosed === 'function' ) {
|
|
|
|
chrome.tabs.onRemoved.addListener(this.onClosed);
|
|
|
|
}
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
};
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
/******************************************************************************/
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
vAPI.tabs.get = function(tabId, callback) {
|
2014-11-21 02:18:33 +01:00
|
|
|
var onTabReady = function(tab) {
|
|
|
|
// https://code.google.com/p/chromium/issues/detail?id=410868#c8
|
|
|
|
if ( chrome.runtime.lastError ) {
|
2015-01-21 14:59:23 +01:00
|
|
|
/* noop */
|
2014-11-21 02:18:33 +01:00
|
|
|
}
|
2015-01-02 19:42:35 +01:00
|
|
|
// Caller must be prepared to deal with nil tab value
|
2014-11-21 02:18:33 +01:00
|
|
|
callback(tab);
|
2014-11-24 15:48:33 +01:00
|
|
|
};
|
2015-04-20 14:28:19 +02:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
if ( tabId !== null ) {
|
2015-04-20 14:28:19 +02:00
|
|
|
tabId = toChromiumTabId(tabId);
|
|
|
|
if ( tabId === 0 ) {
|
2015-04-13 00:32:35 +02:00
|
|
|
onTabReady(null);
|
2015-04-13 00:56:26 +02:00
|
|
|
} else {
|
|
|
|
chrome.tabs.get(tabId, onTabReady);
|
2015-04-13 00:32:35 +02:00
|
|
|
}
|
2014-11-16 14:09:28 +01:00
|
|
|
return;
|
|
|
|
}
|
2015-04-20 14:28:19 +02:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
var onTabReceived = function(tabs) {
|
2014-11-21 02:18:33 +01:00
|
|
|
// https://code.google.com/p/chromium/issues/detail?id=410868#c8
|
2016-01-17 19:30:43 +01:00
|
|
|
void chrome.runtime.lastError;
|
2014-11-16 14:09:28 +01:00
|
|
|
callback(tabs[0]);
|
|
|
|
};
|
|
|
|
chrome.tabs.query({ active: true, currentWindow: true }, onTabReceived);
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
// properties of the details object:
|
|
|
|
// url: 'URL', // the address that will be opened
|
|
|
|
// tabId: 1, // the tab is used if set, instead of creating a new one
|
|
|
|
// index: -1, // undefined: end of the list, -1: following tab, or after index
|
|
|
|
// active: false, // opens the tab in background - true and undefined: foreground
|
2015-07-01 18:18:03 +02:00
|
|
|
// select: true, // if a tab is already opened with that url, then select it instead of opening a new one
|
|
|
|
// popup: true // open in a new window
|
2014-11-16 14:09:28 +01:00
|
|
|
|
|
|
|
vAPI.tabs.open = function(details) {
|
2014-11-16 20:04:37 +01:00
|
|
|
var targetURL = details.url;
|
|
|
|
if ( typeof targetURL !== 'string' || targetURL === '' ) {
|
2014-11-16 14:09:28 +01:00
|
|
|
return null;
|
|
|
|
}
|
2015-08-01 17:30:54 +02:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
// extension pages
|
2014-11-16 20:04:37 +01:00
|
|
|
if ( /^[\w-]{2,}:/.test(targetURL) !== true ) {
|
|
|
|
targetURL = vAPI.getURL(targetURL);
|
2014-11-16 14:09:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// dealing with Chrome's asynchronous API
|
|
|
|
var wrapper = function() {
|
|
|
|
if ( details.active === undefined ) {
|
|
|
|
details.active = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
var subWrapper = function() {
|
|
|
|
var _details = {
|
2014-11-16 20:04:37 +01:00
|
|
|
url: targetURL,
|
2014-11-16 14:09:28 +01:00
|
|
|
active: !!details.active
|
2014-11-15 19:15:11 +01:00
|
|
|
};
|
|
|
|
|
2015-03-12 15:07:55 +01:00
|
|
|
// Opening a tab from incognito window won't focus the window
|
|
|
|
// in which the tab was opened
|
|
|
|
var focusWindow = function(tab) {
|
|
|
|
if ( tab.active ) {
|
|
|
|
chrome.windows.update(tab.windowId, { focused: true });
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-03-12 14:07:16 +01:00
|
|
|
if ( !details.tabId ) {
|
2014-11-16 14:09:28 +01:00
|
|
|
if ( details.index !== undefined ) {
|
|
|
|
_details.index = details.index;
|
|
|
|
}
|
|
|
|
|
2015-03-12 15:07:55 +01:00
|
|
|
chrome.tabs.create(_details, focusWindow);
|
2015-03-12 14:07:16 +01:00
|
|
|
return;
|
2014-11-15 19:15:11 +01:00
|
|
|
}
|
|
|
|
|
2015-03-12 14:07:16 +01:00
|
|
|
// update doesn't accept index, must use move
|
2015-04-20 14:28:19 +02:00
|
|
|
chrome.tabs.update(toChromiumTabId(details.tabId), _details, function(tab) {
|
2015-03-12 14:07:16 +01:00
|
|
|
// if the tab doesn't exist
|
|
|
|
if ( vAPI.lastError() ) {
|
2015-03-12 15:07:55 +01:00
|
|
|
chrome.tabs.create(_details, focusWindow);
|
2015-03-12 14:07:16 +01:00
|
|
|
} else if ( details.index !== undefined ) {
|
|
|
|
chrome.tabs.move(tab.id, {index: details.index});
|
2014-11-15 19:15:11 +01:00
|
|
|
}
|
|
|
|
});
|
2015-03-12 14:07:16 +01:00
|
|
|
};
|
|
|
|
|
2015-07-01 18:18:03 +02:00
|
|
|
// Open in a standalone window
|
|
|
|
if ( details.popup === true ) {
|
2017-01-07 16:57:16 +01:00
|
|
|
chrome.windows.create({ url: details.url, type: 'popup' });
|
2015-07-01 18:18:03 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-12 14:07:16 +01:00
|
|
|
if ( details.index !== -1 ) {
|
2014-11-16 14:09:28 +01:00
|
|
|
subWrapper();
|
2015-03-12 14:07:16 +01:00
|
|
|
return;
|
2014-11-15 19:15:11 +01:00
|
|
|
}
|
2014-11-16 14:09:28 +01:00
|
|
|
|
2015-03-12 14:07:16 +01:00
|
|
|
vAPI.tabs.get(null, function(tab) {
|
|
|
|
if ( tab ) {
|
|
|
|
details.index = tab.index + 1;
|
|
|
|
} else {
|
|
|
|
delete details.index;
|
2014-11-16 14:09:28 +01:00
|
|
|
}
|
2015-03-12 14:07:16 +01:00
|
|
|
|
|
|
|
subWrapper();
|
2014-11-16 14:09:28 +01:00
|
|
|
});
|
2015-03-12 14:07:16 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
if ( !details.select ) {
|
2014-11-16 14:09:28 +01:00
|
|
|
wrapper();
|
2015-03-12 14:07:16 +01:00
|
|
|
return;
|
2014-11-16 14:09:28 +01:00
|
|
|
}
|
2015-03-12 14:07:16 +01:00
|
|
|
|
2017-09-26 22:09:35 +02:00
|
|
|
// https://github.com/gorhill/uBlock/issues/3053#issuecomment-332276818
|
|
|
|
// - Do not try to lookup uBO's own pages with FF 55 or less.
|
|
|
|
if ( /^Mozilla-Firefox-5[2-5]\./.test(vAPI.webextFlavor) ) {
|
|
|
|
wrapper();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-08-01 17:30:54 +02:00
|
|
|
// https://developer.chrome.com/extensions/tabs#method-query
|
|
|
|
// "Note that fragment identifiers are not matched."
|
|
|
|
// It's a lie, fragment identifiers ARE matched. So we need to remove the
|
|
|
|
// fragment.
|
2017-09-26 22:09:35 +02:00
|
|
|
var pos = targetURL.indexOf('#'),
|
|
|
|
targetURLWithoutHash = pos === -1 ? targetURL : targetURL.slice(0, pos);
|
2015-08-01 17:30:54 +02:00
|
|
|
|
|
|
|
chrome.tabs.query({ url: targetURLWithoutHash }, function(tabs) {
|
2017-07-03 15:51:34 +02:00
|
|
|
if ( chrome.runtime.lastError ) { /* noop */ }
|
2017-07-04 15:33:03 +02:00
|
|
|
var tab = Array.isArray(tabs) && tabs[0];
|
2015-08-01 17:30:54 +02:00
|
|
|
if ( !tab ) {
|
2015-03-12 14:07:16 +01:00
|
|
|
wrapper();
|
2015-08-01 17:30:54 +02:00
|
|
|
return;
|
2015-03-12 14:07:16 +01:00
|
|
|
}
|
2015-08-01 17:30:54 +02:00
|
|
|
var _details = {
|
|
|
|
active: true,
|
|
|
|
url: undefined
|
|
|
|
};
|
|
|
|
if ( targetURL !== tab.url ) {
|
|
|
|
_details.url = targetURL;
|
|
|
|
}
|
|
|
|
chrome.tabs.update(tab.id, _details, function(tab) {
|
|
|
|
chrome.windows.update(tab.windowId, { focused: true });
|
|
|
|
});
|
2015-03-12 14:07:16 +01:00
|
|
|
});
|
2014-11-16 14:09:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-03-27 18:00:55 +01:00
|
|
|
// Replace the URL of a tab. Noop if the tab does not exist.
|
|
|
|
|
|
|
|
vAPI.tabs.replace = function(tabId, url) {
|
2015-04-20 14:28:19 +02:00
|
|
|
tabId = toChromiumTabId(tabId);
|
|
|
|
if ( tabId === 0 ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-27 18:00:55 +01:00
|
|
|
var targetURL = url;
|
|
|
|
|
|
|
|
// extension pages
|
|
|
|
if ( /^[\w-]{2,}:/.test(targetURL) !== true ) {
|
|
|
|
targetURL = vAPI.getURL(targetURL);
|
|
|
|
}
|
|
|
|
|
|
|
|
chrome.tabs.update(tabId, { url: targetURL }, function() {
|
2015-04-20 14:28:19 +02:00
|
|
|
// https://code.google.com/p/chromium/issues/detail?id=410868#c8
|
2015-03-27 18:00:55 +01:00
|
|
|
if ( chrome.runtime.lastError ) {
|
2015-04-20 14:28:19 +02:00
|
|
|
/* noop */
|
2015-03-27 18:00:55 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
vAPI.tabs.remove = function(tabId) {
|
2015-04-20 14:28:19 +02:00
|
|
|
tabId = toChromiumTabId(tabId);
|
|
|
|
if ( tabId === 0 ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
var onTabRemoved = function() {
|
2015-04-20 14:28:19 +02:00
|
|
|
// https://code.google.com/p/chromium/issues/detail?id=410868#c8
|
|
|
|
if ( chrome.runtime.lastError ) {
|
|
|
|
/* noop */
|
2014-11-15 19:15:11 +01:00
|
|
|
}
|
2014-11-16 14:09:28 +01:00
|
|
|
};
|
2015-04-20 14:28:19 +02:00
|
|
|
|
|
|
|
chrome.tabs.remove(tabId, onTabRemoved);
|
2014-11-16 14:09:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-01-21 14:59:23 +01:00
|
|
|
vAPI.tabs.reload = function(tabId /*, flags*/) {
|
2015-04-20 14:28:19 +02:00
|
|
|
tabId = toChromiumTabId(tabId);
|
|
|
|
if ( tabId === 0 ) {
|
|
|
|
return;
|
2015-01-06 14:01:15 +01:00
|
|
|
}
|
2015-04-20 14:28:19 +02:00
|
|
|
|
|
|
|
var onReloaded = function() {
|
|
|
|
// https://code.google.com/p/chromium/issues/detail?id=410868#c8
|
|
|
|
if ( chrome.runtime.lastError ) {
|
|
|
|
/* noop */
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
chrome.tabs.reload(tabId, onReloaded);
|
2015-01-06 14:01:15 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-05-25 00:50:09 +02:00
|
|
|
// Select a specific tab.
|
|
|
|
|
|
|
|
vAPI.tabs.select = function(tabId) {
|
|
|
|
tabId = toChromiumTabId(tabId);
|
|
|
|
if ( tabId === 0 ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
chrome.tabs.update(tabId, { active: true }, function(tab) {
|
|
|
|
if ( chrome.runtime.lastError ) {
|
|
|
|
/* noop */
|
|
|
|
}
|
|
|
|
if ( !tab ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
chrome.windows.update(tab.windowId, { focused: true });
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
vAPI.tabs.injectScript = function(tabId, details, callback) {
|
2014-11-20 04:36:06 +01:00
|
|
|
var onScriptExecuted = function() {
|
2014-11-21 02:18:33 +01:00
|
|
|
// https://code.google.com/p/chromium/issues/detail?id=410868#c8
|
2014-11-20 04:36:06 +01:00
|
|
|
if ( chrome.runtime.lastError ) {
|
2015-04-20 14:28:19 +02:00
|
|
|
/* noop */
|
2014-11-20 04:36:06 +01:00
|
|
|
}
|
|
|
|
if ( typeof callback === 'function' ) {
|
|
|
|
callback();
|
|
|
|
}
|
|
|
|
};
|
2014-11-16 14:09:28 +01:00
|
|
|
if ( tabId ) {
|
2015-04-20 14:28:19 +02:00
|
|
|
chrome.tabs.executeScript(toChromiumTabId(tabId), details, onScriptExecuted);
|
2014-11-16 14:09:28 +01:00
|
|
|
} else {
|
2014-11-20 04:36:06 +01:00
|
|
|
chrome.tabs.executeScript(details, onScriptExecuted);
|
2014-11-15 19:15:11 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-08-11 21:29:14 +02:00
|
|
|
/******************************************************************************/
|
2014-11-15 19:15:11 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
// Must read: https://code.google.com/p/chromium/issues/detail?id=410868#c8
|
|
|
|
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/19
|
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/207
|
2014-11-15 19:15:11 +01:00
|
|
|
// Since we may be called asynchronously, the tab id may not exist
|
|
|
|
// anymore, so this ensures it does still exist.
|
|
|
|
|
2017-07-24 17:35:22 +02:00
|
|
|
// https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/browserAction#Browser_compatibility
|
|
|
|
// Firefox for Android does no support browser.browserAction.setIcon().
|
|
|
|
|
|
|
|
vAPI.setIcon = (function() {
|
2017-07-25 15:16:48 +02:00
|
|
|
var browserAction = chrome.browserAction,
|
|
|
|
titleTemplate = chrome.runtime.getManifest().name + ' ({badge})';
|
2017-07-24 17:35:22 +02:00
|
|
|
var iconPaths = [
|
|
|
|
{
|
|
|
|
'19': 'img/browsericons/icon19-off.png',
|
|
|
|
'38': 'img/browsericons/icon38-off.png'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'19': 'img/browsericons/icon19.png',
|
|
|
|
'38': 'img/browsericons/icon38.png'
|
2014-11-15 19:15:11 +01:00
|
|
|
}
|
2017-07-24 17:35:22 +02:00
|
|
|
];
|
|
|
|
|
2017-09-06 01:51:16 +02:00
|
|
|
var onTabReady = function(tab, status, badge) {
|
|
|
|
if ( vAPI.lastError() || !tab ) { return; }
|
2017-07-24 17:35:22 +02:00
|
|
|
|
2017-07-25 15:16:48 +02:00
|
|
|
if ( browserAction.setIcon !== undefined ) {
|
2017-09-06 01:51:16 +02:00
|
|
|
browserAction.setIcon({
|
|
|
|
tabId: tab.id,
|
|
|
|
path: iconPaths[status === 'on' ? 1 : 0]
|
|
|
|
});
|
|
|
|
browserAction.setBadgeText({
|
|
|
|
tabId: tab.id,
|
|
|
|
text: badge
|
|
|
|
});
|
|
|
|
if ( badge !== '' ) {
|
|
|
|
browserAction.setBadgeBackgroundColor({
|
|
|
|
tabId: tab.id,
|
|
|
|
color: '#666'
|
|
|
|
});
|
|
|
|
}
|
2017-07-25 15:16:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( browserAction.setTitle !== undefined ) {
|
|
|
|
browserAction.setTitle({
|
2017-09-06 01:51:16 +02:00
|
|
|
tabId: tab.id,
|
2017-07-24 17:35:22 +02:00
|
|
|
title: titleTemplate.replace(
|
|
|
|
'{badge}',
|
2017-09-06 01:51:16 +02:00
|
|
|
status === 'on' ? (badge !== '' ? badge : '0') : 'off'
|
2017-07-24 17:35:22 +02:00
|
|
|
)
|
2014-12-26 21:41:44 +01:00
|
|
|
});
|
2014-11-15 19:15:11 +01:00
|
|
|
}
|
2017-09-06 01:51:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
return function(tabId, iconStatus, badge) {
|
|
|
|
tabId = toChromiumTabId(tabId);
|
|
|
|
if ( tabId === 0 ) { return; }
|
|
|
|
|
|
|
|
chrome.tabs.get(tabId, function(tab) {
|
|
|
|
onTabReady(tab, iconStatus, badge);
|
|
|
|
});
|
2014-12-26 21:41:44 +01:00
|
|
|
|
2017-07-25 01:25:49 +02:00
|
|
|
if ( vAPI.contextMenu instanceof Object ) {
|
|
|
|
vAPI.contextMenu.onMustUpdate(tabId);
|
|
|
|
}
|
2017-07-24 17:35:22 +02:00
|
|
|
};
|
|
|
|
})();
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2017-07-25 01:25:49 +02:00
|
|
|
chrome.browserAction.onClicked.addListener(function(tab) {
|
|
|
|
vAPI.tabs.open({
|
|
|
|
select: true,
|
|
|
|
url: 'popup.html?tabId=' + tab.id + '&mobile=1'
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-08-11 21:29:14 +02:00
|
|
|
/******************************************************************************/
|
2014-11-15 19:15:11 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
vAPI.messaging = {
|
2017-10-25 17:27:16 +02:00
|
|
|
ports: new Map(),
|
2014-11-15 19:15:11 +01:00
|
|
|
listeners: {},
|
2014-11-16 14:09:28 +01:00
|
|
|
defaultHandler: null,
|
2015-01-21 01:39:13 +01:00
|
|
|
NOOPFUNC: noopFunc,
|
2014-11-16 14:09:28 +01:00
|
|
|
UNHANDLED: 'vAPI.messaging.notHandled'
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-06-29 16:46:20 +02:00
|
|
|
vAPI.messaging.listen = function(listenerName, callback) {
|
|
|
|
this.listeners[listenerName] = callback;
|
2015-06-26 06:08:41 +02:00
|
|
|
};
|
|
|
|
|
2015-06-29 16:46:20 +02:00
|
|
|
/******************************************************************************/
|
2015-06-26 06:08:41 +02:00
|
|
|
|
2015-06-29 16:46:20 +02:00
|
|
|
vAPI.messaging.onPortMessage = (function() {
|
2017-07-23 17:33:39 +02:00
|
|
|
var messaging = vAPI.messaging,
|
2017-10-25 17:27:16 +02:00
|
|
|
toAuxPending = new Map();
|
2015-06-26 06:08:41 +02:00
|
|
|
|
2017-10-22 18:48:13 +02:00
|
|
|
var supportsUserStylesheets = vAPI.supportsUserStylesheets;
|
2017-09-16 16:55:28 +02:00
|
|
|
|
2015-06-29 16:46:20 +02:00
|
|
|
// Use a wrapper to avoid closure and to allow reuse.
|
|
|
|
var CallbackWrapper = function(port, request, timeout) {
|
|
|
|
this.callback = this.proxy.bind(this); // bind once
|
|
|
|
this.init(port, request, timeout);
|
|
|
|
};
|
|
|
|
|
2017-10-25 17:27:16 +02:00
|
|
|
CallbackWrapper.prototype = {
|
|
|
|
timerId: null,
|
|
|
|
init: function(port, request, timeout) {
|
|
|
|
this.port = port;
|
|
|
|
this.request = request;
|
|
|
|
if ( timeout !== undefined ) {
|
|
|
|
this.timerId = vAPI.setTimeout(this.callback, timeout);
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
proxy: function(response) {
|
|
|
|
if ( this.timerId !== null ) {
|
|
|
|
clearTimeout(this.timerId);
|
|
|
|
toAuxPending.delete(this.timerId);
|
|
|
|
this.timerId = null;
|
|
|
|
}
|
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/383
|
|
|
|
if ( messaging.ports.has(this.port.name) ) {
|
|
|
|
this.port.postMessage({
|
|
|
|
auxProcessId: this.request.auxProcessId,
|
|
|
|
channelName: this.request.channelName,
|
|
|
|
msg: response !== undefined ? response : null
|
|
|
|
});
|
|
|
|
}
|
|
|
|
// Mark for reuse
|
|
|
|
this.port = this.request = null;
|
|
|
|
callbackWrapperJunkyard.push(this);
|
2015-06-29 16:46:20 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var callbackWrapperJunkyard = [];
|
2015-06-26 06:08:41 +02:00
|
|
|
|
2015-06-29 16:46:20 +02:00
|
|
|
var callbackWrapperFactory = function(port, request, timeout) {
|
|
|
|
var wrapper = callbackWrapperJunkyard.pop();
|
|
|
|
if ( wrapper ) {
|
|
|
|
return wrapper.init(port, request, timeout);
|
|
|
|
}
|
|
|
|
return new CallbackWrapper(port, request, timeout);
|
|
|
|
};
|
|
|
|
|
|
|
|
var toAux = function(details, portFrom) {
|
2017-07-23 17:33:39 +02:00
|
|
|
var port, portTo,
|
|
|
|
chromiumTabId = toChromiumTabId(details.toTabId);
|
2015-06-29 16:46:20 +02:00
|
|
|
|
|
|
|
// TODO: This could be an issue with a lot of tabs: easy to address
|
|
|
|
// with a port name to tab id map.
|
2017-10-25 17:27:16 +02:00
|
|
|
// When sending to an auxiliary process, the target is always the
|
|
|
|
// port associated with the root frame.
|
|
|
|
for ( var entry of messaging.ports ) {
|
|
|
|
port = entry[1];
|
2015-07-06 15:07:51 +02:00
|
|
|
if ( port.sender.frameId === 0 && port.sender.tab.id === chromiumTabId ) {
|
|
|
|
portTo = port;
|
2015-06-29 16:46:20 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var wrapper;
|
|
|
|
if ( details.auxProcessId !== undefined ) {
|
|
|
|
wrapper = callbackWrapperFactory(portFrom, details, 1023);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Destination not found:
|
|
|
|
if ( portTo === undefined ) {
|
|
|
|
if ( wrapper !== undefined ) {
|
|
|
|
wrapper.callback();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( wrapper !== undefined ) {
|
2017-10-25 17:27:16 +02:00
|
|
|
toAuxPending.set(wrapper.timerId, wrapper);
|
2015-06-29 16:46:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
portTo.postMessage({
|
|
|
|
mainProcessId: wrapper && wrapper.timerId,
|
|
|
|
channelName: details.toChannel,
|
|
|
|
msg: details.msg
|
2015-06-26 06:08:41 +02:00
|
|
|
});
|
2015-06-29 16:46:20 +02:00
|
|
|
};
|
2015-06-26 06:08:41 +02:00
|
|
|
|
2015-06-29 16:46:20 +02:00
|
|
|
var toAuxResponse = function(details) {
|
|
|
|
var mainProcessId = details.mainProcessId;
|
2017-10-25 17:27:16 +02:00
|
|
|
if ( mainProcessId === undefined ) { return; }
|
|
|
|
var wrapper = toAuxPending.get(mainProcessId);
|
|
|
|
if ( wrapper === undefined ) { return; }
|
|
|
|
toAuxPending.delete(mainProcessId);
|
2015-06-29 16:46:20 +02:00
|
|
|
wrapper.callback(details.msg);
|
|
|
|
};
|
2015-06-26 06:08:41 +02:00
|
|
|
|
2017-07-23 17:33:39 +02:00
|
|
|
var toFramework = function(msg, sender) {
|
|
|
|
var tabId = sender && sender.tab && sender.tab.id;
|
|
|
|
if ( !tabId ) { return; }
|
|
|
|
switch ( msg.what ) {
|
|
|
|
case 'userCSS':
|
2017-09-03 00:27:03 +02:00
|
|
|
var details = {
|
|
|
|
code: undefined,
|
|
|
|
frameId: sender.frameId,
|
|
|
|
matchAboutBlank: true
|
|
|
|
};
|
2017-09-16 16:55:28 +02:00
|
|
|
if ( supportsUserStylesheets ) {
|
2017-09-03 00:27:03 +02:00
|
|
|
details.cssOrigin = 'user';
|
|
|
|
}
|
2017-09-06 01:51:16 +02:00
|
|
|
if ( msg.add ) {
|
2017-09-03 00:27:03 +02:00
|
|
|
details.runAt = 'document_start';
|
2017-09-06 01:51:16 +02:00
|
|
|
}
|
2017-10-21 19:43:46 +02:00
|
|
|
var cssText;
|
|
|
|
for ( cssText of msg.add ) {
|
|
|
|
details.code = cssText;
|
|
|
|
chrome.tabs.insertCSS(tabId, details);
|
2017-09-06 01:51:16 +02:00
|
|
|
}
|
2017-10-21 19:43:46 +02:00
|
|
|
for ( cssText of msg.remove ) {
|
|
|
|
details.code = cssText;
|
|
|
|
chrome.tabs.removeCSS(tabId, details);
|
2017-07-23 17:33:39 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-06-29 16:46:20 +02:00
|
|
|
return function(request, port) {
|
|
|
|
// Auxiliary process to auxiliary process
|
|
|
|
if ( request.toTabId !== undefined ) {
|
|
|
|
toAux(request, port);
|
|
|
|
return;
|
|
|
|
}
|
2014-11-16 14:09:28 +01:00
|
|
|
|
2015-06-29 16:46:20 +02:00
|
|
|
// Auxiliary process to auxiliary process: response
|
|
|
|
if ( request.mainProcessId !== undefined ) {
|
|
|
|
toAuxResponse(request);
|
|
|
|
return;
|
|
|
|
}
|
2014-11-16 14:09:28 +01:00
|
|
|
|
2017-07-23 17:33:39 +02:00
|
|
|
// Content process to main process: framework handler.
|
|
|
|
// No callback supported/needed for now.
|
|
|
|
if ( request.channelName === 'vapi-background' ) {
|
|
|
|
toFramework(request.msg, port.sender);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-06-29 16:46:20 +02:00
|
|
|
// Auxiliary process to main process: prepare response
|
2017-10-25 17:27:16 +02:00
|
|
|
var callback = this.NOOPFUNC;
|
2015-06-29 16:46:20 +02:00
|
|
|
if ( request.auxProcessId !== undefined ) {
|
|
|
|
callback = callbackWrapperFactory(port, request).callback;
|
|
|
|
}
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2015-06-29 16:46:20 +02:00
|
|
|
// Auxiliary process to main process: specific handler
|
2017-10-25 17:27:16 +02:00
|
|
|
var r = this.UNHANDLED,
|
|
|
|
listener = this.listeners[request.channelName];
|
2015-06-29 16:46:20 +02:00
|
|
|
if ( typeof listener === 'function' ) {
|
|
|
|
r = listener(request.msg, port.sender, callback);
|
|
|
|
}
|
2017-10-25 17:27:16 +02:00
|
|
|
if ( r !== this.UNHANDLED ) { return; }
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2015-06-29 16:46:20 +02:00
|
|
|
// Auxiliary process to main process: default handler
|
2017-10-25 17:27:16 +02:00
|
|
|
r = this.defaultHandler(request.msg, port.sender, callback);
|
|
|
|
if ( r !== this.UNHANDLED ) { return; }
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2015-06-29 16:46:20 +02:00
|
|
|
// Auxiliary process to main process: no handler
|
2017-10-25 17:27:16 +02:00
|
|
|
console.error(
|
|
|
|
'vAPI.messaging.onPortMessage > unhandled request: %o',
|
|
|
|
request
|
|
|
|
);
|
2014-11-18 14:35:42 +01:00
|
|
|
|
2015-06-29 16:46:20 +02:00
|
|
|
// Need to callback anyways in case caller expected an answer, or
|
|
|
|
// else there is a memory leak on caller's side
|
|
|
|
callback();
|
2017-10-25 17:27:16 +02:00
|
|
|
}.bind(vAPI.messaging);
|
2015-06-29 16:46:20 +02:00
|
|
|
})();
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 15:49:55 +01:00
|
|
|
/******************************************************************************/
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-18 14:29:55 +01:00
|
|
|
vAPI.messaging.onPortDisconnect = function(port) {
|
2017-10-25 17:27:16 +02:00
|
|
|
port.onDisconnect.removeListener(this.onPortDisconnect);
|
|
|
|
port.onMessage.removeListener(this.onPortMessage);
|
|
|
|
this.ports.delete(port.name);
|
|
|
|
}.bind(vAPI.messaging);
|
2014-11-16 15:49:55 +01:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-11-18 14:29:55 +01:00
|
|
|
vAPI.messaging.onPortConnect = function(port) {
|
2017-10-25 17:27:16 +02:00
|
|
|
port.onDisconnect.addListener(this.onPortDisconnect);
|
|
|
|
port.onMessage.addListener(this.onPortMessage);
|
|
|
|
this.ports.set(port.name, port);
|
|
|
|
}.bind(vAPI.messaging);
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
/******************************************************************************/
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
vAPI.messaging.setup = function(defaultHandler) {
|
|
|
|
// Already setup?
|
|
|
|
if ( this.defaultHandler !== null ) {
|
|
|
|
return;
|
|
|
|
}
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
if ( typeof defaultHandler !== 'function' ) {
|
2014-11-16 17:39:38 +01:00
|
|
|
defaultHandler = function(){ return vAPI.messaging.UNHANDLED; };
|
2014-11-16 15:49:55 +01:00
|
|
|
}
|
2014-11-16 14:09:28 +01:00
|
|
|
this.defaultHandler = defaultHandler;
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-18 14:29:55 +01:00
|
|
|
chrome.runtime.onConnect.addListener(this.onPortConnect);
|
2014-11-16 14:09:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
vAPI.messaging.broadcast = function(message) {
|
|
|
|
var messageWrapper = {
|
|
|
|
broadcast: true,
|
|
|
|
msg: message
|
|
|
|
};
|
2017-10-25 17:27:16 +02:00
|
|
|
for ( var entry of this.ports ) {
|
|
|
|
entry[1].postMessage(messageWrapper);
|
2014-11-15 19:15:11 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-08-11 21:29:14 +02:00
|
|
|
/******************************************************************************/
|
2014-11-15 19:15:11 +01:00
|
|
|
/******************************************************************************/
|
2015-02-01 15:03:43 +01:00
|
|
|
|
2017-07-24 17:35:22 +02:00
|
|
|
// https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/contextMenus#Browser_compatibility
|
|
|
|
// Firefox for Android does no support browser.contextMenus.
|
|
|
|
|
|
|
|
vAPI.contextMenu = chrome.contextMenus && {
|
2016-01-17 19:30:43 +01:00
|
|
|
_callback: null,
|
|
|
|
_entries: [],
|
|
|
|
_createEntry: function(entry) {
|
|
|
|
chrome.contextMenus.create(JSON.parse(JSON.stringify(entry)), function() {
|
|
|
|
void chrome.runtime.lastError;
|
|
|
|
});
|
2014-11-15 19:15:11 +01:00
|
|
|
},
|
2016-01-17 19:30:43 +01:00
|
|
|
onMustUpdate: function() {},
|
|
|
|
setEntries: function(entries, callback) {
|
|
|
|
entries = entries || [];
|
|
|
|
var n = Math.max(this._entries.length, entries.length),
|
|
|
|
oldEntryId, newEntry;
|
|
|
|
for ( var i = 0; i < n; i++ ) {
|
|
|
|
oldEntryId = this._entries[i];
|
|
|
|
newEntry = entries[i];
|
|
|
|
if ( oldEntryId && newEntry ) {
|
|
|
|
if ( newEntry.id !== oldEntryId ) {
|
|
|
|
chrome.contextMenus.remove(oldEntryId);
|
|
|
|
this._createEntry(newEntry);
|
|
|
|
this._entries[i] = newEntry.id;
|
|
|
|
}
|
|
|
|
} else if ( oldEntryId && !newEntry ) {
|
|
|
|
chrome.contextMenus.remove(oldEntryId);
|
|
|
|
} else if ( !oldEntryId && newEntry ) {
|
|
|
|
this._createEntry(newEntry);
|
|
|
|
this._entries[i] = newEntry.id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
n = this._entries.length = entries.length;
|
|
|
|
callback = callback || null;
|
|
|
|
if ( callback === this._callback ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ( n !== 0 && callback !== null ) {
|
|
|
|
chrome.contextMenus.onClicked.addListener(callback);
|
|
|
|
this._callback = callback;
|
|
|
|
} else if ( n === 0 && this._callback !== null ) {
|
|
|
|
chrome.contextMenus.onClicked.removeListener(this._callback);
|
|
|
|
this._callback = null;
|
|
|
|
}
|
2014-11-15 19:15:11 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-08-11 21:29:14 +02:00
|
|
|
/******************************************************************************/
|
2014-11-15 19:15:11 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2017-05-27 17:51:24 +02:00
|
|
|
vAPI.commands = chrome.commands;
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-11-15 19:15:11 +01:00
|
|
|
vAPI.lastError = function() {
|
|
|
|
return chrome.runtime.lastError;
|
|
|
|
};
|
|
|
|
|
2015-08-11 21:29:14 +02:00
|
|
|
/******************************************************************************/
|
2014-11-15 19:15:11 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-12-17 14:02:37 +01:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
vAPI.onLoadAllCompleted = function() {
|
|
|
|
// http://code.google.com/p/chromium/issues/detail?id=410868#c11
|
|
|
|
// Need to be sure to access `vAPI.lastError()` to prevent
|
|
|
|
// spurious warnings in the console.
|
|
|
|
var scriptDone = function() {
|
|
|
|
vAPI.lastError();
|
|
|
|
};
|
|
|
|
var scriptStart = function(tabId) {
|
|
|
|
vAPI.tabs.injectScript(tabId, {
|
|
|
|
file: 'js/vapi-client.js',
|
|
|
|
allFrames: true,
|
2015-05-16 22:33:47 +02:00
|
|
|
runAt: 'document_idle'
|
2014-12-17 14:02:37 +01:00
|
|
|
}, function(){ });
|
|
|
|
vAPI.tabs.injectScript(tabId, {
|
2016-06-28 01:09:04 +02:00
|
|
|
file: 'js/contentscript.js',
|
2014-12-17 14:02:37 +01:00
|
|
|
allFrames: true,
|
2015-05-16 22:33:47 +02:00
|
|
|
runAt: 'document_idle'
|
2016-06-28 01:09:04 +02:00
|
|
|
}, scriptDone);
|
2014-12-17 14:02:37 +01:00
|
|
|
};
|
|
|
|
var bindToTabs = function(tabs) {
|
|
|
|
var µb = µBlock;
|
|
|
|
var i = tabs.length, tab;
|
|
|
|
while ( i-- ) {
|
|
|
|
tab = tabs[i];
|
2015-04-09 00:46:08 +02:00
|
|
|
µb.tabContextManager.commit(tab.id, tab.url);
|
|
|
|
µb.bindTabToPageStats(tab.id);
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/129
|
2016-11-03 16:20:47 +01:00
|
|
|
if ( /^https?:\/\//.test(tab.url) ) {
|
|
|
|
scriptStart(tab.id);
|
|
|
|
}
|
2014-12-17 14:02:37 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-05-02 06:13:19 +02:00
|
|
|
chrome.tabs.query({ url: '<all_urls>' }, bindToTabs);
|
2014-12-17 14:02:37 +01:00
|
|
|
};
|
|
|
|
|
2015-08-11 21:29:14 +02:00
|
|
|
/******************************************************************************/
|
2014-12-17 14:02:37 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-01-14 23:45:55 +01:00
|
|
|
vAPI.punycodeHostname = function(hostname) {
|
|
|
|
return hostname;
|
|
|
|
};
|
|
|
|
|
|
|
|
vAPI.punycodeURL = function(url) {
|
|
|
|
return url;
|
|
|
|
};
|
|
|
|
|
2015-08-11 21:29:14 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-10-21 19:30:04 +02:00
|
|
|
// https://github.com/gorhill/uBlock/issues/531
|
|
|
|
// Storage area dedicated to admin settings. Read-only.
|
|
|
|
|
2015-10-24 15:20:39 +02:00
|
|
|
// https://github.com/gorhill/uBlock/commit/43a5ed735b95a575a9339b6e71a1fcb27a99663b#commitcomment-13965030
|
|
|
|
// Not all Chromium-based browsers support managed storage. Merely testing or
|
2015-10-24 15:37:43 +02:00
|
|
|
// exception handling in this case does NOT work: I don't know why. The
|
|
|
|
// extension on Opera ends up in a non-sensical state, whereas vAPI become
|
|
|
|
// undefined out of nowhere. So only solution left is to test explicitly for
|
|
|
|
// Opera.
|
2015-11-03 13:44:18 +01:00
|
|
|
// https://github.com/gorhill/uBlock/issues/900
|
|
|
|
// Also, UC Browser: http://www.upsieutoc.com/image/WXuH
|
2015-10-24 15:20:39 +02:00
|
|
|
|
2017-07-24 17:35:22 +02:00
|
|
|
vAPI.adminStorage = chrome.storage.managed && {
|
2015-11-03 14:46:21 +01:00
|
|
|
getItem: function(key, callback) {
|
|
|
|
var onRead = function(store) {
|
|
|
|
var data;
|
|
|
|
if (
|
|
|
|
!chrome.runtime.lastError &&
|
|
|
|
typeof store === 'object' &&
|
|
|
|
store !== null
|
|
|
|
) {
|
|
|
|
data = store[key];
|
2015-10-24 15:20:39 +02:00
|
|
|
}
|
2015-11-03 14:46:21 +01:00
|
|
|
callback(data);
|
2015-10-24 15:20:39 +02:00
|
|
|
};
|
2015-11-03 14:46:21 +01:00
|
|
|
try {
|
|
|
|
chrome.storage.managed.get(key, onRead);
|
|
|
|
} catch (ex) {
|
|
|
|
callback();
|
|
|
|
}
|
|
|
|
}
|
2015-10-21 19:30:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-08-11 21:29:14 +02:00
|
|
|
vAPI.cloud = (function() {
|
2016-10-19 16:20:26 +02:00
|
|
|
// Not all platforms support `chrome.storage.sync`.
|
|
|
|
if ( chrome.storage.sync instanceof Object === false ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-08-11 21:29:14 +02:00
|
|
|
var chunkCountPerFetch = 16; // Must be a power of 2
|
|
|
|
|
|
|
|
// Mind chrome.storage.sync.MAX_ITEMS (512 at time of writing)
|
|
|
|
var maxChunkCountPerItem = Math.floor(512 * 0.75) & ~(chunkCountPerFetch - 1);
|
|
|
|
|
|
|
|
// Mind chrome.storage.sync.QUOTA_BYTES_PER_ITEM (8192 at time of writing)
|
2017-09-27 14:42:27 +02:00
|
|
|
var maxChunkSize = chrome.storage.sync.QUOTA_BYTES_PER_ITEM || 8192;
|
2015-08-11 21:29:14 +02:00
|
|
|
|
2015-10-03 15:46:45 +02:00
|
|
|
// Mind chrome.storage.sync.QUOTA_BYTES (128 kB at time of writing)
|
2017-03-05 18:12:58 +01:00
|
|
|
// Firefox:
|
|
|
|
// https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/storage/sync
|
|
|
|
// > You can store up to 100KB of data using this API/
|
|
|
|
var maxStorageSize = chrome.storage.sync.QUOTA_BYTES || 102400;
|
2015-08-11 21:29:14 +02:00
|
|
|
|
2017-09-27 14:42:27 +02:00
|
|
|
// Flavor-specific handling needs to be done here. Reason: to allow time
|
|
|
|
// for vAPI.webextFlavor to be properly set.
|
|
|
|
// https://github.com/gorhill/uBlock/issues/3006
|
|
|
|
// For Firefox, we will use a lower ratio to allow for more overhead for
|
|
|
|
// the infrastructure. Unfortunately this leads to less usable space for
|
|
|
|
// actual data, but all of this is provided for free by browser vendors,
|
|
|
|
// so we need to accept and deal with these limitations.
|
|
|
|
var initialize = function() {
|
2017-09-27 21:29:57 +02:00
|
|
|
var ratio = vAPI.webextFlavor.startsWith('Mozilla-Firefox-') ? 0.6 : 0.75;
|
2017-09-27 14:42:27 +02:00
|
|
|
maxChunkSize = Math.floor(maxChunkSize * ratio);
|
|
|
|
initialize = function(){};
|
|
|
|
};
|
|
|
|
|
2015-08-11 21:29:14 +02:00
|
|
|
var options = {
|
2015-08-12 00:48:52 +02:00
|
|
|
defaultDeviceName: window.navigator.platform,
|
2017-07-26 14:11:22 +02:00
|
|
|
deviceName: vAPI.localStorage.getItem('deviceName') || ''
|
2015-08-11 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// This is used to find out a rough count of how many chunks exists:
|
|
|
|
// We "poll" at specific index in order to get a rough idea of how
|
|
|
|
// large is the stored string.
|
|
|
|
// This allows reading a single item with only 2 sync operations -- a
|
2015-10-03 15:46:45 +02:00
|
|
|
// good thing given chrome.storage.sync.MAX_WRITE_OPERATIONS_PER_MINUTE
|
|
|
|
// and chrome.storage.sync.MAX_WRITE_OPERATIONS_PER_HOUR.
|
2015-08-12 00:48:52 +02:00
|
|
|
|
2015-08-11 21:29:14 +02:00
|
|
|
var getCoarseChunkCount = function(dataKey, callback) {
|
|
|
|
var bin = {};
|
|
|
|
for ( var i = 0; i < maxChunkCountPerItem; i += 16 ) {
|
|
|
|
bin[dataKey + i.toString()] = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
chrome.storage.sync.get(bin, function(bin) {
|
|
|
|
if ( chrome.runtime.lastError ) {
|
|
|
|
callback(0, chrome.runtime.lastError.message);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var chunkCount = 0;
|
|
|
|
for ( var i = 0; i < maxChunkCountPerItem; i += 16 ) {
|
|
|
|
if ( bin[dataKey + i.toString()] === '' ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
chunkCount = i + 16;
|
|
|
|
}
|
|
|
|
|
|
|
|
callback(chunkCount);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
var deleteChunks = function(dataKey, start) {
|
|
|
|
var keys = [];
|
|
|
|
|
|
|
|
// No point in deleting more than:
|
|
|
|
// - The max number of chunks per item
|
|
|
|
// - The max number of chunks per storage limit
|
|
|
|
var n = Math.min(
|
|
|
|
maxChunkCountPerItem,
|
|
|
|
Math.ceil(maxStorageSize / maxChunkSize)
|
|
|
|
);
|
|
|
|
for ( var i = start; i < n; i++ ) {
|
|
|
|
keys.push(dataKey + i.toString());
|
|
|
|
}
|
2017-09-29 14:49:22 +02:00
|
|
|
if ( keys.length !== 0 ) {
|
|
|
|
chrome.storage.sync.remove(keys);
|
|
|
|
}
|
2015-08-11 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
var start = function(/* dataKeys */) {
|
|
|
|
};
|
|
|
|
|
|
|
|
var push = function(dataKey, data, callback) {
|
2017-09-27 14:42:27 +02:00
|
|
|
initialize();
|
|
|
|
|
2015-08-16 14:17:01 +02:00
|
|
|
var bin = {
|
2015-08-12 00:48:52 +02:00
|
|
|
'source': options.deviceName || options.defaultDeviceName,
|
2015-08-11 21:29:14 +02:00
|
|
|
'tstamp': Date.now(),
|
2015-08-16 14:17:01 +02:00
|
|
|
'data': data,
|
|
|
|
'size': 0
|
|
|
|
};
|
|
|
|
bin.size = JSON.stringify(bin).length;
|
|
|
|
var item = JSON.stringify(bin);
|
2015-08-11 21:29:14 +02:00
|
|
|
|
2015-10-03 15:46:45 +02:00
|
|
|
// Chunkify taking into account QUOTA_BYTES_PER_ITEM:
|
2015-08-11 21:29:14 +02:00
|
|
|
// https://developer.chrome.com/extensions/storage#property-sync
|
|
|
|
// "The maximum size (in bytes) of each individual item in sync
|
|
|
|
// "storage, as measured by the JSON stringification of its value
|
|
|
|
// "plus its key length."
|
2015-08-16 14:17:01 +02:00
|
|
|
bin = {};
|
2015-08-11 21:29:14 +02:00
|
|
|
var chunkCount = Math.ceil(item.length / maxChunkSize);
|
|
|
|
for ( var i = 0; i < chunkCount; i++ ) {
|
|
|
|
bin[dataKey + i.toString()] = item.substr(i * maxChunkSize, maxChunkSize);
|
|
|
|
}
|
|
|
|
bin[dataKey + i.toString()] = ''; // Sentinel
|
|
|
|
|
|
|
|
chrome.storage.sync.set(bin, function() {
|
|
|
|
var errorStr;
|
|
|
|
if ( chrome.runtime.lastError ) {
|
|
|
|
errorStr = chrome.runtime.lastError.message;
|
2017-09-27 21:29:57 +02:00
|
|
|
// https://github.com/gorhill/uBlock/issues/3006#issuecomment-332597677
|
|
|
|
// - Delete all that was pushed in case of failure.
|
2017-09-29 14:49:22 +02:00
|
|
|
// - It's unknown whether such issue applies only to Firefox:
|
|
|
|
// until such cases are reported for other browsers, we will
|
|
|
|
// reset the (now corrupted) content of the cloud storage
|
|
|
|
// only on Firefox.
|
|
|
|
if ( vAPI.webextFlavor.startsWith('Mozilla-Firefox-') ) {
|
|
|
|
chunkCount = 0;
|
|
|
|
}
|
2015-08-11 21:29:14 +02:00
|
|
|
}
|
|
|
|
callback(errorStr);
|
|
|
|
|
|
|
|
// Remove potentially unused trailing chunks
|
|
|
|
deleteChunks(dataKey, chunkCount);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
var pull = function(dataKey, callback) {
|
2017-09-27 14:42:27 +02:00
|
|
|
initialize();
|
|
|
|
|
2015-08-11 21:29:14 +02:00
|
|
|
var assembleChunks = function(bin) {
|
|
|
|
if ( chrome.runtime.lastError ) {
|
|
|
|
callback(null, chrome.runtime.lastError.message);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Assemble chunks into a single string.
|
|
|
|
var json = [], jsonSlice;
|
|
|
|
var i = 0;
|
|
|
|
for (;;) {
|
|
|
|
jsonSlice = bin[dataKey + i.toString()];
|
|
|
|
if ( jsonSlice === '' ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
json.push(jsonSlice);
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
var entry = null;
|
|
|
|
try {
|
|
|
|
entry = JSON.parse(json.join(''));
|
|
|
|
} catch(ex) {
|
|
|
|
}
|
|
|
|
callback(entry);
|
|
|
|
};
|
|
|
|
|
|
|
|
var fetchChunks = function(coarseCount, errorStr) {
|
|
|
|
if ( coarseCount === 0 || typeof errorStr === 'string' ) {
|
|
|
|
callback(null, errorStr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var bin = {};
|
|
|
|
for ( var i = 0; i < coarseCount; i++ ) {
|
|
|
|
bin[dataKey + i.toString()] = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
chrome.storage.sync.get(bin, assembleChunks);
|
|
|
|
};
|
|
|
|
|
|
|
|
getCoarseChunkCount(dataKey, fetchChunks);
|
|
|
|
};
|
|
|
|
|
|
|
|
var getOptions = function(callback) {
|
|
|
|
if ( typeof callback !== 'function' ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
callback(options);
|
|
|
|
};
|
|
|
|
|
|
|
|
var setOptions = function(details, callback) {
|
|
|
|
if ( typeof details !== 'object' || details === null ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( typeof details.deviceName === 'string' ) {
|
2017-07-26 14:11:22 +02:00
|
|
|
vAPI.localStorage.setItem('deviceName', details.deviceName);
|
2015-08-12 00:48:52 +02:00
|
|
|
options.deviceName = details.deviceName;
|
2015-08-11 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
2015-08-12 00:48:52 +02:00
|
|
|
getOptions(callback);
|
2015-08-11 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
return {
|
|
|
|
start: start,
|
|
|
|
push: push,
|
|
|
|
pull: pull,
|
|
|
|
getOptions: getOptions,
|
|
|
|
setOptions: setOptions
|
|
|
|
};
|
|
|
|
})();
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2015-01-14 23:45:55 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-11-15 19:15:11 +01:00
|
|
|
})();
|
|
|
|
|
|
|
|
/******************************************************************************/
|