2019-08-17 01:54:01 +02:00
|
|
|
/*
|
|
|
|
This file is part of GNU Taler
|
2019-12-15 17:48:22 +01:00
|
|
|
(C) 2019 Taler Systems S.A.
|
2019-08-17 01:54:01 +02:00
|
|
|
|
|
|
|
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/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helpers to create headless wallets.
|
2019-12-15 17:48:22 +01:00
|
|
|
* @author Florian Dold <dold@taler.net>
|
2019-08-17 01:54:01 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Imports.
|
|
|
|
*/
|
2019-12-05 19:38:19 +01:00
|
|
|
import { Wallet } from "../wallet";
|
2019-08-17 01:54:01 +02:00
|
|
|
import { MemoryBackend, BridgeIDBFactory, shimIndexedDB } from "idb-bridge";
|
2019-12-12 22:39:45 +01:00
|
|
|
import { openTalerDatabase } from "../db";
|
2019-12-19 13:48:37 +01:00
|
|
|
import { HttpRequestLibrary } from "../util/http";
|
2019-08-17 01:54:01 +02:00
|
|
|
import { Bank } from "./bank";
|
2020-04-06 17:35:51 +02:00
|
|
|
import fs from "fs";
|
2019-12-05 19:38:19 +01:00
|
|
|
import { NodeThreadCryptoWorkerFactory } from "../crypto/workers/nodeThreadWorker";
|
2019-12-12 20:53:15 +01:00
|
|
|
import { WalletNotification, NotificationType } from "../types/notifications";
|
2019-12-12 22:39:45 +01:00
|
|
|
import { Database } from "../util/query";
|
2019-12-15 17:48:22 +01:00
|
|
|
import { NodeHttpLib } from "./NodeHttpLib";
|
|
|
|
import { Logger } from "../util/logging";
|
2020-02-24 18:08:07 +01:00
|
|
|
import { SynchronousCryptoWorkerFactory } from "../crypto/workers/synchronousWorker";
|
2020-04-02 17:03:01 +02:00
|
|
|
import { WithdrawalSourceType } from "../types/dbTypes";
|
2020-07-16 19:22:56 +02:00
|
|
|
import { Amounts } from "../util/amounts";
|
2019-11-30 00:36:20 +01:00
|
|
|
|
|
|
|
const logger = new Logger("helpers.ts");
|
2019-08-17 01:54:01 +02:00
|
|
|
|
2019-08-20 23:36:56 +02:00
|
|
|
export interface DefaultNodeWalletArgs {
|
2019-08-17 01:54:01 +02:00
|
|
|
/**
|
|
|
|
* Location of the wallet database.
|
|
|
|
*
|
|
|
|
* If not specified, the wallet starts out with an empty database and
|
|
|
|
* the wallet database is stored only in memory.
|
|
|
|
*/
|
|
|
|
persistentStoragePath?: string;
|
2019-08-19 20:24:29 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for asynchronous notifications from the wallet.
|
|
|
|
*/
|
2019-12-06 02:52:16 +01:00
|
|
|
notifyHandler?: (n: WalletNotification) => void;
|
2019-08-22 23:36:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* If specified, use this as HTTP request library instead
|
|
|
|
* of the default one.
|
|
|
|
*/
|
|
|
|
httpLib?: HttpRequestLibrary;
|
2019-08-17 01:54:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a wallet instance with default settings for node.
|
|
|
|
*/
|
|
|
|
export async function getDefaultNodeWallet(
|
|
|
|
args: DefaultNodeWalletArgs = {},
|
|
|
|
): Promise<Wallet> {
|
2019-09-01 22:59:48 +02:00
|
|
|
BridgeIDBFactory.enableTracing = false;
|
2019-08-17 01:54:01 +02:00
|
|
|
const myBackend = new MemoryBackend();
|
2019-09-01 22:59:48 +02:00
|
|
|
myBackend.enableTracing = false;
|
2019-08-17 01:54:01 +02:00
|
|
|
|
|
|
|
const storagePath = args.persistentStoragePath;
|
|
|
|
if (storagePath) {
|
|
|
|
try {
|
2019-12-09 13:29:11 +01:00
|
|
|
const dbContentStr: string = fs.readFileSync(storagePath, {
|
|
|
|
encoding: "utf-8",
|
|
|
|
});
|
2019-08-17 01:54:01 +02:00
|
|
|
const dbContent = JSON.parse(dbContentStr);
|
|
|
|
myBackend.importDump(dbContent);
|
|
|
|
} catch (e) {
|
2019-11-21 23:09:43 +01:00
|
|
|
console.error("could not read wallet file");
|
2019-08-17 01:54:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
myBackend.afterCommitCallback = async () => {
|
2019-08-20 23:36:56 +02:00
|
|
|
// Allow caller to stop persisting the wallet.
|
|
|
|
if (args.persistentStoragePath === undefined) {
|
|
|
|
return;
|
|
|
|
}
|
2019-08-17 01:54:01 +02:00
|
|
|
const dbContent = myBackend.exportDump();
|
2019-12-09 13:29:11 +01:00
|
|
|
fs.writeFileSync(storagePath, JSON.stringify(dbContent, undefined, 2), {
|
|
|
|
encoding: "utf-8",
|
|
|
|
});
|
2019-08-17 01:54:01 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
BridgeIDBFactory.enableTracing = false;
|
|
|
|
|
|
|
|
const myBridgeIdbFactory = new BridgeIDBFactory(myBackend);
|
|
|
|
const myIdbFactory: IDBFactory = (myBridgeIdbFactory as any) as IDBFactory;
|
|
|
|
|
2019-08-22 23:36:36 +02:00
|
|
|
let myHttpLib;
|
|
|
|
if (args.httpLib) {
|
|
|
|
myHttpLib = args.httpLib;
|
|
|
|
} else {
|
|
|
|
myHttpLib = new NodeHttpLib();
|
|
|
|
}
|
2019-08-17 01:54:01 +02:00
|
|
|
|
2020-04-07 10:07:32 +02:00
|
|
|
const myVersionChange = (): Promise<void> => {
|
2019-08-17 01:54:01 +02:00
|
|
|
console.error("version change requested, should not happen");
|
|
|
|
throw Error();
|
|
|
|
};
|
|
|
|
|
|
|
|
shimIndexedDB(myBridgeIdbFactory);
|
|
|
|
|
2019-12-19 13:48:37 +01:00
|
|
|
const myDb = await openTalerDatabase(myIdbFactory, myVersionChange);
|
2019-08-17 01:54:01 +02:00
|
|
|
|
2020-02-24 18:08:07 +01:00
|
|
|
let workerFactory;
|
|
|
|
try {
|
|
|
|
// Try if we have worker threads available, fails in older node versions.
|
2020-02-24 18:11:11 +01:00
|
|
|
require("worker_threads");
|
2020-02-24 18:08:07 +01:00
|
|
|
workerFactory = new NodeThreadCryptoWorkerFactory();
|
|
|
|
} catch (e) {
|
2020-03-30 12:39:32 +02:00
|
|
|
console.log(
|
|
|
|
"worker threads not available, falling back to synchronous workers",
|
|
|
|
);
|
2020-02-24 18:08:07 +01:00
|
|
|
workerFactory = new SynchronousCryptoWorkerFactory();
|
|
|
|
}
|
2019-12-05 19:38:19 +01:00
|
|
|
|
2019-12-12 22:39:45 +01:00
|
|
|
const dbWrap = new Database(myDb);
|
|
|
|
|
2020-02-24 18:08:07 +01:00
|
|
|
const w = new Wallet(dbWrap, myHttpLib, workerFactory);
|
2019-12-06 02:52:16 +01:00
|
|
|
if (args.notifyHandler) {
|
|
|
|
w.addNotificationListener(args.notifyHandler);
|
|
|
|
}
|
|
|
|
return w;
|
2019-08-17 01:54:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function withdrawTestBalance(
|
|
|
|
myWallet: Wallet,
|
2020-04-06 17:45:41 +02:00
|
|
|
amount = "TESTKUDOS:10",
|
|
|
|
bankBaseUrl = "https://bank.test.taler.net/",
|
|
|
|
exchangeBaseUrl = "https://exchange.test.taler.net/",
|
2020-04-07 10:07:32 +02:00
|
|
|
): Promise<void> {
|
2020-07-17 19:39:25 +02:00
|
|
|
await myWallet.updateExchangeFromUrl(exchangeBaseUrl, true);
|
2020-07-22 10:52:03 +02:00
|
|
|
const reserveResponse = await myWallet.acceptManualWithdrawal(
|
|
|
|
exchangeBaseUrl,
|
|
|
|
Amounts.parseOrThrow(amount),
|
|
|
|
);
|
2019-08-17 01:54:01 +02:00
|
|
|
|
2019-11-21 23:09:43 +01:00
|
|
|
const reservePub = reserveResponse.reservePub;
|
|
|
|
|
2019-08-17 01:54:01 +02:00
|
|
|
const bank = new Bank(bankBaseUrl);
|
|
|
|
|
|
|
|
const bankUser = await bank.registerRandomUser();
|
|
|
|
|
2019-12-09 13:29:11 +01:00
|
|
|
logger.trace(`Registered bank user ${JSON.stringify(bankUser)}`);
|
2019-08-17 01:54:01 +02:00
|
|
|
|
2019-12-09 13:29:11 +01:00
|
|
|
const exchangePaytoUri = await myWallet.getExchangePaytoUri(exchangeBaseUrl, [
|
|
|
|
"x-taler-bank",
|
|
|
|
]);
|
2019-08-17 01:54:01 +02:00
|
|
|
|
2019-12-05 19:38:19 +01:00
|
|
|
const donePromise = new Promise((resolve, reject) => {
|
2020-03-23 13:03:38 +01:00
|
|
|
myWallet.runRetryLoop().catch((x) => {
|
|
|
|
reject(x);
|
|
|
|
});
|
2020-03-30 12:39:32 +02:00
|
|
|
myWallet.addNotificationListener((n) => {
|
2019-12-09 13:29:11 +01:00
|
|
|
if (
|
2020-04-02 17:03:01 +02:00
|
|
|
n.type === NotificationType.WithdrawGroupFinished &&
|
|
|
|
n.withdrawalSource.type === WithdrawalSourceType.Reserve &&
|
|
|
|
n.withdrawalSource.reservePub === reservePub
|
2019-12-09 13:29:11 +01:00
|
|
|
) {
|
2019-12-05 19:38:19 +01:00
|
|
|
resolve();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2019-12-09 13:29:11 +01:00
|
|
|
await bank.createReserve(bankUser, amount, reservePub, exchangePaytoUri);
|
2019-12-05 19:38:19 +01:00
|
|
|
await donePromise;
|
2019-08-17 01:54:01 +02:00
|
|
|
}
|