wallet-core/packages/taler-wallet-android/src/index.ts

287 lines
7.9 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.
*/
2019-08-22 23:36:36 +02:00
import {
Wallet,
2019-08-22 23:36:36 +02:00
getDefaultNodeWallet,
DefaultNodeWalletArgs,
versions,
httpLib,
nodeThreadWorker,
promiseUtil,
NodeHttpLib,
walletCoreApi,
walletNotifications,
TalerErrorCode,
makeErrorDetails,
} from "taler-wallet-core";
2019-08-22 23:36:36 +02:00
import fs from "fs";
2019-11-14 18:51:54 +01:00
export const handleWorkerError = nodeThreadWorker.handleWorkerError;
export const handleWorkerMessage = nodeThreadWorker.handleWorkerMessage;
export class AndroidHttpLib implements httpLib.HttpRequestLibrary {
2020-04-06 17:45:41 +02:00
useNfcTunnel = false;
2019-08-22 23:36:36 +02:00
private nodeHttpLib: httpLib.HttpRequestLibrary = new NodeHttpLib();
2019-08-22 23:36:36 +02:00
private requestId = 1;
private requestMap: {
[id: number]: promiseUtil.OpenedPromise<httpLib.HttpResponse>;
} = {};
2019-08-22 23:36:36 +02:00
constructor(private sendMessage: (m: string) => void) {}
get(
url: string,
opt?: httpLib.HttpRequestOptions,
): Promise<httpLib.HttpResponse> {
2019-08-22 23:36:36 +02:00
if (this.useNfcTunnel) {
const myId = this.requestId++;
const p = promiseUtil.openPromise<httpLib.HttpResponse>();
2019-08-22 23:36:36 +02:00
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?: httpLib.HttpRequestOptions,
): Promise<httpLib.HttpResponse> {
2019-08-22 23:36:36 +02:00
if (this.useNfcTunnel) {
const myId = this.requestId++;
const p = promiseUtil.openPromise<httpLib.HttpResponse>();
2019-08-22 23:36:36 +02:00
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
}
}
2020-04-07 10:07:32 +02:00
handleTunnelResponse(msg: any): void {
2019-08-22 23:36:36 +02:00
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
}
const headers = new httpLib.Headers();
2019-12-09 13:29:11 +01:00
if (msg.status != 0) {
const resp: httpLib.HttpResponse = {
// FIXME: pass through this URL
requestUrl: "",
2019-12-09 19:59:08 +01:00
headers,
2019-12-09 13:29:11 +01:00
status: msg.status,
requestMethod: "FIXME",
2019-12-09 13:29:11 +01:00
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
function sendAkonoMessage(ev: walletCoreApi.CoreApiEnvelope): void {
2019-08-19 13:09:11 +02:00
// @ts-ignore
2020-07-31 19:16:23 +02:00
const sendMessage = globalThis.__akono_sendMessage;
if (typeof sendMessage !== "function") {
const errMsg =
"FATAL: cannot install android wallet listener: akono functions missing";
console.error(errMsg);
throw new Error(errMsg);
}
const m = JSON.stringify(ev);
// @ts-ignore
sendMessage(m);
2019-12-17 18:42:14 +01:00
}
class AndroidWalletMessageHandler {
walletArgs: DefaultNodeWalletArgs | undefined;
maybeWallet: Wallet | undefined;
wp = promiseUtil.openPromise<Wallet>();
2019-12-17 18:42:14 +01:00
httpLib = new NodeHttpLib();
/**
* Handle a request from the Android wallet.
*/
2020-07-29 19:23:17 +02:00
async handleMessage(
operation: string,
id: string,
args: any,
): Promise<walletCoreApi.CoreApiResponse> {
const wrapResponse = (
result: unknown,
): walletCoreApi.CoreApiResponseSuccess => {
2020-07-29 19:23:17 +02:00
return {
type: "response",
id,
operation,
result,
};
};
2019-08-19 13:09:11 +02:00
switch (operation) {
2019-08-20 23:36:56 +02:00
case "init": {
2019-12-17 18:42:14 +01:00
this.walletArgs = {
notifyHandler: async (
notification: walletNotifications.WalletNotification,
) => {
2020-07-31 19:16:23 +02:00
sendAkonoMessage({ type: "notification", payload: notification });
2019-08-20 23:36:56 +02:00
},
2019-12-17 18:42:14 +01:00
persistentStoragePath: args.persistentStoragePath,
httpLib: this.httpLib,
2019-08-20 23:36:56 +02:00
};
2019-12-17 18:42:14 +01:00
const w = await getDefaultNodeWallet(this.walletArgs);
this.maybeWallet = w;
2020-03-30 12:39:32 +02:00
w.runRetryLoop().catch((e) => {
2019-12-02 17:35:47 +01:00
console.error("Error during wallet retry loop", e);
});
2019-12-17 18:42:14 +01:00
this.wp.resolve(w);
2020-07-29 19:23:17 +02:00
return wrapResponse({
2020-05-12 12:21:40 +02:00
supported_protocol_versions: {
exchange: versions.WALLET_EXCHANGE_PROTOCOL_VERSION,
merchant: versions.WALLET_MERCHANT_PROTOCOL_VERSION,
},
2020-07-29 19:23:17 +02:00
});
2019-08-20 23:36:56 +02:00
}
2019-12-02 17:35:47 +01:00
case "getHistory": {
2020-07-29 19:23:17 +02:00
return wrapResponse({ history: [] });
2020-06-21 15:41:50 +02:00
}
2019-08-22 23:36:36 +02:00
case "startTunnel": {
2019-12-17 18:42:14 +01:00
// this.httpLib.useNfcTunnel = true;
throw Error("not implemented");
2019-08-22 23:36:36 +02:00
}
case "stopTunnel": {
2019-12-17 18:42:14 +01:00
// this.httpLib.useNfcTunnel = false;
throw Error("not implemented");
2019-08-22 23:36:36 +02:00
}
case "tunnelResponse": {
2019-12-17 18:42:14 +01:00
// httpLib.handleTunnelResponse(msg.args);
throw Error("not implemented");
2019-08-22 23:36:36 +02:00
}
2019-08-20 23:36:56 +02:00
case "reset": {
2019-12-17 18:42:14 +01:00
const oldArgs = this.walletArgs;
this.walletArgs = { ...oldArgs };
2019-12-03 00:52:15 +01:00
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!
2019-12-17 18:42:14 +01:00
this.walletArgs.persistentStoragePath = undefined;
2019-08-19 20:24:29 +02:00
}
2019-12-17 18:42:14 +01:00
const wallet = await this.wp.promise;
2019-12-03 14:40:05 +01:00
wallet.stop();
this.wp = promiseUtil.openPromise<Wallet>();
2019-12-17 18:42:14 +01:00
this.maybeWallet = undefined;
const w = await getDefaultNodeWallet(this.walletArgs);
this.maybeWallet = w;
2020-03-30 12:39:32 +02:00
w.runRetryLoop().catch((e) => {
2019-12-03 00:52:15 +01:00
console.error("Error during wallet retry loop", e);
});
2019-12-17 18:42:14 +01:00
this.wp.resolve(w);
2020-07-29 19:23:17 +02:00
return wrapResponse({});
2019-08-20 23:36:56 +02:00
}
default: {
const wallet = await this.wp.promise;
return await walletCoreApi.handleCoreApiRequest(
wallet,
operation,
id,
args,
);
}
2019-08-19 13:09:11 +02:00
}
2019-12-17 18:42:14 +01:00
}
}
2019-08-19 14:08:14 +02:00
2020-04-07 10:07:32 +02:00
export function installAndroidWalletListener(): void {
2019-12-17 18:42:14 +01:00
const handler = new AndroidWalletMessageHandler();
2020-04-07 10:07:32 +02:00
const onMessage = async (msgStr: any): Promise<void> => {
2019-12-17 18:42:14 +01:00
if (typeof msgStr !== "string") {
console.error("expected string as message");
return;
}
const msg = JSON.parse(msgStr);
const operation = msg.operation;
if (typeof operation !== "string") {
console.error(
"message to android wallet helper must contain operation of type string",
);
return;
}
const id = msg.id;
console.log(`android listener: got request for ${operation} (${id})`);
2019-12-05 19:38:19 +01:00
2019-12-17 18:42:14 +01:00
try {
2020-07-29 20:48:42 +02:00
const respMsg = await handler.handleMessage(operation, id, msg.args);
2019-12-17 18:42:14 +01:00
console.log(
`android listener: sending success response for ${operation} (${id})`,
);
2020-07-31 19:16:23 +02:00
sendAkonoMessage(respMsg);
2019-12-17 18:42:14 +01:00
} catch (e) {
const respMsg: walletCoreApi.CoreApiResponse = {
2020-07-31 19:16:23 +02:00
type: "error",
2019-12-17 18:42:14 +01:00
id,
operation,
2020-07-31 19:16:23 +02:00
error: makeErrorDetails(
TalerErrorCode.WALLET_UNEXPECTED_EXCEPTION,
"unexpected exception",
{},
),
2019-12-17 18:42:14 +01:00
};
2020-07-31 19:16:23 +02:00
sendAkonoMessage(respMsg);
2019-12-17 18:42:14 +01:00
return;
}
2019-08-19 13:09:11 +02:00
};
2019-12-17 18:42:14 +01:00
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
}