wallet-core/src/android/index.ts

291 lines
8.1 KiB
TypeScript
Raw Normal View History

2019-08-19 13:09:11 +02:00
/*
This file is part of GNU Taler
(C) 2019 GNUnet e.V.
GNU 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.
GNU 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
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
/**
* Imports.
*/
import { Wallet } from "../wallet";
2019-08-22 23:36:36 +02:00
import {
getDefaultNodeWallet,
withdrawTestBalance,
DefaultNodeWalletArgs,
} from "../headless/helpers";
import { openPromise, OpenedPromise } from "../util/promiseUtils";
2019-08-20 23:36:56 +02:00
import fs = require("fs");
2019-12-09 19:59:08 +01:00
import {
HttpRequestLibrary,
HttpResponse,
HttpRequestOptions,
Headers,
} from "../util/http";
2019-12-15 17:48:22 +01:00
import { NodeHttpLib } from "../headless/NodeHttpLib";
2019-08-22 23:36:36 +02:00
2019-11-14 18:51:54 +01:00
// @ts-ignore: special built-in module
2019-12-02 17:35:47 +01:00
//import akono = require("akono");
2019-11-14 18:51:54 +01:00
2019-12-09 19:59:08 +01:00
export {
handleWorkerError,
handleWorkerMessage,
} from "../crypto/workers/nodeThreadWorker";
2019-08-22 23:36:36 +02:00
export class AndroidHttpLib implements HttpRequestLibrary {
useNfcTunnel: boolean = false;
private nodeHttpLib: HttpRequestLibrary = new NodeHttpLib();
private requestId = 1;
private requestMap: { [id: number]: OpenedPromise<HttpResponse> } = {};
constructor(private sendMessage: (m: string) => void) {}
2019-12-09 13:29:11 +01:00
get(url: string, opt?: HttpRequestOptions): Promise<HttpResponse> {
2019-08-22 23:36:36 +02:00
if (this.useNfcTunnel) {
const myId = this.requestId++;
const p = openPromise<HttpResponse>();
this.requestMap[myId] = p;
const request = {
method: "get",
url,
};
this.sendMessage(
JSON.stringify({
type: "tunnelHttp",
request,
id: myId,
}),
);
return p.promise;
} else {
2019-12-09 13:29:11 +01:00
return this.nodeHttpLib.get(url, opt);
2019-08-22 23:36:36 +02:00
}
}
2019-12-09 19:59:08 +01:00
postJson(
url: string,
body: any,
opt?: HttpRequestOptions,
): Promise<import("../util/http").HttpResponse> {
2019-08-22 23:36:36 +02:00
if (this.useNfcTunnel) {
const myId = this.requestId++;
const p = openPromise<HttpResponse>();
this.requestMap[myId] = p;
const request = {
method: "postJson",
url,
body,
};
this.sendMessage(
JSON.stringify({ type: "tunnelHttp", request, id: myId }),
);
return p.promise;
} else {
2019-12-09 13:29:11 +01:00
return this.nodeHttpLib.postJson(url, body, opt);
2019-08-22 23:36:36 +02:00
}
}
handleTunnelResponse(msg: any) {
const myId = msg.id;
const p = this.requestMap[myId];
if (!p) {
2019-12-09 19:59:08 +01:00
console.error(
`no matching request for tunneled HTTP response, id=${myId}`,
);
2019-08-22 23:36:36 +02:00
}
2019-12-09 19:59:08 +01:00
const headers = new Headers();
2019-12-09 13:29:11 +01:00
if (msg.status != 0) {
const resp: HttpResponse = {
2019-12-09 19:59:08 +01:00
headers,
2019-12-09 13:29:11 +01:00
status: msg.status,
json: async () => JSON.parse(msg.responseText),
text: async () => msg.responseText,
};
p.resolve(resp);
2019-08-22 23:36:36 +02:00
} else {
p.reject(new Error(`unexpected HTTP status code ${msg.status}`));
}
delete this.requestMap[myId];
}
}
2019-08-19 13:09:11 +02:00
export function installAndroidWalletListener() {
// @ts-ignore
2019-12-02 17:35:47 +01:00
const sendMessage: (m: string) => void = globalThis.__akono_sendMessage;
2019-08-19 13:09:11 +02:00
if (typeof sendMessage !== "function") {
2019-08-19 14:08:14 +02:00
const errMsg =
"FATAL: cannot install android wallet listener: akono functions missing";
2019-08-19 13:09:11 +02:00
console.error(errMsg);
throw new Error(errMsg);
}
2019-08-19 20:24:29 +02:00
let maybeWallet: Wallet | undefined;
2019-08-20 23:36:56 +02:00
let wp = openPromise<Wallet>();
2019-08-22 23:36:36 +02:00
let httpLib = new AndroidHttpLib(sendMessage);
2019-08-20 23:36:56 +02:00
let walletArgs: DefaultNodeWalletArgs | undefined;
2019-08-19 20:24:29 +02:00
const onMessage = async (msgStr: any) => {
if (typeof msgStr !== "string") {
console.error("expected string as message");
return;
}
const msg = JSON.parse(msgStr);
2019-08-19 13:09:11 +02:00
const operation = msg.operation;
if (typeof operation !== "string") {
2019-08-19 14:08:14 +02:00
console.error(
"message to android wallet helper must contain operation of type string",
);
2019-08-19 13:09:11 +02:00
return;
}
2019-08-19 14:08:14 +02:00
const id = msg.id;
2019-12-05 19:38:19 +01:00
console.log(`android listener: got request for ${operation} (${id})`);
2019-08-19 14:08:14 +02:00
let result;
2019-08-19 13:09:11 +02:00
switch (operation) {
2019-08-20 23:36:56 +02:00
case "init": {
walletArgs = {
notifyHandler: async () => {
sendMessage(JSON.stringify({ type: "notification" }));
},
2019-08-22 23:36:36 +02:00
persistentStoragePath: msg.args.persistentStoragePath,
httpLib: httpLib,
2019-08-20 23:36:56 +02:00
};
2019-12-02 17:35:47 +01:00
const w = await getDefaultNodeWallet(walletArgs);
maybeWallet = w;
2019-12-09 19:59:08 +01:00
w.runRetryLoop().catch(e => {
2019-12-02 17:35:47 +01:00
console.error("Error during wallet retry loop", e);
});
wp.resolve(w);
2019-08-20 23:36:56 +02:00
result = true;
2019-08-19 13:09:11 +02:00
break;
2019-08-20 23:36:56 +02:00
}
case "getBalances": {
const wallet = await wp.promise;
result = await wallet.getBalances();
2019-08-19 13:09:11 +02:00
break;
2019-08-20 23:36:56 +02:00
}
2019-12-02 17:35:47 +01:00
case "getPendingOperations": {
const wallet = await wp.promise;
result = await wallet.getPendingOperations();
break;
}
2019-08-20 23:36:56 +02:00
case "withdrawTestkudos": {
const wallet = await wp.promise;
2019-12-05 19:38:19 +01:00
try {
await withdrawTestBalance(wallet);
} catch (e) {
console.log("error during withdrawTestBalance", e);
}
2019-12-03 14:40:05 +01:00
result = {};
2019-12-02 17:35:47 +01:00
break;
}
case "getHistory": {
const wallet = await wp.promise;
result = await wallet.getHistory();
2019-08-20 23:36:56 +02:00
break;
}
2019-12-03 14:40:05 +01:00
case "retryPendingNow": {
const wallet = await wp.promise;
await wallet.runPending(true);
result = {};
break;
}
2019-08-20 23:36:56 +02:00
case "preparePay": {
const wallet = await wp.promise;
result = await wallet.preparePay(msg.args.url);
break;
}
case "confirmPay": {
const wallet = await wp.promise;
2019-12-09 19:59:08 +01:00
result = await wallet.confirmPay(
msg.args.proposalId,
msg.args.sessionId,
);
2019-08-19 20:24:29 +02:00
break;
2019-08-20 23:36:56 +02:00
}
2019-08-22 23:36:36 +02:00
case "startTunnel": {
httpLib.useNfcTunnel = true;
break;
}
case "stopTunnel": {
httpLib.useNfcTunnel = false;
break;
}
case "tunnelResponse": {
httpLib.handleTunnelResponse(msg.args);
break;
}
2019-12-09 19:59:08 +01:00
case "getWithdrawDetailsForUri": {
const wallet = await wp.promise;
result = await wallet.getWithdrawDetailsForUri(
msg.args.talerWithdrawUri,
msg.args.selectedExchange,
);
break;
}
case "acceptExchangeTermsOfService": {
2019-09-01 01:05:38 +02:00
const wallet = await wp.promise;
2019-12-09 19:59:08 +01:00
result = await wallet.acceptExchangeTermsOfService(
msg.args.exchangeBaseUrl,
msg.args.etag,
);
2019-09-01 01:05:38 +02:00
break;
}
case "acceptWithdrawal": {
const wallet = await wp.promise;
2019-12-09 19:59:08 +01:00
result = await wallet.acceptWithdrawal(
msg.args.talerWithdrawUri,
msg.args.selectedExchange,
);
2019-09-01 01:05:38 +02:00
break;
}
2019-08-20 23:36:56 +02:00
case "reset": {
2019-12-03 00:52:15 +01:00
const oldArgs = walletArgs;
walletArgs = { ...oldArgs };
if (oldArgs && oldArgs.persistentStoragePath) {
2019-08-20 23:36:56 +02:00
try {
2019-12-03 00:52:15 +01:00
fs.unlinkSync(oldArgs.persistentStoragePath);
2019-08-20 23:36:56 +02:00
} catch (e) {
console.error("Error while deleting the wallet db:", e);
}
// Prevent further storage!
walletArgs.persistentStoragePath = undefined;
2019-08-19 20:24:29 +02:00
}
2019-12-03 14:40:05 +01:00
const wallet = await wp.promise;
wallet.stop();
wp = openPromise<Wallet>();
2019-08-20 23:36:56 +02:00
maybeWallet = undefined;
2019-12-03 00:52:15 +01:00
const w = await getDefaultNodeWallet(walletArgs);
maybeWallet = w;
2019-12-09 19:59:08 +01:00
w.runRetryLoop().catch(e => {
2019-12-03 00:52:15 +01:00
console.error("Error during wallet retry loop", e);
});
wp.resolve(w);
2019-12-03 14:40:05 +01:00
result = {};
2019-08-19 13:09:11 +02:00
break;
2019-08-20 23:36:56 +02:00
}
2019-08-19 13:09:11 +02:00
default:
console.error(`operation "${operation}" not understood`);
return;
}
2019-08-19 14:08:14 +02:00
2019-12-05 19:38:19 +01:00
console.log(`android listener: sending response for ${operation} (${id})`);
2019-08-19 20:24:29 +02:00
const respMsg = { result, id, operation, type: "response" };
sendMessage(JSON.stringify(respMsg));
2019-08-19 13:09:11 +02:00
};
// @ts-ignore
globalThis.__akono_onMessage = onMessage;
2019-08-19 20:24:29 +02:00
console.log("android wallet listener installed");
2019-08-19 14:08:14 +02:00
}