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.
|
|
|
|
*/
|
2019-12-12 21:00:54 +01:00
|
|
|
import { BrowserCryptoWorkerFactory } from "../crypto/workers/cryptoApi";
|
2019-12-13 13:10:20 +01:00
|
|
|
import { deleteTalerDatabase, openTalerDatabase, WALLET_DB_VERSION } from "../db";
|
2019-12-12 21:00:54 +01:00
|
|
|
import { ConfirmReserveRequest, CreateReserveRequest, ReturnCoinsRequest, WalletDiagnostics } from "../types/walletTypes";
|
2019-12-02 00:42:40 +01:00
|
|
|
import { AmountJson } from "../util/amounts";
|
2019-12-12 21:00:54 +01:00
|
|
|
import { BrowserHttpLib } from "../util/http";
|
|
|
|
import { OpenedPromise, openPromise } from "../util/promiseUtils";
|
|
|
|
import { classifyTalerUri, TalerUriType } from "../util/taleruri";
|
2019-08-24 19:31:24 +02:00
|
|
|
import { Wallet } from "../wallet";
|
2017-05-28 23:15:41 +02:00
|
|
|
import { ChromeBadge } from "./chromeBadge";
|
2019-12-12 21:00:54 +01:00
|
|
|
import { isFirefox } from "./compat";
|
2017-05-31 16:04:14 +02:00
|
|
|
import { MessageType } from "./messages";
|
2017-06-05 03:20:28 +02:00
|
|
|
import * as wxApi from "./wxApi";
|
2017-05-28 01:10:54 +02:00
|
|
|
import MessageSender = chrome.runtime.MessageSender;
|
2019-12-12 22:39:45 +01:00
|
|
|
import { Database } from "../util/query";
|
2016-02-09 21:56:06 +01:00
|
|
|
|
2017-06-05 03:20:28 +02:00
|
|
|
const NeedsWallet = Symbol("NeedsWallet");
|
|
|
|
|
2019-09-05 16:10:53 +02:00
|
|
|
async function handleMessage(
|
2019-08-24 19:31:24 +02:00
|
|
|
sender: MessageSender,
|
|
|
|
type: MessageType,
|
|
|
|
detail: any,
|
2019-09-05 16:10:53 +02:00
|
|
|
): Promise<any> {
|
2017-05-31 16:04:14 +02:00
|
|
|
function assertNotFound(t: never): never {
|
|
|
|
console.error(`Request type ${t as string} unknown`);
|
|
|
|
console.error(`Request detail was ${detail}`);
|
2019-08-31 13:27:12 +02:00
|
|
|
return {
|
|
|
|
error: {
|
|
|
|
message: `request type ${t as string} unknown`,
|
|
|
|
requestType: type,
|
|
|
|
},
|
|
|
|
} as never;
|
2017-05-31 16:04:14 +02:00
|
|
|
}
|
2017-06-05 03:20:28 +02:00
|
|
|
function needsWallet(): Wallet {
|
|
|
|
if (!currentWallet) {
|
|
|
|
throw NeedsWallet;
|
|
|
|
}
|
|
|
|
return currentWallet;
|
|
|
|
}
|
2017-05-31 16:04:14 +02:00
|
|
|
switch (type) {
|
2017-06-05 03:20:28 +02:00
|
|
|
case "balances": {
|
|
|
|
return needsWallet().getBalances();
|
|
|
|
}
|
|
|
|
case "dump-db": {
|
|
|
|
const db = needsWallet().db;
|
2019-12-12 22:39:45 +01:00
|
|
|
return db.exportDatabase()
|
2017-06-05 03:20:28 +02:00
|
|
|
}
|
|
|
|
case "import-db": {
|
|
|
|
const db = needsWallet().db;
|
2019-12-12 22:39:45 +01:00
|
|
|
return db.importDatabase(detail.dump);
|
2017-06-05 03:20:28 +02:00
|
|
|
}
|
|
|
|
case "ping": {
|
2016-10-11 20:26:37 +02:00
|
|
|
return Promise.resolve();
|
2017-06-05 03:20:28 +02:00
|
|
|
}
|
|
|
|
case "reset-db": {
|
2019-12-12 22:39:45 +01:00
|
|
|
deleteTalerDatabase(indexedDB);
|
2018-02-20 16:17:05 +01:00
|
|
|
setBadgeText({ text: "" });
|
2016-01-06 15:39:22 +01:00
|
|
|
console.log("reset done");
|
2017-06-05 03:20:28 +02:00
|
|
|
if (!currentWallet) {
|
|
|
|
reinitWallet();
|
|
|
|
}
|
2016-02-17 15:56:48 +01:00
|
|
|
return Promise.resolve({});
|
2017-06-05 03:20:28 +02:00
|
|
|
}
|
2017-05-31 16:04:14 +02:00
|
|
|
case "create-reserve": {
|
2016-02-09 21:56:06 +01:00
|
|
|
const d = {
|
|
|
|
amount: detail.amount,
|
2017-05-28 01:10:54 +02:00
|
|
|
exchange: detail.exchange,
|
2017-07-20 02:17:55 +02:00
|
|
|
senderWire: detail.senderWire,
|
2016-02-09 21:56:06 +01:00
|
|
|
};
|
|
|
|
const req = CreateReserveRequest.checked(d);
|
2017-06-05 03:20:28 +02:00
|
|
|
return needsWallet().createReserve(req);
|
2017-05-31 16:04:14 +02:00
|
|
|
}
|
2017-06-05 03:20:28 +02:00
|
|
|
case "confirm-reserve": {
|
2016-02-09 21:56:06 +01:00
|
|
|
const d = {
|
2017-05-28 00:38:50 +02:00
|
|
|
reservePub: detail.reservePub,
|
2016-01-06 15:39:22 +01:00
|
|
|
};
|
2016-02-09 21:56:06 +01:00
|
|
|
const req = ConfirmReserveRequest.checked(d);
|
2017-06-05 03:20:28 +02:00
|
|
|
return needsWallet().confirmReserve(req);
|
|
|
|
}
|
|
|
|
case "confirm-pay": {
|
2019-11-30 00:36:20 +01:00
|
|
|
if (typeof detail.proposalId !== "string") {
|
|
|
|
throw Error("proposalId must be string");
|
2016-02-17 15:56:48 +01:00
|
|
|
}
|
2018-01-17 03:49:54 +01:00
|
|
|
return needsWallet().confirmPay(detail.proposalId, detail.sessionId);
|
2017-06-05 03:20:28 +02:00
|
|
|
}
|
|
|
|
case "exchange-info": {
|
2016-02-18 22:50:17 +01:00
|
|
|
if (!detail.baseUrl) {
|
2016-10-12 02:55:53 +02:00
|
|
|
return Promise.resolve({ error: "bad url" });
|
2016-02-18 22:50:17 +01:00
|
|
|
}
|
2017-06-05 03:20:28 +02:00
|
|
|
return needsWallet().updateExchangeFromUrl(detail.baseUrl);
|
|
|
|
}
|
|
|
|
case "reserve-creation-info": {
|
2016-02-18 22:50:17 +01:00
|
|
|
if (!detail.baseUrl || typeof detail.baseUrl !== "string") {
|
2016-10-12 02:55:53 +02:00
|
|
|
return Promise.resolve({ error: "bad url" });
|
2016-02-18 22:50:17 +01:00
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
const amount = AmountJson.checked(detail.amount);
|
2019-08-30 17:27:59 +02:00
|
|
|
return needsWallet().getWithdrawDetailsForAmount(detail.baseUrl, amount);
|
2017-06-05 03:20:28 +02:00
|
|
|
}
|
|
|
|
case "get-history": {
|
2016-01-24 02:29:13 +01:00
|
|
|
// TODO: limit history length
|
2017-06-05 03:20:28 +02:00
|
|
|
return needsWallet().getHistory();
|
|
|
|
}
|
|
|
|
case "get-exchanges": {
|
|
|
|
return needsWallet().getExchanges();
|
|
|
|
}
|
|
|
|
case "get-currencies": {
|
|
|
|
return needsWallet().getCurrencies();
|
|
|
|
}
|
|
|
|
case "update-currency": {
|
|
|
|
return needsWallet().updateCurrency(detail.currencyRecord);
|
|
|
|
}
|
|
|
|
case "get-reserves": {
|
2016-10-12 02:55:53 +02:00
|
|
|
if (typeof detail.exchangeBaseUrl !== "string") {
|
|
|
|
return Promise.reject(Error("exchangeBaseUrl missing"));
|
|
|
|
}
|
2017-06-05 03:20:28 +02:00
|
|
|
return needsWallet().getReserves(detail.exchangeBaseUrl);
|
|
|
|
}
|
|
|
|
case "get-payback-reserves": {
|
|
|
|
return needsWallet().getPaybackReserves();
|
|
|
|
}
|
|
|
|
case "withdraw-payback-reserve": {
|
2017-05-01 04:05:16 +02:00
|
|
|
if (typeof detail.reservePub !== "string") {
|
|
|
|
return Promise.reject(Error("reservePub missing"));
|
|
|
|
}
|
2019-12-02 00:42:40 +01:00
|
|
|
throw Error("not implemented");
|
2017-06-05 03:20:28 +02:00
|
|
|
}
|
|
|
|
case "get-coins": {
|
2016-10-12 02:55:53 +02:00
|
|
|
if (typeof detail.exchangeBaseUrl !== "string") {
|
|
|
|
return Promise.reject(Error("exchangBaseUrl missing"));
|
|
|
|
}
|
2019-11-21 23:09:43 +01:00
|
|
|
return needsWallet().getCoinsForExchange(detail.exchangeBaseUrl);
|
2017-06-05 03:20:28 +02:00
|
|
|
}
|
|
|
|
case "get-denoms": {
|
2016-11-16 01:59:39 +01:00
|
|
|
if (typeof detail.exchangeBaseUrl !== "string") {
|
|
|
|
return Promise.reject(Error("exchangBaseUrl missing"));
|
|
|
|
}
|
2017-06-05 03:20:28 +02:00
|
|
|
return needsWallet().getDenoms(detail.exchangeBaseUrl);
|
|
|
|
}
|
|
|
|
case "refresh-coin": {
|
2016-10-13 02:36:33 +02:00
|
|
|
if (typeof detail.coinPub !== "string") {
|
|
|
|
return Promise.reject(Error("coinPub missing"));
|
|
|
|
}
|
2017-06-05 03:20:28 +02:00
|
|
|
return needsWallet().refresh(detail.coinPub);
|
|
|
|
}
|
|
|
|
case "payback-coin": {
|
2017-05-01 04:33:47 +02:00
|
|
|
if (typeof detail.coinPub !== "string") {
|
|
|
|
return Promise.reject(Error("coinPub missing"));
|
|
|
|
}
|
2017-06-05 03:20:28 +02:00
|
|
|
return needsWallet().payback(detail.coinPub);
|
|
|
|
}
|
2017-08-14 04:16:12 +02:00
|
|
|
case "get-sender-wire-infos": {
|
|
|
|
return needsWallet().getSenderWireInfos();
|
|
|
|
}
|
|
|
|
case "return-coins": {
|
|
|
|
const d = {
|
|
|
|
amount: detail.amount,
|
|
|
|
exchange: detail.exchange,
|
|
|
|
senderWire: detail.senderWire,
|
|
|
|
};
|
|
|
|
const req = ReturnCoinsRequest.checked(d);
|
|
|
|
return needsWallet().returnCoins(req);
|
|
|
|
}
|
2017-06-05 03:20:28 +02:00
|
|
|
case "check-upgrade": {
|
|
|
|
let dbResetRequired = false;
|
|
|
|
if (!currentWallet) {
|
|
|
|
dbResetRequired = true;
|
|
|
|
}
|
|
|
|
const resp: wxApi.UpgradeResponse = {
|
2017-06-05 03:36:33 +02:00
|
|
|
currentDbVersion: WALLET_DB_VERSION.toString(),
|
2017-10-15 19:28:35 +02:00
|
|
|
dbResetRequired,
|
2019-09-05 16:10:53 +02:00
|
|
|
oldDbVersion: (outdatedDbVersion || "unknown").toString(),
|
2017-10-15 19:28:35 +02:00
|
|
|
};
|
2017-06-05 03:20:28 +02:00
|
|
|
return resp;
|
|
|
|
}
|
2019-08-31 13:27:12 +02:00
|
|
|
case "get-purchase-details": {
|
2017-08-27 03:56:19 +02:00
|
|
|
const contractTermsHash = detail.contractTermsHash;
|
|
|
|
if (!contractTermsHash) {
|
|
|
|
throw Error("contractTermsHash missing");
|
|
|
|
}
|
2019-08-31 13:27:12 +02:00
|
|
|
return needsWallet().getPurchaseDetails(contractTermsHash);
|
2017-10-15 19:28:35 +02:00
|
|
|
}
|
2018-01-22 01:12:08 +01:00
|
|
|
case "accept-refund":
|
2019-08-31 11:49:36 +02:00
|
|
|
return needsWallet().applyRefund(detail.refundUrl);
|
2017-11-30 04:07:36 +01:00
|
|
|
case "get-tip-status": {
|
2019-08-30 17:27:59 +02:00
|
|
|
return needsWallet().getTipStatus(detail.talerTipUri);
|
2017-11-30 04:07:36 +01:00
|
|
|
}
|
|
|
|
case "accept-tip": {
|
2019-08-30 17:27:59 +02:00
|
|
|
return needsWallet().acceptTip(detail.talerTipUri);
|
2017-11-30 04:07:36 +01:00
|
|
|
}
|
2018-01-29 16:41:17 +01:00
|
|
|
case "abort-failed-payment": {
|
|
|
|
if (!detail.contractTermsHash) {
|
|
|
|
throw Error("contracTermsHash not given");
|
|
|
|
}
|
|
|
|
return needsWallet().abortFailedPayment(detail.contractTermsHash);
|
|
|
|
}
|
2018-09-20 02:56:13 +02:00
|
|
|
case "benchmark-crypto": {
|
|
|
|
if (!detail.repetitions) {
|
|
|
|
throw Error("repetitions not given");
|
|
|
|
}
|
|
|
|
return needsWallet().benchmarkCrypto(detail.repetitions);
|
|
|
|
}
|
2019-08-29 23:12:55 +02:00
|
|
|
case "get-withdraw-details": {
|
2019-08-30 17:27:59 +02:00
|
|
|
return needsWallet().getWithdrawDetailsForUri(
|
2019-08-29 23:12:55 +02:00
|
|
|
detail.talerWithdrawUri,
|
|
|
|
detail.maybeSelectedExchange,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
case "accept-withdrawal": {
|
|
|
|
return needsWallet().acceptWithdrawal(
|
|
|
|
detail.talerWithdrawUri,
|
|
|
|
detail.selectedExchange,
|
|
|
|
);
|
|
|
|
}
|
2019-09-05 16:10:53 +02:00
|
|
|
case "get-diagnostics": {
|
|
|
|
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);
|
2019-12-06 12:47:28 +01:00
|
|
|
if (
|
|
|
|
currentDatabase === undefined &&
|
|
|
|
outdatedDbVersion === undefined &&
|
|
|
|
isFirefox()
|
|
|
|
) {
|
2019-09-05 16:10:53 +02:00
|
|
|
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-29 23:12:55 +02:00
|
|
|
case "prepare-pay":
|
|
|
|
return needsWallet().preparePay(detail.talerPayUri);
|
2017-05-31 16:04:14 +02:00
|
|
|
default:
|
|
|
|
// Exhaustiveness check.
|
|
|
|
// See https://www.typescriptlang.org/docs/handbook/advanced-types.html
|
|
|
|
return assertNotFound(type);
|
2016-11-20 08:58:04 +01:00
|
|
|
}
|
2017-05-31 16:04:14 +02:00
|
|
|
}
|
2016-09-23 14:09:07 +02:00
|
|
|
|
2019-08-24 19:31:24 +02:00
|
|
|
async function dispatch(
|
|
|
|
req: any,
|
|
|
|
sender: any,
|
|
|
|
sendResponse: any,
|
|
|
|
): Promise<void> {
|
2016-11-20 08:58:04 +01:00
|
|
|
try {
|
2017-06-05 03:20:28 +02:00
|
|
|
const p = handleMessage(sender, req.type, req.detail);
|
2017-05-28 01:10:54 +02:00
|
|
|
const r = await p;
|
2016-11-20 08:58:04 +01:00
|
|
|
try {
|
|
|
|
sendResponse(r);
|
|
|
|
} catch (e) {
|
|
|
|
// might fail if tab disconnected
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.log(`exception during wallet handler for '${req.type}'`);
|
|
|
|
console.log("request", req);
|
|
|
|
console.error(e);
|
2017-05-28 01:10:54 +02:00
|
|
|
let stack;
|
2017-04-28 23:28:27 +02:00
|
|
|
try {
|
|
|
|
stack = e.stack.toString();
|
|
|
|
} catch (e) {
|
|
|
|
// might fail
|
|
|
|
}
|
2016-11-20 08:58:04 +01:00
|
|
|
try {
|
|
|
|
sendResponse({
|
2019-08-31 13:27:12 +02:00
|
|
|
error: {
|
|
|
|
message: e.message,
|
|
|
|
stack,
|
2019-09-05 16:10:53 +02:00
|
|
|
},
|
2016-11-20 08:58:04 +01:00
|
|
|
});
|
|
|
|
} catch (e) {
|
2017-04-28 23:28:27 +02:00
|
|
|
console.log(e);
|
2016-11-20 08:58:04 +01: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));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-02-20 16:17:05 +01:00
|
|
|
function setBadgeText(options: chrome.browserAction.BadgeTextDetails) {
|
|
|
|
// 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) => {
|
2019-08-24 19:31:24 +02:00
|
|
|
chrome.extension
|
|
|
|
.getBackgroundPage()!
|
|
|
|
.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 },
|
|
|
|
): object {
|
2019-12-02 00:42:40 +01:00
|
|
|
const innerUrl = new URL(chrome.extension.getURL("/src/webex/pages/" + url));
|
2018-02-07 16:15:40 +01:00
|
|
|
if (params) {
|
|
|
|
for (const key in params) {
|
2019-12-02 00:42:40 +01:00
|
|
|
const p = params[key];
|
|
|
|
if (p) {
|
|
|
|
innerUrl.searchParams.set(key, p);
|
2018-02-07 16:15:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-02 00:42:40 +01:00
|
|
|
const outerUrl = new URL(
|
2019-08-24 19:31:24 +02:00
|
|
|
chrome.extension.getURL("/src/webex/pages/redirect.html"),
|
|
|
|
);
|
2019-12-02 00:42:40 +01:00
|
|
|
outerUrl.searchParams.set("url", innerUrl.href);
|
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.
|
2019-08-24 19:31:24 +02:00
|
|
|
const doit = async () => {
|
2018-02-20 15:12:45 +01:00
|
|
|
await waitMs(150);
|
|
|
|
const tab = await getTab(tabId);
|
|
|
|
if (tab.url === oldUrl) {
|
2019-12-02 00:42:40 +01:00
|
|
|
chrome.tabs.update(tabId, { url: outerUrl.href });
|
2018-02-20 15:12:45 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
doit();
|
|
|
|
}
|
2019-12-02 00:42:40 +01:00
|
|
|
return { redirectUrl: outerUrl.href };
|
2018-02-07 16:15:40 +01:00
|
|
|
}
|
|
|
|
|
2017-06-05 02:00:03 +02:00
|
|
|
/**
|
|
|
|
* Currently active wallet instance. Might be unloaded and
|
|
|
|
* re-instantiated when the database is reset.
|
|
|
|
*/
|
2019-08-24 19:31:24 +02:00
|
|
|
let currentWallet: Wallet | undefined;
|
2017-06-05 02:00:03 +02:00
|
|
|
|
2019-09-05 16:10:53 +02:00
|
|
|
let currentDatabase: IDBDatabase | undefined;
|
|
|
|
|
2017-06-05 03:20:28 +02:00
|
|
|
/**
|
|
|
|
* Last version if an outdated DB, if applicable.
|
|
|
|
*/
|
2019-09-05 16:10:53 +02:00
|
|
|
let outdatedDbVersion: number | undefined;
|
|
|
|
|
|
|
|
let walletInit: OpenedPromise<void> = openPromise<void>();
|
2017-06-05 03:20:28 +02:00
|
|
|
|
2017-06-05 02:00:03 +02:00
|
|
|
async function reinitWallet() {
|
|
|
|
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
|
|
|
const badge = new ChromeBadge();
|
|
|
|
try {
|
2019-12-12 22:39:45 +01:00
|
|
|
currentDatabase = await openTalerDatabase(
|
2019-09-05 16:10:53 +02:00
|
|
|
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");
|
2019-08-24 19:31:24 +02:00
|
|
|
const wallet = new Wallet(
|
2019-12-12 22:39:45 +01:00
|
|
|
new Database(currentDatabase),
|
2019-08-24 19:31:24 +02:00
|
|
|
http,
|
|
|
|
new BrowserCryptoWorkerFactory(),
|
|
|
|
);
|
2019-12-06 12:47:28 +01:00
|
|
|
wallet.runRetryLoop().catch(e => {
|
2019-12-02 17:35:47 +01:00
|
|
|
console.log("error during wallet retry loop", e);
|
|
|
|
});
|
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
|
|
|
}
|
|
|
|
|
2017-08-09 16:51:25 +02:00
|
|
|
/**
|
|
|
|
* Inject a script into a tab. Gracefully logs errors
|
|
|
|
* and works around a bug where the tab's URL does not match the internal URL,
|
|
|
|
* making the injection fail in a confusing way.
|
|
|
|
*/
|
2019-08-24 19:31:24 +02:00
|
|
|
function injectScript(
|
|
|
|
tabId: number,
|
|
|
|
details: chrome.tabs.InjectDetails,
|
|
|
|
actualUrl: string,
|
|
|
|
): void {
|
|
|
|
chrome.tabs.executeScript(tabId, details, () => {
|
2017-08-09 16:51:25 +02:00
|
|
|
// Required to squelch chrome's "unchecked lastError" warning.
|
|
|
|
// Sometimes chrome reports the URL of a tab as http/https but
|
|
|
|
// injection fails. This can happen when a page is unloaded or
|
|
|
|
// shows a "no internet" page etc.
|
|
|
|
if (chrome.runtime.lastError) {
|
2019-08-24 19:31:24 +02:00
|
|
|
console.warn(
|
|
|
|
"injection failed on page",
|
|
|
|
actualUrl,
|
|
|
|
chrome.runtime.lastError.message,
|
|
|
|
);
|
2017-08-09 16:51:25 +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.
|
2019-09-05 16:10:53 +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") {
|
|
|
|
const url = chrome.extension.getURL("/src/webex/pages/welcome.html");
|
|
|
|
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
|
|
|
|
2019-11-02 00:46:57 +01:00
|
|
|
/**
|
|
|
|
* Main function to run for the WebExtension backend.
|
|
|
|
*
|
|
|
|
* Sets up all event handlers and other machinery.
|
|
|
|
*/
|
|
|
|
export async function wxMain() {
|
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.
|
2019-08-24 19:31:24 +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-05-31 22:55:03 +02:00
|
|
|
|
2019-08-24 19:31:24 +02:00
|
|
|
chrome.tabs.query({}, tabs => {
|
2017-08-30 15:35:34 +02:00
|
|
|
console.log("got tabs", tabs);
|
2017-05-28 01:10:54 +02:00
|
|
|
for (const tab of tabs) {
|
2016-09-12 17:41:12 +02:00
|
|
|
if (!tab.url || !tab.id) {
|
2017-08-30 15:35:34 +02:00
|
|
|
continue;
|
2016-03-02 15:33:23 +01:00
|
|
|
}
|
2019-12-02 00:42:40 +01:00
|
|
|
const uri = new URL(tab.url);
|
|
|
|
if (uri.protocol !== "http:" && uri.protocol !== "https:") {
|
2017-08-30 15:35:34 +02:00
|
|
|
continue;
|
2016-03-02 15:33:23 +01:00
|
|
|
}
|
2019-08-24 19:31:24 +02:00
|
|
|
console.log(
|
|
|
|
"injecting into existing tab",
|
|
|
|
tab.id,
|
|
|
|
"with url",
|
2019-12-02 00:42:40 +01:00
|
|
|
uri.href,
|
2019-08-24 19:31:24 +02:00
|
|
|
"protocol",
|
2019-12-02 00:42:40 +01:00
|
|
|
uri.protocol,
|
2019-08-24 19:31:24 +02:00
|
|
|
);
|
|
|
|
injectScript(
|
|
|
|
tab.id,
|
|
|
|
{ file: "/dist/contentScript-bundle.js", runAt: "document_start" },
|
2019-12-02 00:42:40 +01:00
|
|
|
uri.href,
|
2019-08-24 19:31:24 +02:00
|
|
|
);
|
2017-08-09 16:51:25 +02:00
|
|
|
const code = `
|
|
|
|
if (("taler" in window) || document.documentElement.getAttribute("data-taler-nojs")) {
|
|
|
|
document.dispatchEvent(new Event("taler-probe-result"));
|
|
|
|
}
|
|
|
|
`;
|
2019-12-02 00:42:40 +01:00
|
|
|
injectScript(tab.id, { code, runAt: "document_start" }, uri.href);
|
2016-03-02 15:33:23 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-08-24 19:31:24 +02:00
|
|
|
const tabTimers: { [n: number]: number[] } = {};
|
2016-11-20 08:47:22 +01:00
|
|
|
|
|
|
|
chrome.tabs.onRemoved.addListener((tabId, changeInfo) => {
|
2017-05-28 01:10:54 +02:00
|
|
|
const tt = tabTimers[tabId] || [];
|
|
|
|
for (const t of tt) {
|
2019-08-16 23:29:29 +02:00
|
|
|
chrome.extension.getBackgroundPage()!.clearTimeout(t);
|
2016-11-20 08:47:22 +01:00
|
|
|
}
|
|
|
|
});
|
2016-11-19 23:03:58 +01:00
|
|
|
chrome.tabs.onUpdated.addListener((tabId, changeInfo) => {
|
2017-05-28 01:10:54 +02:00
|
|
|
if (changeInfo.status !== "complete") {
|
2016-11-19 23:03:58 +01:00
|
|
|
return;
|
|
|
|
}
|
2016-11-20 08:47:22 +01:00
|
|
|
const timers: number[] = [];
|
|
|
|
|
|
|
|
const addRun = (dt: number) => {
|
2019-08-16 23:29:29 +02:00
|
|
|
const id = chrome.extension.getBackgroundPage()!.setTimeout(run, dt);
|
2016-11-20 08:47:22 +01:00
|
|
|
timers.push(id);
|
2017-05-28 01:10:54 +02:00
|
|
|
};
|
2016-11-20 08:47:22 +01:00
|
|
|
|
|
|
|
const run = () => {
|
|
|
|
timers.shift();
|
2019-08-24 19:31:24 +02:00
|
|
|
chrome.tabs.get(tabId, tab => {
|
2016-11-20 08:47:22 +01:00
|
|
|
if (chrome.runtime.lastError) {
|
|
|
|
return;
|
2016-11-19 23:03:58 +01:00
|
|
|
}
|
2016-11-20 08:47:22 +01:00
|
|
|
if (!tab.url || !tab.id) {
|
|
|
|
return;
|
|
|
|
}
|
2019-12-02 00:42:40 +01:00
|
|
|
const uri = new URL(tab.url);
|
|
|
|
if (!(uri.protocol === "http:" || uri.protocol === "https:")) {
|
2016-11-20 08:47:22 +01:00
|
|
|
return;
|
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
const code = `
|
2016-11-20 08:47:22 +01:00
|
|
|
if (("taler" in window) || document.documentElement.getAttribute("data-taler-nojs")) {
|
|
|
|
document.dispatchEvent(new Event("taler-probe-result"));
|
|
|
|
}
|
|
|
|
`;
|
2019-12-02 00:42:40 +01:00
|
|
|
injectScript(tab.id!, { code, runAt: "document_start" }, uri.href);
|
2016-11-20 08:47:22 +01:00
|
|
|
});
|
|
|
|
};
|
2016-11-19 23:03:58 +01:00
|
|
|
|
2016-11-20 08:47:22 +01:00
|
|
|
addRun(0);
|
|
|
|
addRun(50);
|
|
|
|
addRun(300);
|
|
|
|
addRun(1000);
|
|
|
|
addRun(2000);
|
|
|
|
addRun(4000);
|
|
|
|
addRun(8000);
|
|
|
|
addRun(16000);
|
|
|
|
tabTimers[tabId] = timers;
|
2016-11-19 23:03:58 +01: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
|
|
|
|
2016-11-20 08:58:04 +01:00
|
|
|
// Handlers for catching HTTP requests
|
2019-08-24 19:31:24 +02:00
|
|
|
chrome.webRequest.onHeadersReceived.addListener(
|
|
|
|
details => {
|
|
|
|
const wallet = currentWallet;
|
|
|
|
if (!wallet) {
|
|
|
|
console.warn("wallet not available while handling header");
|
|
|
|
}
|
2019-11-30 00:36:20 +01:00
|
|
|
if (details.statusCode === 402 || details.statusCode === 202) {
|
|
|
|
console.log(`got 402/202 from ${details.url}`);
|
2019-08-29 23:12:55 +02:00
|
|
|
for (let header of details.responseHeaders || []) {
|
|
|
|
if (header.name.toLowerCase() === "taler") {
|
|
|
|
const talerUri = header.value || "";
|
2019-12-06 12:47:28 +01:00
|
|
|
const uriType = classifyTalerUri(talerUri);
|
|
|
|
switch (uriType) {
|
|
|
|
case TalerUriType.TalerWithdraw:
|
|
|
|
return makeSyncWalletRedirect(
|
|
|
|
"withdraw.html",
|
|
|
|
details.tabId,
|
|
|
|
details.url,
|
|
|
|
{
|
|
|
|
talerWithdrawUri: talerUri,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
case TalerUriType.TalerPay:
|
|
|
|
return makeSyncWalletRedirect(
|
|
|
|
"pay.html",
|
|
|
|
details.tabId,
|
|
|
|
details.url,
|
|
|
|
{
|
|
|
|
talerPayUri: talerUri,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
case TalerUriType.TalerTip:
|
|
|
|
return makeSyncWalletRedirect(
|
|
|
|
"tip.html",
|
|
|
|
details.tabId,
|
|
|
|
details.url,
|
|
|
|
{
|
|
|
|
talerTipUri: talerUri,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
case TalerUriType.TalerRefund:
|
|
|
|
return makeSyncWalletRedirect(
|
|
|
|
"refund.html",
|
|
|
|
details.tabId,
|
|
|
|
details.url,
|
|
|
|
{
|
|
|
|
talerRefundUri: talerUri,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
case TalerUriType.TalerNotifyReserve:
|
|
|
|
Promise.resolve().then(() => {
|
|
|
|
const w = currentWallet;
|
|
|
|
if (!w) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
w.handleNotifyReserve();
|
|
|
|
});
|
|
|
|
break;
|
2019-11-30 00:36:20 +01:00
|
|
|
|
2019-12-06 12:47:28 +01:00
|
|
|
default:
|
|
|
|
console.warn(
|
|
|
|
"Response with HTTP 402 has Taler header, but header value is not a taler:// URI.",
|
|
|
|
);
|
|
|
|
break;
|
2019-08-29 23:12:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-24 19:31:24 +02:00
|
|
|
}
|
2019-08-29 23:12:55 +02:00
|
|
|
return {};
|
2019-08-24 19:31:24 +02:00
|
|
|
},
|
|
|
|
{ urls: ["<all_urls>"] },
|
|
|
|
["responseHeaders", "blocking"],
|
|
|
|
);
|
2016-10-11 20:26:37 +02:00
|
|
|
}
|