2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-12-15 19:06:05 +01:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity 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.
|
|
|
|
|
|
|
|
// Parity 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 Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import registerPromiseWorker from 'promise-worker/register';
|
2017-01-09 11:14:36 +01:00
|
|
|
import { Signer } from '~/util/signer';
|
2016-12-20 01:55:57 +01:00
|
|
|
import SolidityUtils from '~/util/solidity';
|
2016-12-15 19:06:05 +01:00
|
|
|
|
|
|
|
const CACHE_NAME = 'parity-cache-v1';
|
|
|
|
|
|
|
|
registerPromiseWorker((msg) => {
|
|
|
|
return handleMessage(msg);
|
|
|
|
});
|
|
|
|
|
|
|
|
self.addEventListener('install', (event) => {
|
|
|
|
event.waitUntil(self.skipWaiting());
|
|
|
|
});
|
|
|
|
|
|
|
|
self.addEventListener('activate', (event) => {
|
|
|
|
event.waitUntil(self.clients.claim());
|
|
|
|
});
|
|
|
|
|
2016-12-20 01:55:57 +01:00
|
|
|
self.addEventListener('fetch', (event) => {
|
|
|
|
const { url } = event.request;
|
|
|
|
|
|
|
|
if (/raw.githubusercontent.com\/ethereum\/solc-bin(.+)list\.json$/.test(url)) {
|
|
|
|
// Return the cached version, but still update it in background
|
|
|
|
return event.respondWith(cachedFetcher(event.request, true));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (/raw.githubusercontent.com\/ethereum\/solc-bin(.+)soljson(.+)\.js$/.test(url)) {
|
|
|
|
return event.respondWith(cachedFetcher(event.request));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
self.solc = {};
|
2016-12-15 19:06:05 +01:00
|
|
|
self.files = {};
|
|
|
|
|
2016-12-20 01:55:57 +01:00
|
|
|
function cachedFetcher (request, update = false) {
|
|
|
|
return caches
|
|
|
|
.match(request)
|
|
|
|
.then((response) => {
|
|
|
|
// Return cached response if exists and no
|
|
|
|
// updates needed
|
|
|
|
if (response && !update) {
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
|
|
|
|
const fetcher = fetch(request.clone())
|
|
|
|
.then((response) => {
|
|
|
|
// Check if we received a valid response
|
|
|
|
if (!response || response.status !== 200) {
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
|
|
|
|
return caches
|
|
|
|
.open(CACHE_NAME)
|
|
|
|
.then((cache) => {
|
|
|
|
cache.put(request, response.clone());
|
|
|
|
return response;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// Cache hit - return response
|
|
|
|
// Still want to perform the fetch (update)
|
|
|
|
if (response) {
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
|
|
|
|
return fetcher;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-12-15 19:06:05 +01:00
|
|
|
function handleMessage (message) {
|
|
|
|
switch (message.action) {
|
|
|
|
case 'compile':
|
|
|
|
return compile(message.data);
|
|
|
|
|
|
|
|
case 'load':
|
2016-12-20 01:55:57 +01:00
|
|
|
return getCompiler(message.data).then(() => 'ok');
|
2016-12-15 19:06:05 +01:00
|
|
|
|
|
|
|
case 'setFiles':
|
|
|
|
return setFiles(message.data);
|
|
|
|
|
2017-01-09 11:14:36 +01:00
|
|
|
case 'getSignerSeed':
|
|
|
|
return getSignerSeed(message.data);
|
|
|
|
|
2016-12-15 19:06:05 +01:00
|
|
|
default:
|
|
|
|
console.warn(`unknown action "${message.action}"`);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-09 11:14:36 +01:00
|
|
|
function getSignerSeed (data) {
|
|
|
|
console.log('deriving seed from service-worker');
|
|
|
|
const { wallet, password } = data;
|
2017-01-23 13:39:52 +01:00
|
|
|
|
2017-01-09 11:14:36 +01:00
|
|
|
return Signer.getSeed(wallet, password);
|
|
|
|
}
|
|
|
|
|
2016-12-20 01:55:57 +01:00
|
|
|
function compile (data) {
|
|
|
|
const { build } = data;
|
|
|
|
|
|
|
|
return getCompiler(build)
|
|
|
|
.then((compiler) => {
|
|
|
|
return SolidityUtils.compile(data, compiler);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-12-15 19:06:05 +01:00
|
|
|
function setFiles (files) {
|
|
|
|
const prevFiles = self.files;
|
|
|
|
const nextFiles = files.reduce((obj, file) => {
|
|
|
|
obj[file.name] = file.sourcecode;
|
|
|
|
return obj;
|
|
|
|
}, {});
|
|
|
|
|
|
|
|
self.files = {
|
|
|
|
...prevFiles,
|
|
|
|
...nextFiles
|
|
|
|
};
|
|
|
|
|
|
|
|
return 'ok';
|
|
|
|
}
|
|
|
|
|
2016-12-20 01:55:57 +01:00
|
|
|
function getCompiler (build) {
|
|
|
|
const { longVersion } = build;
|
2016-12-15 19:06:05 +01:00
|
|
|
|
2016-12-20 01:55:57 +01:00
|
|
|
const fetcher = (url) => {
|
|
|
|
const request = new Request(url);
|
2017-01-23 13:39:52 +01:00
|
|
|
|
2016-12-20 01:55:57 +01:00
|
|
|
return cachedFetcher(request);
|
|
|
|
};
|
2016-12-15 19:06:05 +01:00
|
|
|
|
2016-12-20 01:55:57 +01:00
|
|
|
if (!self.solc[longVersion]) {
|
|
|
|
self.solc[longVersion] = SolidityUtils
|
|
|
|
.getCompiler(build, fetcher)
|
|
|
|
.then((compiler) => {
|
|
|
|
self.solc[longVersion] = compiler;
|
|
|
|
return compiler;
|
|
|
|
});
|
2016-12-15 19:06:05 +01:00
|
|
|
}
|
|
|
|
|
2016-12-21 15:12:40 +01:00
|
|
|
return Promise.resolve(self.solc[longVersion]);
|
2016-12-15 19:06:05 +01:00
|
|
|
}
|