electron/lib/browser/chrome-extension.js

146 lines
4.5 KiB
JavaScript
Raw Normal View History

2016-01-14 21:18:52 +00:00
const electron = require('electron');
const app = electron.app;
const fs = require('fs');
const path = require('path');
const url = require('url');
2016-01-12 02:40:23 +00:00
2016-01-14 18:35:29 +00:00
// Mapping between hostname and file path.
2016-01-14 21:18:52 +00:00
var hostPathMap = {};
var hostPathMapNextKey = 0;
2016-01-12 02:40:23 +00:00
2016-01-14 21:18:52 +00:00
var getHostForPath = function(path) {
2016-01-12 02:40:23 +00:00
var key;
key = "extension-" + (++hostPathMapNextKey);
hostPathMap[key] = path;
return key;
};
2016-01-14 21:18:52 +00:00
var getPathForHost = function(host) {
2016-01-12 02:40:23 +00:00
return hostPathMap[host];
};
2016-01-14 18:35:29 +00:00
// Cache extensionInfo.
2016-01-14 21:18:52 +00:00
var extensionInfoMap = {};
2016-01-12 02:40:23 +00:00
2016-01-14 21:18:52 +00:00
var getExtensionInfoFromPath = function(srcDirectory) {
2016-01-12 02:40:23 +00:00
var manifest, page;
manifest = JSON.parse(fs.readFileSync(path.join(srcDirectory, 'manifest.json')));
if (extensionInfoMap[manifest.name] == null) {
2016-01-14 18:44:21 +00:00
// We can not use 'file://' directly because all resources in the extension
// will be treated as relative to the root in Chrome.
2016-01-12 02:40:23 +00:00
page = url.format({
protocol: 'chrome-extension',
slashes: true,
hostname: getHostForPath(srcDirectory),
pathname: manifest.devtools_page
});
extensionInfoMap[manifest.name] = {
startPage: page,
name: manifest.name,
srcDirectory: srcDirectory,
exposeExperimentalAPIs: true
};
return extensionInfoMap[manifest.name];
}
};
2016-01-14 18:35:29 +00:00
// The loaded extensions cache and its persistent path.
2016-01-14 21:18:52 +00:00
var loadedExtensions = null;
var loadedExtensionsPath = null;
2016-01-12 02:40:23 +00:00
app.on('will-quit', function() {
try {
loadedExtensions = Object.keys(extensionInfoMap).map(function(key) {
return extensionInfoMap[key].srcDirectory;
});
if (loadedExtensions.length > 0) {
try {
fs.mkdirSync(path.dirname(loadedExtensionsPath));
} catch (error) {
// Ignore error
}
fs.writeFileSync(loadedExtensionsPath, JSON.stringify(loadedExtensions));
} else {
fs.unlinkSync(loadedExtensionsPath);
2016-01-12 02:40:23 +00:00
}
2016-01-19 22:49:40 +00:00
} catch (error) {
// Ignore error
2016-01-12 02:40:23 +00:00
}
});
2016-01-14 18:35:29 +00:00
// We can not use protocol or BrowserWindow until app is ready.
2016-01-12 02:40:23 +00:00
app.once('ready', function() {
2016-01-19 22:49:40 +00:00
var BrowserWindow, chromeExtensionHandler, i, init, len, protocol, srcDirectory;
2016-01-12 02:40:23 +00:00
protocol = electron.protocol, BrowserWindow = electron.BrowserWindow;
2016-02-04 00:22:16 +00:00
// Load persisted extensions.
2016-01-12 02:40:23 +00:00
loadedExtensionsPath = path.join(app.getPath('userData'), 'DevTools Extensions');
try {
loadedExtensions = JSON.parse(fs.readFileSync(loadedExtensionsPath));
if (!Array.isArray(loadedExtensions)) {
loadedExtensions = [];
}
2016-01-14 18:35:29 +00:00
// Preheat the extensionInfo cache.
2016-01-12 02:40:23 +00:00
for (i = 0, len = loadedExtensions.length; i < len; i++) {
srcDirectory = loadedExtensions[i];
getExtensionInfoFromPath(srcDirectory);
}
2016-01-19 22:49:40 +00:00
} catch (error) {
// Ignore error
2016-01-12 02:40:23 +00:00
}
2016-01-14 18:35:29 +00:00
// The chrome-extension: can map a extension URL request to real file path.
2016-01-12 02:40:23 +00:00
chromeExtensionHandler = function(request, callback) {
var directory, parsed;
parsed = url.parse(request.url);
if (!(parsed.hostname && (parsed.path != null))) {
return callback();
}
if (!/extension-\d+/.test(parsed.hostname)) {
return callback();
}
directory = getPathForHost(parsed.hostname);
if (directory == null) {
return callback();
}
return callback(path.join(directory, parsed.path));
};
protocol.registerFileProtocol('chrome-extension', chromeExtensionHandler, function(error) {
if (error) {
return console.error('Unable to register chrome-extension protocol');
}
});
BrowserWindow.prototype._loadDevToolsExtensions = function(extensionInfoArray) {
var ref;
return (ref = this.devToolsWebContents) != null ? ref.executeJavaScript("DevToolsAPI.addExtensions(" + (JSON.stringify(extensionInfoArray)) + ");") : void 0;
};
BrowserWindow.addDevToolsExtension = function(srcDirectory) {
var extensionInfo, j, len1, ref, window;
extensionInfo = getExtensionInfoFromPath(srcDirectory);
if (extensionInfo) {
ref = BrowserWindow.getAllWindows();
for (j = 0, len1 = ref.length; j < len1; j++) {
window = ref[j];
window._loadDevToolsExtensions([extensionInfo]);
}
return extensionInfo.name;
}
};
BrowserWindow.removeDevToolsExtension = function(name) {
return delete extensionInfoMap[name];
};
2016-03-16 16:33:19 +00:00
// Load persisted extensions when devtools is opened.
2016-01-12 02:40:23 +00:00
init = BrowserWindow.prototype._init;
return BrowserWindow.prototype._init = function() {
init.call(this);
return this.on('devtools-opened', function() {
return this._loadDevToolsExtensions(Object.keys(extensionInfoMap).map(function(key) {
return extensionInfoMap[key];
}));
});
};
});