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
|
|
|
*/
|
|
|
|
|
|
|
|
|
2016-09-06 14:39:45 +02:00
|
|
|
import {
|
|
|
|
Wallet,
|
|
|
|
Offer,
|
|
|
|
Badge,
|
|
|
|
ConfirmReserveRequest,
|
|
|
|
CreateReserveRequest
|
|
|
|
} from "./wallet";
|
2016-02-10 02:03:31 +01:00
|
|
|
import {deleteDb, exportDb, openTalerDb} from "./db";
|
2016-01-10 20:07:42 +01:00
|
|
|
import {BrowserHttpLib} from "./http";
|
2016-02-17 15:56:48 +01:00
|
|
|
import {Checkable} from "./checkable";
|
2016-02-18 22:50:17 +01:00
|
|
|
import {AmountJson} from "./types";
|
2016-02-18 23:41:29 +01:00
|
|
|
import Port = chrome.runtime.Port;
|
|
|
|
import {Notifier} from "./types";
|
2016-03-02 02:16:18 +01:00
|
|
|
import {Contract} from "./types";
|
2016-03-04 18:01:52 +01:00
|
|
|
import MessageSender = chrome.runtime.MessageSender;
|
2016-02-09 21:56:06 +01:00
|
|
|
|
|
|
|
"use strict";
|
2016-01-11 02:48:19 +01:00
|
|
|
|
2016-01-05 14:20:13 +01:00
|
|
|
/**
|
|
|
|
* Messaging for the WebExtensions wallet. Should contain
|
|
|
|
* parts that are specific for WebExtensions, but as little business
|
|
|
|
* logic as possible.
|
2016-02-09 21:56:06 +01:00
|
|
|
*
|
2016-01-05 14:20:13 +01:00
|
|
|
* @author Florian Dold
|
|
|
|
*/
|
|
|
|
|
2016-02-15 11:29:58 +01:00
|
|
|
|
2016-03-04 18:01:52 +01:00
|
|
|
type Handler = (detail: any, sender: MessageSender) => Promise<any>;
|
2016-02-17 15:56:48 +01:00
|
|
|
|
|
|
|
function makeHandlers(db: IDBDatabase,
|
|
|
|
wallet: Wallet): {[msg: string]: Handler} {
|
2016-01-06 15:39:22 +01:00
|
|
|
return {
|
2016-03-04 18:01:52 +01:00
|
|
|
["balances"]: function(detail, sender) {
|
2016-02-17 15:56:48 +01:00
|
|
|
return wallet.getBalances();
|
2016-01-06 15:39:22 +01:00
|
|
|
},
|
2016-03-04 18:01:52 +01:00
|
|
|
["dump-db"]: function(detail, sender) {
|
2016-02-17 15:56:48 +01:00
|
|
|
return exportDb(db);
|
2016-01-06 15:39:22 +01:00
|
|
|
},
|
2016-03-04 18:01:52 +01:00
|
|
|
["ping"]: function(detail, sender) {
|
2016-09-09 14:07:54 +02:00
|
|
|
let info = paymentRequestCookies[sender.tab.id];
|
|
|
|
delete paymentRequestCookies[sender.tab.id];
|
|
|
|
return Promise.resolve(info);
|
2016-03-04 18:01:52 +01:00
|
|
|
},
|
|
|
|
["reset"]: function(detail, sender) {
|
2016-03-02 00:47:00 +01:00
|
|
|
if (db) {
|
|
|
|
let tx = db.transaction(db.objectStoreNames, 'readwrite');
|
|
|
|
for (let i = 0; i < db.objectStoreNames.length; i++) {
|
|
|
|
tx.objectStore(db.objectStoreNames[i]).clear();
|
|
|
|
}
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2016-01-10 20:07:42 +01:00
|
|
|
deleteDb();
|
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
chrome.browserAction.setBadgeText({text: ""});
|
|
|
|
console.log("reset done");
|
|
|
|
// Response is synchronous
|
2016-02-17 15:56:48 +01:00
|
|
|
return Promise.resolve({});
|
2016-01-06 15:39:22 +01:00
|
|
|
},
|
2016-03-04 18:01:52 +01:00
|
|
|
["create-reserve"]: function(detail, sender) {
|
2016-02-09 21:56:06 +01:00
|
|
|
const d = {
|
2016-03-01 19:39:17 +01:00
|
|
|
exchange: detail.exchange,
|
2016-02-09 21:56:06 +01:00
|
|
|
amount: detail.amount,
|
|
|
|
};
|
|
|
|
const req = CreateReserveRequest.checked(d);
|
2016-02-17 15:56:48 +01:00
|
|
|
return wallet.createReserve(req);
|
2016-02-09 21:56:06 +01:00
|
|
|
},
|
2016-03-04 18:01:52 +01:00
|
|
|
["confirm-reserve"]: function(detail, sender) {
|
2016-01-06 15:39:22 +01:00
|
|
|
// TODO: make it a checkable
|
2016-02-09 21:56:06 +01:00
|
|
|
const d = {
|
|
|
|
reservePub: detail.reservePub
|
2016-01-06 15:39:22 +01:00
|
|
|
};
|
2016-02-09 21:56:06 +01:00
|
|
|
const req = ConfirmReserveRequest.checked(d);
|
2016-02-17 15:56:48 +01:00
|
|
|
return wallet.confirmReserve(req);
|
2016-01-06 15:39:22 +01:00
|
|
|
},
|
2016-03-04 18:01:52 +01:00
|
|
|
["confirm-pay"]: function(detail, sender) {
|
2016-02-17 15:56:48 +01:00
|
|
|
let offer;
|
|
|
|
try {
|
|
|
|
offer = Offer.checked(detail.offer);
|
|
|
|
} catch (e) {
|
|
|
|
if (e instanceof Checkable.SchemaError) {
|
|
|
|
console.error("schema error:", e.message);
|
2016-02-18 22:50:17 +01:00
|
|
|
return Promise.resolve({
|
|
|
|
error: "invalid contract",
|
|
|
|
hint: e.message,
|
|
|
|
detail: detail
|
|
|
|
});
|
2016-02-17 15:56:48 +01:00
|
|
|
} else {
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return wallet.confirmPay(offer);
|
2016-01-06 15:39:22 +01:00
|
|
|
},
|
2016-04-27 06:03:04 +02:00
|
|
|
["check-pay"]: function(detail, sender) {
|
|
|
|
let offer;
|
|
|
|
try {
|
|
|
|
offer = Offer.checked(detail.offer);
|
|
|
|
} catch (e) {
|
|
|
|
if (e instanceof Checkable.SchemaError) {
|
|
|
|
console.error("schema error:", e.message);
|
|
|
|
return Promise.resolve({
|
|
|
|
error: "invalid contract",
|
|
|
|
hint: e.message,
|
|
|
|
detail: detail
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return wallet.checkPay(offer);
|
|
|
|
},
|
2016-03-04 18:01:52 +01:00
|
|
|
["execute-payment"]: function(detail, sender) {
|
2016-02-17 15:56:48 +01:00
|
|
|
return wallet.executePayment(detail.H_contract);
|
2016-01-24 02:29:13 +01:00
|
|
|
},
|
2016-03-01 19:39:17 +01:00
|
|
|
["exchange-info"]: function(detail) {
|
2016-02-18 22:50:17 +01:00
|
|
|
if (!detail.baseUrl) {
|
|
|
|
return Promise.resolve({error: "bad url"});
|
|
|
|
}
|
2016-03-01 19:39:17 +01:00
|
|
|
return wallet.updateExchangeFromUrl(detail.baseUrl);
|
2016-02-18 22:50:17 +01:00
|
|
|
},
|
2016-03-04 18:01:52 +01:00
|
|
|
["reserve-creation-info"]: function(detail, sender) {
|
2016-02-18 22:50:17 +01:00
|
|
|
if (!detail.baseUrl || typeof detail.baseUrl !== "string") {
|
|
|
|
return Promise.resolve({error: "bad url"});
|
|
|
|
}
|
|
|
|
let amount = AmountJson.checked(detail.amount);
|
|
|
|
return wallet.getReserveCreationInfo(detail.baseUrl, amount);
|
|
|
|
},
|
2016-03-04 18:01:52 +01:00
|
|
|
["check-repurchase"]: function(detail, sender) {
|
2016-02-23 14:07:53 +01:00
|
|
|
let contract = Contract.checked(detail.contract);
|
|
|
|
return wallet.checkRepurchase(contract);
|
|
|
|
},
|
2016-03-04 18:01:52 +01:00
|
|
|
["get-history"]: function(detail, sender) {
|
2016-01-24 02:29:13 +01:00
|
|
|
// TODO: limit history length
|
2016-02-17 15:56:48 +01:00
|
|
|
return wallet.getHistory();
|
2016-01-26 17:21:17 +01:00
|
|
|
},
|
2016-05-24 17:30:27 +02:00
|
|
|
["payment-failed"]: function(detail, sender) {
|
|
|
|
// For now we just update exchanges (maybe the exchange did something
|
|
|
|
// wrong and the keys were messed up).
|
|
|
|
// FIXME: in the future we should look at what actually went wrong.
|
2016-05-24 17:52:30 +02:00
|
|
|
console.error("payment reported as failed");
|
2016-05-24 17:30:27 +02:00
|
|
|
wallet.updateExchanges();
|
|
|
|
return Promise.resolve();
|
|
|
|
},
|
2016-01-06 15:39:22 +01:00
|
|
|
};
|
|
|
|
}
|
2016-01-05 14:20:13 +01:00
|
|
|
|
2016-02-09 21:56:06 +01:00
|
|
|
|
2016-01-10 20:07:42 +01:00
|
|
|
class ChromeBadge implements Badge {
|
2016-01-06 15:58:18 +01:00
|
|
|
setText(s: string) {
|
|
|
|
chrome.browserAction.setBadgeText({text: s});
|
|
|
|
}
|
|
|
|
|
|
|
|
setColor(c: string) {
|
|
|
|
chrome.browserAction.setBadgeBackgroundColor({color: c});
|
|
|
|
}
|
2016-05-24 02:05:19 +02:00
|
|
|
|
|
|
|
startBusy() {
|
2016-05-24 17:30:27 +02:00
|
|
|
this.setColor("#00F");
|
2016-05-24 02:05:19 +02:00
|
|
|
this.setText("...");
|
|
|
|
}
|
|
|
|
|
|
|
|
stopBusy() {
|
|
|
|
this.setText("");
|
|
|
|
}
|
2016-01-06 15:58:18 +01:00
|
|
|
}
|
|
|
|
|
2016-01-05 14:20:13 +01:00
|
|
|
|
2016-03-04 18:01:52 +01:00
|
|
|
function dispatch(handlers, req, sender, sendResponse) {
|
2016-02-17 15:56:48 +01:00
|
|
|
if (req.type in handlers) {
|
|
|
|
Promise
|
|
|
|
.resolve()
|
|
|
|
.then(() => {
|
2016-03-04 18:01:52 +01:00
|
|
|
const p = handlers[req.type](req.detail, sender);
|
2016-02-17 15:56:48 +01:00
|
|
|
|
|
|
|
return p.then((r) => {
|
|
|
|
sendResponse(r);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.catch((e) => {
|
2016-02-19 13:03:45 +01:00
|
|
|
console.log(`exception during wallet handler for '${req.type}'`);
|
|
|
|
console.log("request", req);
|
2016-02-19 04:23:00 +01:00
|
|
|
console.error(e);
|
2016-02-17 15:56:48 +01:00
|
|
|
sendResponse({
|
|
|
|
error: "exception",
|
|
|
|
hint: e.message,
|
|
|
|
stack: e.stack.toString()
|
|
|
|
});
|
|
|
|
});
|
|
|
|
// The sendResponse call is async
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
console.error(`Request type ${JSON.stringify(req)} unknown, req ${req.type}`);
|
|
|
|
sendResponse({error: "request unknown"});
|
|
|
|
// The sendResponse call is sync
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-18 23:41:29 +01:00
|
|
|
class ChromeNotifier implements Notifier {
|
|
|
|
ports: Port[] = [];
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
chrome.runtime.onConnect.addListener((port) => {
|
|
|
|
console.log("got connect!");
|
|
|
|
this.ports.push(port);
|
|
|
|
port.onDisconnect.addListener(() => {
|
|
|
|
let i = this.ports.indexOf(port);
|
|
|
|
if (i >= 0) {
|
|
|
|
this.ports.splice(i, 1);
|
|
|
|
} else {
|
|
|
|
console.error("port already removed");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
notify() {
|
|
|
|
console.log("notifying all ports");
|
|
|
|
for (let p of this.ports) {
|
|
|
|
p.postMessage({notify: true});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-06 13:31:30 +02:00
|
|
|
|
2016-09-08 17:26:31 +02:00
|
|
|
/**
|
|
|
|
* Mapping from tab ID to payment information (if any).
|
|
|
|
*/
|
2016-09-09 14:07:54 +02:00
|
|
|
let paymentRequestCookies = {};
|
2016-09-08 17:26:31 +02:00
|
|
|
|
2016-09-06 14:39:45 +02:00
|
|
|
function handleHttpPayment(headerList: chrome.webRequest.HttpHeader[],
|
2016-09-08 17:26:31 +02:00
|
|
|
url: string, tabId: number): any {
|
2016-09-06 13:31:30 +02:00
|
|
|
const headers = {};
|
|
|
|
for (let kv of headerList) {
|
|
|
|
headers[kv.name.toLowerCase()] = kv.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
const contractUrl = headers["x-taler-contract-url"];
|
|
|
|
if (contractUrl !== undefined) {
|
2016-09-09 14:07:54 +02:00
|
|
|
paymentRequestCookies[tabId] = {type: "fetch", contractUrl};
|
2016-09-08 17:26:31 +02:00
|
|
|
return;
|
2016-09-06 13:31:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const contractHash = headers["x-taler-contract-hash"];
|
|
|
|
|
|
|
|
if (contractHash !== undefined) {
|
|
|
|
const payUrl = headers["x-taler-pay-url"];
|
|
|
|
if (payUrl === undefined) {
|
|
|
|
console.log("malformed 402, X-Taler-Pay-Url missing");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Offer URL is optional
|
|
|
|
const offerUrl = headers["x-taler-offer-url"];
|
2016-09-09 14:07:54 +02:00
|
|
|
paymentRequestCookies[tabId] = {
|
2016-09-08 17:26:31 +02:00
|
|
|
type: "execute",
|
|
|
|
offerUrl,
|
|
|
|
payUrl,
|
|
|
|
contractHash
|
|
|
|
};
|
|
|
|
return;
|
2016-09-06 13:31:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// looks like it's not a taler request, it might be
|
|
|
|
// for a different payment system (or the shop is buggy)
|
|
|
|
console.log("ignoring non-taler 402 response");
|
|
|
|
}
|
|
|
|
|
2016-02-17 15:56:48 +01:00
|
|
|
|
2016-01-10 20:07:42 +01:00
|
|
|
export function wxMain() {
|
2016-01-05 14:20:13 +01:00
|
|
|
chrome.browserAction.setBadgeText({text: ""});
|
|
|
|
|
2016-03-02 15:33:23 +01:00
|
|
|
chrome.tabs.query({}, function(tabs) {
|
|
|
|
for (let tab of tabs) {
|
|
|
|
if (!tab.url) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let uri = URI(tab.url);
|
|
|
|
if (uri.protocol() == "http" || uri.protocol() == "https") {
|
|
|
|
console.log("injecting into existing tab", tab.id);
|
|
|
|
chrome.tabs.executeScript(tab.id, {file: "content_scripts/notify.js"});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-02-17 15:56:48 +01:00
|
|
|
Promise.resolve()
|
|
|
|
.then(() => {
|
|
|
|
return openTalerDb();
|
|
|
|
})
|
|
|
|
.catch((e) => {
|
|
|
|
console.error("could not open database");
|
|
|
|
console.error(e);
|
|
|
|
})
|
|
|
|
.then((db) => {
|
|
|
|
let http = new BrowserHttpLib();
|
|
|
|
let badge = new ChromeBadge();
|
2016-02-18 23:41:29 +01:00
|
|
|
let notifier = new ChromeNotifier();
|
|
|
|
let wallet = new Wallet(db, http, badge, notifier);
|
2016-09-06 13:31:30 +02:00
|
|
|
|
|
|
|
// Handlers for messages coming directly from the content
|
|
|
|
// script on the page
|
2016-02-17 15:56:48 +01:00
|
|
|
let handlers = makeHandlers(db, wallet);
|
|
|
|
chrome.runtime.onMessage.addListener((req, sender, sendResponse) => {
|
2016-02-18 22:50:17 +01:00
|
|
|
try {
|
2016-03-04 18:01:52 +01:00
|
|
|
return dispatch(handlers, req, sender, sendResponse)
|
2016-02-18 22:50:17 +01:00
|
|
|
} catch (e) {
|
2016-02-19 13:03:45 +01:00
|
|
|
console.log(`exception during wallet handler (dispatch)`);
|
|
|
|
console.log("request", req);
|
2016-02-19 04:23:00 +01:00
|
|
|
console.error(e);
|
2016-02-18 22:50:17 +01:00
|
|
|
sendResponse({
|
|
|
|
error: "exception",
|
|
|
|
hint: e.message,
|
|
|
|
stack: e.stack.toString()
|
|
|
|
});
|
|
|
|
return false;
|
|
|
|
}
|
2016-02-17 15:56:48 +01:00
|
|
|
});
|
2016-09-06 13:31:30 +02:00
|
|
|
|
|
|
|
// Handlers for catching HTTP requests
|
|
|
|
chrome.webRequest.onHeadersReceived.addListener((details) => {
|
|
|
|
if (details.statusCode != 402) {
|
|
|
|
return;
|
|
|
|
}
|
2016-09-08 17:26:31 +02:00
|
|
|
console.log(`got 402 from ${details.url}`);
|
|
|
|
return handleHttpPayment(details.responseHeaders,
|
|
|
|
details.url,
|
|
|
|
details.tabId);
|
2016-09-06 14:39:45 +02:00
|
|
|
}, {urls: ["<all_urls>"]}, ["responseHeaders", "blocking"]);
|
2016-09-06 13:31:30 +02:00
|
|
|
|
|
|
|
|
2016-02-17 15:56:48 +01:00
|
|
|
})
|
|
|
|
.catch((e) => {
|
|
|
|
console.error("could not initialize wallet messaging");
|
|
|
|
console.error(e);
|
|
|
|
});
|
2016-01-11 02:56:32 +01:00
|
|
|
}
|