2017-07-12 18:17:04 +00:00
|
|
|
/* global BG: true, onRuntimeMessage, applyOnMessage, handleUpdate, handleDelete */
|
2017-11-08 03:46:56 +00:00
|
|
|
/* global FIREFOX: true */
|
2017-07-12 18:17:04 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
// keep message channel open for sendResponse in chrome.runtime.onMessage listener
|
|
|
|
const KEEP_CHANNEL_OPEN = true;
|
|
|
|
|
2017-11-14 07:52:54 +00:00
|
|
|
const CHROME = Boolean(chrome.app) && parseInt(navigator.userAgent.match(/Chrom\w+\/(?:\d+\.){2}(\d+)|$/)[1]);
|
|
|
|
const OPERA = CHROME && parseFloat(navigator.userAgent.match(/\bOPR\/(\d+\.\d+)|$/)[1]);
|
2017-11-25 13:24:07 +00:00
|
|
|
const ANDROID = !chrome.windows;
|
2017-11-14 07:52:54 +00:00
|
|
|
let FIREFOX = !CHROME && parseFloat(navigator.userAgent.match(/\bFirefox\/(\d+\.\d+)|$/)[1]);
|
2017-11-08 03:46:56 +00:00
|
|
|
|
2017-11-14 07:52:54 +00:00
|
|
|
if (!CHROME && !chrome.browserAction.openPopup) {
|
2017-11-08 03:46:56 +00:00
|
|
|
// in FF pre-57 legacy addons can override useragent so we assume the worst
|
|
|
|
// until we know for sure in the async getBrowserInfo()
|
|
|
|
// (browserAction.openPopup was added in 57)
|
|
|
|
FIREFOX = 50;
|
|
|
|
browser.runtime.getBrowserInfo().then(info => {
|
|
|
|
FIREFOX = parseFloat(info.version);
|
2017-12-04 16:14:04 +00:00
|
|
|
document.documentElement.classList.add('moz-appearance-bug', FIREFOX && FIREFOX < 54);
|
2017-11-08 03:46:56 +00:00
|
|
|
});
|
|
|
|
}
|
2017-07-12 18:17:04 +00:00
|
|
|
|
|
|
|
const URLS = {
|
|
|
|
ownOrigin: chrome.runtime.getURL(''),
|
|
|
|
|
|
|
|
optionsUI: [
|
2017-07-14 08:25:33 +00:00
|
|
|
chrome.runtime.getURL('options.html'),
|
2017-07-12 18:17:04 +00:00
|
|
|
'chrome://extensions/?options=' + chrome.runtime.id,
|
|
|
|
],
|
|
|
|
|
|
|
|
configureCommands:
|
|
|
|
OPERA ? 'opera://settings/configureCommands'
|
|
|
|
: 'chrome://extensions/configureCommands',
|
|
|
|
|
|
|
|
// CWS cannot be scripted in chromium, see ChromeExtensionsClient::IsScriptableURL
|
|
|
|
// https://cs.chromium.org/chromium/src/chrome/common/extensions/chrome_extensions_client.cc
|
2017-07-22 16:52:07 +00:00
|
|
|
browserWebStore:
|
|
|
|
FIREFOX ? 'https://addons.mozilla.org/' :
|
|
|
|
OPERA ? 'https://addons.opera.com/' :
|
|
|
|
'https://chrome.google.com/webstore/',
|
|
|
|
|
|
|
|
// Chrome 61.0.3161+ doesn't run content scripts on NTP https://crrev.com/2978953002/
|
|
|
|
// TODO: remove when "minimum_chrome_version": "61" or higher
|
2017-11-14 07:52:54 +00:00
|
|
|
chromeProtectsNTP: CHROME >= 3161,
|
2017-07-22 16:52:07 +00:00
|
|
|
|
2017-08-16 17:40:24 +00:00
|
|
|
supported: url => (
|
|
|
|
url.startsWith('http') && !url.startsWith(URLS.browserWebStore) ||
|
|
|
|
url.startsWith('ftp') ||
|
|
|
|
url.startsWith('file') ||
|
|
|
|
url.startsWith(URLS.ownOrigin) ||
|
|
|
|
!URLS.chromeProtectsNTP && url.startsWith('chrome://newtab/')
|
|
|
|
),
|
2017-07-12 18:17:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let BG = chrome.extension.getBackgroundPage();
|
2017-08-04 09:42:34 +00:00
|
|
|
if (BG && !BG.getStyles && BG !== window) {
|
2017-07-29 05:15:10 +00:00
|
|
|
// own page like editor/manage is being loaded on browser startup
|
|
|
|
// before the background page has been fully initialized;
|
|
|
|
// it'll be resolved in onBackgroundReady() instead
|
|
|
|
BG = null;
|
|
|
|
}
|
2017-07-16 18:02:00 +00:00
|
|
|
if (!BG || BG !== window) {
|
2017-12-07 03:52:43 +00:00
|
|
|
if (FIREFOX) {
|
|
|
|
document.documentElement.classList.add('firefox');
|
2017-12-07 03:54:51 +00:00
|
|
|
} else if (OPERA) {
|
2017-12-07 03:52:43 +00:00
|
|
|
document.documentElement.classList.add('opera');
|
2017-12-07 03:54:51 +00:00
|
|
|
} else if (chrome.app && navigator.userAgent.includes('Vivaldi')) {
|
2017-12-07 03:52:43 +00:00
|
|
|
document.documentElement.classList.add('vivaldi');
|
|
|
|
}
|
2017-07-12 18:17:04 +00:00
|
|
|
// TODO: remove once our manifest's minimum_chrome_version is 50+
|
|
|
|
// Chrome 49 doesn't report own extension pages in webNavigation apparently
|
2017-11-14 07:52:54 +00:00
|
|
|
if (CHROME && CHROME < 2661) {
|
2017-07-12 18:17:04 +00:00
|
|
|
getActiveTab().then(BG.updateIcon);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-28 10:29:56 +00:00
|
|
|
const FIREFOX_NO_DOM_STORAGE = FIREFOX && !tryCatch(() => localStorage);
|
|
|
|
if (FIREFOX_NO_DOM_STORAGE) {
|
|
|
|
// may be disabled via dom.storage.enabled
|
|
|
|
Object.defineProperty(window, 'localStorage', {value: {}});
|
|
|
|
Object.defineProperty(window, 'sessionStorage', {value: {}});
|
|
|
|
}
|
|
|
|
|
2017-07-29 05:15:10 +00:00
|
|
|
|
2017-07-12 18:17:04 +00:00
|
|
|
function notifyAllTabs(msg) {
|
|
|
|
const originalMessage = msg;
|
2017-07-16 18:02:00 +00:00
|
|
|
if (msg.method === 'styleUpdated' || msg.method === 'styleAdded') {
|
2017-07-12 18:17:04 +00:00
|
|
|
// apply/popup/manage use only meta for these two methods,
|
|
|
|
// editor may need the full code but can fetch it directly,
|
|
|
|
// so we send just the meta to avoid spamming lots of tabs with huge styles
|
|
|
|
msg = Object.assign({}, msg, {
|
|
|
|
style: getStyleWithNoCode(msg.style)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
const affectsAll = !msg.affects || msg.affects.all;
|
|
|
|
const affectsOwnOriginOnly = !affectsAll && (msg.affects.editor || msg.affects.manager);
|
|
|
|
const affectsTabs = affectsAll || affectsOwnOriginOnly;
|
|
|
|
const affectsIcon = affectsAll || msg.affects.icon;
|
|
|
|
const affectsPopup = affectsAll || msg.affects.popup;
|
|
|
|
const affectsSelf = affectsPopup || msg.prefs;
|
|
|
|
if (affectsTabs || affectsIcon) {
|
|
|
|
const notifyTab = tab => {
|
|
|
|
// own pages will be notified via runtime.sendMessage later
|
|
|
|
if ((affectsTabs || URLS.optionsUI.includes(tab.url))
|
|
|
|
&& !(affectsSelf && tab.url.startsWith(URLS.ownOrigin))
|
|
|
|
// skip lazy-loaded aka unloaded tabs that seem to start loading on message in FF
|
|
|
|
&& (!FIREFOX || tab.width)) {
|
2017-11-24 15:26:20 +00:00
|
|
|
msg.tabId = tab.id;
|
|
|
|
sendMessage(msg, ignoreChromeError);
|
2017-07-12 18:17:04 +00:00
|
|
|
}
|
|
|
|
if (affectsIcon && BG) {
|
|
|
|
BG.updateIcon(tab);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
// list all tabs including chrome-extension:// which can be ours
|
|
|
|
Promise.all([
|
|
|
|
queryTabs(affectsOwnOriginOnly ? {url: URLS.ownOrigin + '*'} : {}),
|
|
|
|
getActiveTab(),
|
|
|
|
]).then(([tabs, activeTab]) => {
|
|
|
|
const activeTabId = activeTab && activeTab.id;
|
|
|
|
for (const tab of tabs) {
|
|
|
|
invokeOrPostpone(tab.id === activeTabId, notifyTab, tab);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
// notify self: the message no longer is sent to the origin in new Chrome
|
2017-07-16 18:02:00 +00:00
|
|
|
if (typeof onRuntimeMessage !== 'undefined') {
|
2017-07-12 18:17:04 +00:00
|
|
|
onRuntimeMessage(originalMessage);
|
|
|
|
}
|
|
|
|
// notify apply.js on own pages
|
2017-07-16 18:02:00 +00:00
|
|
|
if (typeof applyOnMessage !== 'undefined') {
|
2017-07-12 18:17:04 +00:00
|
|
|
applyOnMessage(originalMessage);
|
|
|
|
}
|
|
|
|
// notify background page and all open popups
|
|
|
|
if (affectsSelf) {
|
2017-11-25 17:24:15 +00:00
|
|
|
msg.tabId = undefined;
|
2017-11-24 15:26:20 +00:00
|
|
|
sendMessage(msg, ignoreChromeError);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function sendMessage(msg, callback) {
|
|
|
|
/*
|
|
|
|
Promise mode [default]:
|
|
|
|
- rejects on receiving {__ERROR__: message} created by background.js::onRuntimeMessage
|
|
|
|
- automatically suppresses chrome.runtime.lastError because it's autogenerated
|
|
|
|
by browserAction.setText which lacks a callback param in chrome API
|
|
|
|
Standard callback mode:
|
|
|
|
- enabled by passing a second param
|
|
|
|
*/
|
|
|
|
const {tabId, frameId} = msg;
|
2017-11-25 17:24:15 +00:00
|
|
|
const fn = tabId >= 0 ? chrome.tabs.sendMessage : chrome.runtime.sendMessage;
|
|
|
|
const args = tabId >= 0 ? [tabId, msg, {frameId}] : [msg];
|
2017-11-24 15:26:20 +00:00
|
|
|
if (callback) {
|
|
|
|
fn(...args, callback);
|
|
|
|
} else {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
fn(...args, r => {
|
|
|
|
const err = r && r.__ERROR__;
|
|
|
|
(err ? reject : resolve)(err || r);
|
|
|
|
chrome.runtime.lastError; // eslint-disable-line no-unused-expressions
|
|
|
|
});
|
|
|
|
});
|
2017-07-12 18:17:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function queryTabs(options = {}) {
|
|
|
|
return new Promise(resolve =>
|
|
|
|
chrome.tabs.query(options, tabs =>
|
|
|
|
resolve(tabs)));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function getTab(id) {
|
|
|
|
return new Promise(resolve =>
|
|
|
|
chrome.tabs.get(id, tab =>
|
|
|
|
!chrome.runtime.lastError && resolve(tab)));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function getOwnTab() {
|
|
|
|
return new Promise(resolve =>
|
|
|
|
chrome.tabs.getCurrent(tab => resolve(tab)));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function getActiveTab() {
|
|
|
|
return queryTabs({currentWindow: true, active: true})
|
|
|
|
.then(tabs => tabs[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function getActiveTabRealURL() {
|
|
|
|
return getActiveTab()
|
|
|
|
.then(getTabRealURL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function getTabRealURL(tab) {
|
|
|
|
return new Promise(resolve => {
|
2017-07-22 16:52:07 +00:00
|
|
|
if (tab.url !== 'chrome://newtab/' || URLS.chromeProtectsNTP) {
|
2017-07-12 18:17:04 +00:00
|
|
|
resolve(tab.url);
|
|
|
|
} else {
|
|
|
|
chrome.webNavigation.getFrame({tabId: tab.id, frameId: 0, processId: -1}, frame => {
|
|
|
|
resolve(frame && frame.url || '');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// opens a tab or activates the already opened one,
|
|
|
|
// reuses the New Tab page if it's focused now
|
2017-10-01 12:34:29 +00:00
|
|
|
function openURL({url, index, openerTabId, currentWindow = true}) {
|
2017-07-12 18:17:04 +00:00
|
|
|
if (!url.includes('://')) {
|
|
|
|
url = chrome.runtime.getURL(url);
|
|
|
|
}
|
|
|
|
return new Promise(resolve => {
|
|
|
|
// [some] chromium forks don't handle their fake branded protocols
|
|
|
|
url = url.replace(/^(opera|vivaldi)/, 'chrome');
|
|
|
|
// FF doesn't handle moz-extension:// URLs (bug)
|
|
|
|
// API doesn't handle the hash-fragment part
|
|
|
|
const urlQuery = url.startsWith('moz-extension') ? undefined : url.replace(/#.*/, '');
|
|
|
|
queryTabs({url: urlQuery, currentWindow}).then(tabs => {
|
|
|
|
for (const tab of tabs) {
|
2017-07-16 18:02:00 +00:00
|
|
|
if (tab.url === url) {
|
2017-07-12 18:17:04 +00:00
|
|
|
activateTab(tab).then(resolve);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
getActiveTab().then(tab => {
|
2017-08-26 12:57:33 +00:00
|
|
|
const chromeInIncognito = tab && tab.incognito && url.startsWith('chrome');
|
2017-12-02 23:44:03 +00:00
|
|
|
if (tab && (tab.url === 'chrome://newtab/' || tab.url === 'about:newtab') && !chromeInIncognito) {
|
2017-08-26 12:57:33 +00:00
|
|
|
// update current NTP, except for chrome:// or chrome-extension:// in incognito
|
2017-07-12 18:17:04 +00:00
|
|
|
chrome.tabs.update({url}, resolve);
|
|
|
|
} else {
|
2017-08-26 12:57:33 +00:00
|
|
|
// create a new tab
|
2017-10-01 12:34:29 +00:00
|
|
|
const options = {url, index};
|
2017-11-25 13:24:07 +00:00
|
|
|
// FF57+ supports openerTabId, but not in Android (indicated by the absence of chrome.windows)
|
|
|
|
if (tab && (!FIREFOX || FIREFOX >= 57 && chrome.windows) && !chromeInIncognito) {
|
2017-09-29 23:40:01 +00:00
|
|
|
options.openerTabId = tab.id;
|
|
|
|
}
|
2017-08-26 12:57:33 +00:00
|
|
|
chrome.tabs.create(options, resolve);
|
2017-07-12 18:17:04 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function activateTab(tab) {
|
|
|
|
return Promise.all([
|
|
|
|
new Promise(resolve => {
|
|
|
|
chrome.tabs.update(tab.id, {active: true}, resolve);
|
|
|
|
}),
|
2017-11-25 13:24:07 +00:00
|
|
|
chrome.windows && new Promise(resolve => {
|
2017-07-12 18:17:04 +00:00
|
|
|
chrome.windows.update(tab.windowId, {focused: true}, resolve);
|
|
|
|
}),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function stringAsRegExp(s, flags) {
|
2017-07-22 16:52:07 +00:00
|
|
|
return new RegExp(s.replace(/[{}()[\]\\.+*?^$|]/g, '\\$&'), flags);
|
2017-07-12 18:17:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function ignoreChromeError() {
|
|
|
|
chrome.runtime.lastError; // eslint-disable-line no-unused-expressions
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function getStyleWithNoCode(style) {
|
|
|
|
const stripped = Object.assign({}, style, {sections: []});
|
|
|
|
for (const section of style.sections) {
|
|
|
|
stripped.sections.push(Object.assign({}, section, {code: null}));
|
|
|
|
}
|
|
|
|
return stripped;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// js engine can't optimize the entire function if it contains try-catch
|
|
|
|
// so we should keep it isolated from normal code in a minimal wrapper
|
|
|
|
// Update: might get fixed in V8 TurboFan in the future
|
|
|
|
function tryCatch(func, ...args) {
|
|
|
|
try {
|
|
|
|
return func(...args);
|
|
|
|
} catch (e) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-12-06 06:39:45 +00:00
|
|
|
function tryRegExp(regexp, flags) {
|
2017-07-12 18:17:04 +00:00
|
|
|
try {
|
2017-12-06 06:39:45 +00:00
|
|
|
return new RegExp(regexp, flags);
|
2017-07-12 18:17:04 +00:00
|
|
|
} catch (e) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function tryJSONparse(jsonString) {
|
|
|
|
try {
|
|
|
|
return JSON.parse(jsonString);
|
|
|
|
} catch (e) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const debounce = Object.assign((fn, delay, ...args) => {
|
|
|
|
clearTimeout(debounce.timers.get(fn));
|
|
|
|
debounce.timers.set(fn, setTimeout(debounce.run, delay, fn, ...args));
|
|
|
|
}, {
|
|
|
|
timers: new Map(),
|
|
|
|
run(fn, ...args) {
|
|
|
|
debounce.timers.delete(fn);
|
|
|
|
fn(...args);
|
|
|
|
},
|
|
|
|
unregister(fn) {
|
|
|
|
clearTimeout(debounce.timers.get(fn));
|
|
|
|
debounce.timers.delete(fn);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
function deepCopy(obj) {
|
2017-07-16 18:02:00 +00:00
|
|
|
return obj !== null && obj !== undefined && typeof obj === 'object'
|
|
|
|
? deepMerge(typeof obj.slice === 'function' ? [] : {}, obj)
|
2017-07-12 18:17:04 +00:00
|
|
|
: obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function deepMerge(target, ...args) {
|
2017-07-16 18:02:00 +00:00
|
|
|
const isArray = typeof target.slice === 'function';
|
2017-07-12 18:17:04 +00:00
|
|
|
for (const obj of args) {
|
|
|
|
if (isArray && obj !== null && obj !== undefined) {
|
|
|
|
for (const element of obj) {
|
|
|
|
target.push(deepCopy(element));
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
for (const k in obj) {
|
|
|
|
const value = obj[k];
|
2017-07-16 18:02:00 +00:00
|
|
|
if (k in target && typeof value === 'object' && value !== null) {
|
2017-07-12 18:17:04 +00:00
|
|
|
deepMerge(target[k], value);
|
|
|
|
} else {
|
|
|
|
target[k] = deepCopy(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return target;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function sessionStorageHash(name) {
|
|
|
|
return {
|
|
|
|
name,
|
|
|
|
value: tryCatch(JSON.parse, sessionStorage[name]) || {},
|
|
|
|
set(k, v) {
|
|
|
|
this.value[k] = v;
|
|
|
|
this.updateStorage();
|
|
|
|
},
|
|
|
|
unset(k) {
|
|
|
|
delete this.value[k];
|
|
|
|
this.updateStorage();
|
|
|
|
},
|
|
|
|
updateStorage() {
|
|
|
|
sessionStorage[this.name] = JSON.stringify(this.value);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function onBackgroundReady() {
|
|
|
|
return BG && BG.getStyles ? Promise.resolve() : new Promise(function ping(resolve) {
|
2017-11-24 15:26:20 +00:00
|
|
|
sendMessage({method: 'healthCheck'}, health => {
|
2017-07-12 18:17:04 +00:00
|
|
|
if (health !== undefined) {
|
|
|
|
BG = chrome.extension.getBackgroundPage();
|
|
|
|
resolve();
|
|
|
|
} else {
|
|
|
|
setTimeout(ping, 0, resolve);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// in case Chrome haven't yet loaded the bg page and displays our page like edit/manage
|
|
|
|
function getStylesSafe(options) {
|
|
|
|
return onBackgroundReady()
|
|
|
|
.then(() => BG.getStyles(options));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function saveStyleSafe(style) {
|
|
|
|
return onBackgroundReady()
|
|
|
|
.then(() => BG.saveStyle(BG.deepCopy(style)))
|
|
|
|
.then(savedStyle => {
|
|
|
|
if (style.notify === false) {
|
|
|
|
handleUpdate(savedStyle, style);
|
|
|
|
}
|
|
|
|
return savedStyle;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function deleteStyleSafe({id, notify = true} = {}) {
|
|
|
|
return onBackgroundReady()
|
|
|
|
.then(() => BG.deleteStyle({id, notify}))
|
|
|
|
.then(() => {
|
|
|
|
if (!notify) {
|
|
|
|
handleDelete(id);
|
|
|
|
}
|
|
|
|
return id;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-11-24 19:30:39 +00:00
|
|
|
function download(url, {
|
|
|
|
method = url.includes('?') ? 'POST' : 'GET',
|
|
|
|
body = url.includes('?') ? url.slice(url.indexOf('?')) : null,
|
|
|
|
requiredStatusCode = 200,
|
|
|
|
timeout = 10e3,
|
|
|
|
headers = {
|
|
|
|
'Content-type': 'application/x-www-form-urlencoded',
|
|
|
|
},
|
|
|
|
} = {}) {
|
2017-07-12 18:17:04 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
2017-09-18 22:50:20 +00:00
|
|
|
url = new URL(url);
|
2017-11-09 00:16:39 +00:00
|
|
|
if (url.protocol === 'file:' && FIREFOX) {
|
2017-09-18 22:50:20 +00:00
|
|
|
// https://stackoverflow.com/questions/42108782/firefox-webextensions-get-local-files-content-by-path
|
|
|
|
// FIXME: add FetchController when it is available.
|
2017-11-24 19:30:39 +00:00
|
|
|
const timer = setTimeout(reject, timeout, new Error('Timeout fetching ' + url.href));
|
2017-09-18 22:50:20 +00:00
|
|
|
fetch(url.href, {mode: 'same-origin'})
|
|
|
|
.then(r => {
|
|
|
|
clearTimeout(timer);
|
2017-11-24 19:30:39 +00:00
|
|
|
return r.status === 200 ? r.text() : Promise.reject(r.status);
|
2017-09-18 22:50:20 +00:00
|
|
|
})
|
2017-11-24 19:30:39 +00:00
|
|
|
.catch(reject)
|
|
|
|
.then(resolve);
|
2017-09-18 22:50:20 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-07-12 18:17:04 +00:00
|
|
|
const xhr = new XMLHttpRequest();
|
2017-11-24 19:30:39 +00:00
|
|
|
xhr.timeout = timeout;
|
|
|
|
xhr.onloadend = event => {
|
|
|
|
if (event.type !== 'error' && (
|
|
|
|
xhr.status === requiredStatusCode || !requiredStatusCode ||
|
|
|
|
url.protocol === 'file:')) {
|
|
|
|
resolve(xhr.responseText);
|
|
|
|
} else {
|
|
|
|
reject(xhr.status);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
xhr.onerror = xhr.onloadend;
|
|
|
|
xhr.open(method, url.href, true);
|
|
|
|
for (const key in headers) {
|
|
|
|
xhr.setRequestHeader(key, headers[key]);
|
2017-09-18 22:50:20 +00:00
|
|
|
}
|
2017-11-24 19:30:39 +00:00
|
|
|
xhr.send(body);
|
2017-07-12 18:17:04 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function invokeOrPostpone(isInvoke, fn, ...args) {
|
|
|
|
return isInvoke
|
|
|
|
? fn(...args)
|
|
|
|
: setTimeout(invokeOrPostpone, 0, true, fn, ...args);
|
|
|
|
}
|
2017-08-05 16:49:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
function openEditor(id) {
|
|
|
|
let url = '/edit.html';
|
|
|
|
if (id) {
|
|
|
|
url += `?id=${id}`;
|
|
|
|
}
|
2017-11-25 13:24:07 +00:00
|
|
|
if (chrome.windows && prefs.get('openEditInWindow')) {
|
2017-08-05 16:49:25 +00:00
|
|
|
chrome.windows.create(Object.assign({url}, prefs.get('windowPosition')));
|
|
|
|
} else {
|
|
|
|
openURL({url});
|
|
|
|
}
|
|
|
|
}
|
2017-09-25 10:43:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
function closeCurrentTab() {
|
2017-11-09 04:49:37 +00:00
|
|
|
// https://bugzilla.mozilla.org/show_bug.cgi?id=1409375
|
|
|
|
getOwnTab().then(tab => {
|
2017-09-25 10:43:55 +00:00
|
|
|
if (tab) {
|
|
|
|
chrome.tabs.remove(tab.id);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|