2016-01-05 14:20:13 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
|
|
|
(C) 2016 GNUnet e.V.
|
|
|
|
|
|
|
|
TALER 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, or (at your option) any later version.
|
|
|
|
|
|
|
|
TALER 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
|
2016-07-07 17:59:29 +02:00
|
|
|
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
2016-01-05 14:20:13 +01:00
|
|
|
*/
|
|
|
|
|
2017-05-24 16:33:10 +02:00
|
|
|
/**
|
|
|
|
* Messaging for the WebExtensions wallet. Should contain
|
|
|
|
* parts that are specific for WebExtensions, but as little business
|
|
|
|
* logic as possible.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Imports.
|
|
|
|
*/
|
2020-06-03 12:51:09 +02:00
|
|
|
import { isFirefox, getPermissionsApi } from "./compat";
|
|
|
|
import { extendedPermissions } from "./permissions";
|
2020-08-13 20:43:51 +02:00
|
|
|
import {
|
|
|
|
OpenedPromise,
|
|
|
|
openPromise,
|
|
|
|
openTalerDatabase,
|
|
|
|
makeErrorDetails,
|
2021-06-04 17:42:15 +02:00
|
|
|
deleteTalerDatabase,
|
2021-06-09 15:14:17 +02:00
|
|
|
DbAccess,
|
|
|
|
WalletStoresV1,
|
2021-06-17 21:06:45 +02:00
|
|
|
Wallet,
|
2021-03-27 14:35:58 +01:00
|
|
|
} from "@gnu-taler/taler-wallet-core";
|
|
|
|
import {
|
|
|
|
classifyTalerUri,
|
2020-08-21 17:26:25 +02:00
|
|
|
CoreApiResponse,
|
|
|
|
CoreApiResponseSuccess,
|
2021-03-27 14:35:58 +01:00
|
|
|
TalerErrorCode,
|
|
|
|
TalerUriType,
|
|
|
|
WalletDiagnostics,
|
|
|
|
} from "@gnu-taler/taler-util";
|
2020-08-03 09:30:48 +02:00
|
|
|
import { BrowserHttpLib } from "./browserHttpLib";
|
|
|
|
import { BrowserCryptoWorkerFactory } from "./browserCryptoWorkerFactory";
|
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
/**
|
|
|
|
* Currently active wallet instance. Might be unloaded and
|
|
|
|
* re-instantiated when the database is reset.
|
2021-08-19 15:12:33 +02:00
|
|
|
*
|
2021-07-14 14:34:58 +02:00
|
|
|
* FIXME: Maybe move the wallet resetting into the Wallet class?
|
2020-04-06 20:02:01 +02:00
|
|
|
*/
|
2021-06-17 21:06:45 +02:00
|
|
|
let currentWallet: Wallet | undefined;
|
2020-04-06 20:02:01 +02:00
|
|
|
|
2021-06-09 15:14:17 +02:00
|
|
|
let currentDatabase: DbAccess<typeof WalletStoresV1> | undefined;
|
2020-04-06 20:02:01 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Last version if an outdated DB, if applicable.
|
|
|
|
*/
|
|
|
|
let outdatedDbVersion: number | undefined;
|
|
|
|
|
2020-08-12 09:11:00 +02:00
|
|
|
const walletInit: OpenedPromise<void> = openPromise<void>();
|
2020-04-06 20:02:01 +02:00
|
|
|
|
2020-05-04 14:11:22 +02:00
|
|
|
const notificationPorts: chrome.runtime.Port[] = [];
|
|
|
|
|
2020-08-21 17:26:25 +02:00
|
|
|
async function getDiagnostics(): Promise<WalletDiagnostics> {
|
|
|
|
const manifestData = chrome.runtime.getManifest();
|
|
|
|
const errors: string[] = [];
|
|
|
|
let firefoxIdbProblem = false;
|
|
|
|
let dbOutdated = false;
|
|
|
|
try {
|
|
|
|
await walletInit.promise;
|
|
|
|
} catch (e) {
|
|
|
|
errors.push("Error during wallet initialization: " + e);
|
|
|
|
if (
|
|
|
|
currentDatabase === undefined &&
|
|
|
|
outdatedDbVersion === undefined &&
|
|
|
|
isFirefox()
|
|
|
|
) {
|
|
|
|
firefoxIdbProblem = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!currentWallet) {
|
|
|
|
errors.push("Could not create wallet backend.");
|
|
|
|
}
|
|
|
|
if (!currentDatabase) {
|
|
|
|
errors.push("Could not open database");
|
|
|
|
}
|
|
|
|
if (outdatedDbVersion !== undefined) {
|
|
|
|
errors.push(`Outdated DB version: ${outdatedDbVersion}`);
|
|
|
|
dbOutdated = true;
|
|
|
|
}
|
|
|
|
const diagnostics: WalletDiagnostics = {
|
|
|
|
walletManifestDisplayVersion: manifestData.version_name || "(undefined)",
|
|
|
|
walletManifestVersion: manifestData.version,
|
|
|
|
errors,
|
|
|
|
firefoxIdbProblem,
|
|
|
|
dbOutdated,
|
|
|
|
};
|
|
|
|
return diagnostics;
|
|
|
|
}
|
|
|
|
|
2019-08-24 19:31:24 +02:00
|
|
|
async function dispatch(
|
|
|
|
req: any,
|
|
|
|
sender: any,
|
|
|
|
sendResponse: any,
|
|
|
|
): Promise<void> {
|
2020-08-21 17:26:25 +02:00
|
|
|
let r: CoreApiResponse;
|
|
|
|
|
|
|
|
const wrapResponse = (result: unknown): CoreApiResponseSuccess => {
|
|
|
|
return {
|
|
|
|
type: "response",
|
|
|
|
id: req.id,
|
|
|
|
operation: req.operation,
|
|
|
|
result,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
switch (req.operation) {
|
|
|
|
case "wxGetDiagnostics": {
|
|
|
|
r = wrapResponse(await getDiagnostics());
|
|
|
|
break;
|
|
|
|
}
|
2021-06-04 15:47:51 +02:00
|
|
|
case "reset-db": {
|
2021-06-04 17:42:15 +02:00
|
|
|
await deleteTalerDatabase(indexedDB);
|
2021-06-04 15:47:51 +02:00
|
|
|
r = wrapResponse(await reinitWallet());
|
|
|
|
break;
|
|
|
|
}
|
2020-08-21 17:26:25 +02:00
|
|
|
case "wxGetExtendedPermissions": {
|
|
|
|
const res = await new Promise((resolve, reject) => {
|
|
|
|
getPermissionsApi().contains(extendedPermissions, (result: boolean) => {
|
|
|
|
resolve(result);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
r = wrapResponse({ newValue: res });
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case "wxSetExtendedPermissions": {
|
|
|
|
const newVal = req.payload.value;
|
|
|
|
console.log("new extended permissions value", newVal);
|
|
|
|
if (newVal) {
|
|
|
|
setupHeaderListener();
|
|
|
|
r = wrapResponse({ newValue: true });
|
|
|
|
} else {
|
2021-01-13 00:50:56 +01:00
|
|
|
await new Promise<void>((resolve, reject) => {
|
2020-08-21 17:26:25 +02:00
|
|
|
getPermissionsApi().remove(extendedPermissions, (rem) => {
|
|
|
|
console.log("permissions removed:", rem);
|
|
|
|
resolve();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
r = wrapResponse({ newVal: false });
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2021-05-07 15:38:28 +02:00
|
|
|
default: {
|
2020-08-21 17:26:25 +02:00
|
|
|
const w = currentWallet;
|
|
|
|
if (!w) {
|
|
|
|
r = {
|
|
|
|
type: "error",
|
|
|
|
id: req.id,
|
|
|
|
operation: req.operation,
|
|
|
|
error: makeErrorDetails(
|
|
|
|
TalerErrorCode.WALLET_CORE_NOT_AVAILABLE,
|
|
|
|
"wallet core not available",
|
|
|
|
{},
|
|
|
|
),
|
|
|
|
};
|
|
|
|
break;
|
|
|
|
}
|
2021-06-17 21:06:45 +02:00
|
|
|
r = await w.handleCoreApiRequest(req.operation, req.id, req.payload);
|
2020-08-21 17:26:25 +02:00
|
|
|
break;
|
2021-05-07 15:38:28 +02:00
|
|
|
}
|
2020-08-13 20:43:51 +02:00
|
|
|
}
|
|
|
|
|
2016-11-20 08:58:04 +01:00
|
|
|
try {
|
2020-08-13 20:43:51 +02:00
|
|
|
sendResponse(r);
|
2016-11-20 08:58:04 +01:00
|
|
|
} catch (e) {
|
2020-08-13 20:43:51 +02:00
|
|
|
// might fail if tab disconnected
|
2016-02-17 15:56:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-20 15:12:45 +01:00
|
|
|
function getTab(tabId: number): Promise<chrome.tabs.Tab> {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
chrome.tabs.get(tabId, (tab: chrome.tabs.Tab) => resolve(tab));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
function setBadgeText(options: chrome.browserAction.BadgeTextDetails): void {
|
2018-02-20 16:17:05 +01:00
|
|
|
// not supported by all browsers ...
|
|
|
|
if (chrome && chrome.browserAction && chrome.browserAction.setBadgeText) {
|
|
|
|
chrome.browserAction.setBadgeText(options);
|
|
|
|
} else {
|
|
|
|
console.warn("can't set badge text, not supported", options);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-20 15:12:45 +01:00
|
|
|
function waitMs(timeoutMs: number): Promise<void> {
|
|
|
|
return new Promise((resolve, reject) => {
|
2020-04-06 20:02:01 +02:00
|
|
|
const bgPage = chrome.extension.getBackgroundPage();
|
|
|
|
if (!bgPage) {
|
|
|
|
reject("fatal: no background page");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
bgPage.setTimeout(() => resolve(), timeoutMs);
|
2018-02-20 15:12:45 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-08-24 19:31:24 +02:00
|
|
|
function makeSyncWalletRedirect(
|
|
|
|
url: string,
|
|
|
|
tabId: number,
|
|
|
|
oldUrl: string,
|
|
|
|
params?: { [name: string]: string | undefined },
|
2020-07-28 10:52:35 +02:00
|
|
|
): Record<string, unknown> {
|
2020-09-09 09:15:49 +02:00
|
|
|
const innerUrl = new URL(chrome.extension.getURL(url));
|
2018-02-07 16:15:40 +01:00
|
|
|
if (params) {
|
2021-08-19 15:12:33 +02:00
|
|
|
const hParams = Object.keys(params)
|
|
|
|
.map((k) => `${k}=${params[k]}`)
|
|
|
|
.join("&");
|
|
|
|
innerUrl.hash = innerUrl.hash + "?" + hParams;
|
2018-02-07 16:15:40 +01:00
|
|
|
}
|
2018-02-20 15:12:45 +01:00
|
|
|
if (isFirefox()) {
|
|
|
|
// Some platforms don't support the sync redirect (yet), so fall back to
|
|
|
|
// async redirect after a timeout.
|
2020-04-06 20:02:01 +02:00
|
|
|
const doit = async (): Promise<void> => {
|
2018-02-20 15:12:45 +01:00
|
|
|
await waitMs(150);
|
|
|
|
const tab = await getTab(tabId);
|
|
|
|
if (tab.url === oldUrl) {
|
2020-04-06 21:53:29 +02:00
|
|
|
chrome.tabs.update(tabId, { url: innerUrl.href });
|
2018-02-20 15:12:45 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
doit();
|
|
|
|
}
|
2020-04-30 14:31:04 +02:00
|
|
|
console.log("redirecting to", innerUrl.href);
|
|
|
|
chrome.tabs.update(tabId, { url: innerUrl.href });
|
2020-04-06 21:53:29 +02:00
|
|
|
return { redirectUrl: innerUrl.href };
|
2018-02-07 16:15:40 +01:00
|
|
|
}
|
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
async function reinitWallet(): Promise<void> {
|
2017-06-05 02:00:03 +02:00
|
|
|
if (currentWallet) {
|
|
|
|
currentWallet.stop();
|
|
|
|
currentWallet = undefined;
|
|
|
|
}
|
2019-09-05 16:10:53 +02:00
|
|
|
currentDatabase = undefined;
|
2018-02-20 16:17:05 +01:00
|
|
|
setBadgeText({ text: "" });
|
2017-06-05 02:00:03 +02:00
|
|
|
try {
|
2020-08-12 09:11:00 +02:00
|
|
|
currentDatabase = await openTalerDatabase(indexedDB, reinitWallet);
|
2017-06-05 02:00:03 +02:00
|
|
|
} catch (e) {
|
|
|
|
console.error("could not open database", e);
|
2019-09-05 16:10:53 +02:00
|
|
|
walletInit.reject(e);
|
2017-06-05 02:00:03 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
const http = new BrowserHttpLib();
|
|
|
|
console.log("setting wallet");
|
2021-06-17 21:06:45 +02:00
|
|
|
const wallet = await Wallet.create(
|
2021-01-13 00:50:56 +01:00
|
|
|
currentDatabase,
|
2019-08-24 19:31:24 +02:00
|
|
|
http,
|
|
|
|
new BrowserCryptoWorkerFactory(),
|
|
|
|
);
|
2021-08-09 15:42:56 +02:00
|
|
|
try {
|
|
|
|
await wallet.handleCoreApiRequest("initWallet", "native-init", {});
|
|
|
|
} catch (e) {
|
|
|
|
console.error("could not initialize wallet", e);
|
|
|
|
walletInit.reject(e);
|
|
|
|
return;
|
|
|
|
}
|
2020-05-04 14:11:22 +02:00
|
|
|
wallet.addNotificationListener((x) => {
|
|
|
|
for (const x of notificationPorts) {
|
|
|
|
try {
|
|
|
|
x.postMessage({ type: "notification" });
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2021-08-19 15:12:33 +02:00
|
|
|
wallet.runTaskLoop().catch((e) => {
|
|
|
|
console.log("error during wallet task loop", e);
|
2019-12-02 17:35:47 +01:00
|
|
|
});
|
2017-06-05 02:00:03 +02:00
|
|
|
// Useful for debugging in the background page.
|
|
|
|
(window as any).talerWallet = wallet;
|
|
|
|
currentWallet = wallet;
|
2019-09-05 16:10:53 +02:00
|
|
|
walletInit.resolve();
|
2017-06-05 02:00:03 +02:00
|
|
|
}
|
|
|
|
|
2019-11-02 00:46:57 +01:00
|
|
|
try {
|
|
|
|
// This needs to be outside of main, as Firefox won't fire the event if
|
|
|
|
// the listener isn't created synchronously on loading the backend.
|
2020-03-30 12:39:32 +02:00
|
|
|
chrome.runtime.onInstalled.addListener((details) => {
|
2019-11-02 00:46:57 +01:00
|
|
|
console.log("onInstalled with reason", details.reason);
|
2019-09-05 16:10:53 +02:00
|
|
|
if (details.reason === "install") {
|
2021-06-16 22:01:06 +02:00
|
|
|
const url = chrome.extension.getURL("/static/wallet.html#/welcome");
|
2019-09-05 16:10:53 +02:00
|
|
|
chrome.tabs.create({ active: true, url: url });
|
|
|
|
}
|
|
|
|
});
|
2019-11-02 00:46:57 +01:00
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
}
|
2019-09-05 16:10:53 +02:00
|
|
|
|
2020-05-01 10:46:56 +02:00
|
|
|
function headerListener(
|
|
|
|
details: chrome.webRequest.WebResponseHeadersDetails,
|
|
|
|
): chrome.webRequest.BlockingResponse | undefined {
|
2020-05-01 11:34:12 +02:00
|
|
|
console.log("header listener");
|
2020-05-01 10:46:56 +02:00
|
|
|
if (chrome.runtime.lastError) {
|
|
|
|
console.error(chrome.runtime.lastError);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const wallet = currentWallet;
|
|
|
|
if (!wallet) {
|
|
|
|
console.warn("wallet not available while handling header");
|
|
|
|
return;
|
|
|
|
}
|
2020-05-01 11:34:12 +02:00
|
|
|
console.log("in header listener");
|
2020-09-09 09:15:49 +02:00
|
|
|
if (
|
|
|
|
details.statusCode === 402 ||
|
|
|
|
details.statusCode === 202 ||
|
|
|
|
details.statusCode === 200
|
|
|
|
) {
|
2020-05-01 10:46:56 +02:00
|
|
|
console.log(`got 402/202 from ${details.url}`);
|
|
|
|
for (const header of details.responseHeaders || []) {
|
|
|
|
if (header.name.toLowerCase() === "taler") {
|
|
|
|
const talerUri = header.value || "";
|
2020-08-12 09:11:00 +02:00
|
|
|
const uriType = classifyTalerUri(talerUri);
|
2020-05-01 10:46:56 +02:00
|
|
|
switch (uriType) {
|
2020-08-12 09:11:00 +02:00
|
|
|
case TalerUriType.TalerWithdraw:
|
2020-05-01 10:46:56 +02:00
|
|
|
return makeSyncWalletRedirect(
|
2021-06-16 22:01:06 +02:00
|
|
|
"/static/wallet.html#/withdraw",
|
2020-05-01 10:46:56 +02:00
|
|
|
details.tabId,
|
|
|
|
details.url,
|
|
|
|
{
|
|
|
|
talerWithdrawUri: talerUri,
|
|
|
|
},
|
|
|
|
);
|
2020-08-12 09:11:00 +02:00
|
|
|
case TalerUriType.TalerPay:
|
2020-05-01 10:46:56 +02:00
|
|
|
return makeSyncWalletRedirect(
|
2021-06-16 22:01:06 +02:00
|
|
|
"/static/wallet.html#/pay",
|
2020-05-01 10:46:56 +02:00
|
|
|
details.tabId,
|
|
|
|
details.url,
|
|
|
|
{
|
|
|
|
talerPayUri: talerUri,
|
|
|
|
},
|
|
|
|
);
|
2020-08-12 09:11:00 +02:00
|
|
|
case TalerUriType.TalerTip:
|
2020-05-01 10:46:56 +02:00
|
|
|
return makeSyncWalletRedirect(
|
2021-06-16 22:01:06 +02:00
|
|
|
"/static/wallet.html#/tip",
|
2020-05-01 10:46:56 +02:00
|
|
|
details.tabId,
|
|
|
|
details.url,
|
|
|
|
{
|
|
|
|
talerTipUri: talerUri,
|
|
|
|
},
|
|
|
|
);
|
2020-08-12 09:11:00 +02:00
|
|
|
case TalerUriType.TalerRefund:
|
2020-05-01 10:46:56 +02:00
|
|
|
return makeSyncWalletRedirect(
|
2021-06-16 22:01:06 +02:00
|
|
|
"/static/wallet.html#/refund",
|
2020-05-01 10:46:56 +02:00
|
|
|
details.tabId,
|
|
|
|
details.url,
|
|
|
|
{
|
|
|
|
talerRefundUri: talerUri,
|
|
|
|
},
|
|
|
|
);
|
2020-08-12 09:11:00 +02:00
|
|
|
case TalerUriType.TalerNotifyReserve:
|
2020-05-01 10:46:56 +02:00
|
|
|
Promise.resolve().then(() => {
|
|
|
|
const w = currentWallet;
|
|
|
|
if (!w) {
|
|
|
|
return;
|
|
|
|
}
|
2021-06-17 21:06:45 +02:00
|
|
|
// FIXME: Is this still useful?
|
|
|
|
// handleNotifyReserve(w);
|
2020-05-01 10:46:56 +02:00
|
|
|
});
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
console.warn(
|
|
|
|
"Response with HTTP 402 has Taler header, but header value is not a taler:// URI.",
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
function setupHeaderListener(): void {
|
2020-05-01 11:34:12 +02:00
|
|
|
console.log("setting up header listener");
|
2020-05-01 10:46:56 +02:00
|
|
|
// Handlers for catching HTTP requests
|
2020-06-03 12:51:09 +02:00
|
|
|
getPermissionsApi().contains(extendedPermissions, (result: boolean) => {
|
2020-05-01 11:34:12 +02:00
|
|
|
if (
|
2020-08-10 18:49:23 +02:00
|
|
|
"webRequest" in chrome &&
|
|
|
|
"onHeadersReceived" in chrome.webRequest &&
|
2020-05-01 11:34:12 +02:00
|
|
|
chrome.webRequest.onHeadersReceived.hasListener(headerListener)
|
|
|
|
) {
|
|
|
|
chrome.webRequest.onHeadersReceived.removeListener(headerListener);
|
|
|
|
}
|
|
|
|
if (result) {
|
|
|
|
console.log("actually adding listener");
|
|
|
|
chrome.webRequest.onHeadersReceived.addListener(
|
|
|
|
headerListener,
|
|
|
|
{ urls: ["<all_urls>"] },
|
|
|
|
["responseHeaders", "blocking"],
|
|
|
|
);
|
|
|
|
}
|
2020-08-10 18:49:23 +02:00
|
|
|
if ("webRequest" in chrome) {
|
|
|
|
chrome.webRequest.handlerBehaviorChanged(() => {
|
|
|
|
if (chrome.runtime.lastError) {
|
|
|
|
console.error(chrome.runtime.lastError);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2020-05-01 11:34:12 +02:00
|
|
|
});
|
2020-05-01 10:46:56 +02:00
|
|
|
}
|
|
|
|
|
2019-11-02 00:46:57 +01:00
|
|
|
/**
|
|
|
|
* Main function to run for the WebExtension backend.
|
|
|
|
*
|
|
|
|
* Sets up all event handlers and other machinery.
|
|
|
|
*/
|
2020-04-06 20:02:01 +02:00
|
|
|
export async function wxMain(): Promise<void> {
|
2017-05-31 22:55:03 +02:00
|
|
|
// Explicitly unload the extension page as soon as an update is available,
|
|
|
|
// so the update gets installed as soon as possible.
|
2020-03-30 12:39:32 +02:00
|
|
|
chrome.runtime.onUpdateAvailable.addListener((details) => {
|
2017-05-31 22:55:03 +02:00
|
|
|
console.log("update available:", details);
|
|
|
|
chrome.runtime.reload();
|
2017-10-15 19:28:35 +02:00
|
|
|
});
|
2017-06-05 02:00:03 +02:00
|
|
|
reinitWallet();
|
2016-11-20 08:58:04 +01:00
|
|
|
|
|
|
|
// Handlers for messages coming directly from the content
|
|
|
|
// script on the page
|
|
|
|
chrome.runtime.onMessage.addListener((req, sender, sendResponse) => {
|
2017-06-05 03:20:28 +02:00
|
|
|
dispatch(req, sender, sendResponse);
|
2016-11-20 08:58:04 +01:00
|
|
|
return true;
|
|
|
|
});
|
2016-10-12 02:55:53 +02:00
|
|
|
|
2020-05-04 14:11:22 +02:00
|
|
|
chrome.runtime.onConnect.addListener((port) => {
|
|
|
|
notificationPorts.push(port);
|
|
|
|
port.onDisconnect.addListener((discoPort) => {
|
|
|
|
const idx = notificationPorts.indexOf(discoPort);
|
|
|
|
if (idx >= 0) {
|
|
|
|
notificationPorts.splice(idx, 1);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-06-03 12:51:09 +02:00
|
|
|
try {
|
|
|
|
setupHeaderListener();
|
|
|
|
} catch (e) {
|
|
|
|
console.log(e);
|
|
|
|
}
|
2020-05-04 14:11:22 +02:00
|
|
|
|
2020-06-03 12:51:09 +02:00
|
|
|
// On platforms that support it, also listen to external
|
|
|
|
// modification of permissions.
|
|
|
|
getPermissionsApi().addPermissionsListener((perm) => {
|
2020-05-01 11:34:12 +02:00
|
|
|
if (chrome.runtime.lastError) {
|
|
|
|
console.error(chrome.runtime.lastError);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
setupHeaderListener();
|
|
|
|
});
|
2016-10-11 20:26:37 +02:00
|
|
|
}
|