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.
|
|
|
|
*/
|
2022-01-16 21:47:43 +01:00
|
|
|
import type { IDBFactory } from "@gnu-taler/idb-bridge";
|
|
|
|
// eslint-disable-next-line no-duplicate-imports
|
2021-03-17 17:56:37 +01:00
|
|
|
import {
|
2022-03-23 21:24:23 +01:00
|
|
|
BridgeIDBFactory,
|
|
|
|
MemoryBackend,
|
|
|
|
shimIndexedDB,
|
2021-03-17 17:56:37 +01:00
|
|
|
} from "@gnu-taler/idb-bridge";
|
2022-10-13 15:14:49 +02:00
|
|
|
import { AccessStats } from "@gnu-taler/idb-bridge";
|
2023-02-15 23:32:42 +01:00
|
|
|
import { Logger } from "@gnu-taler/taler-util";
|
2022-01-16 21:47:43 +01:00
|
|
|
import * as fs from "fs";
|
2023-02-15 23:32:42 +01:00
|
|
|
import { NodeThreadCryptoWorkerFactory } from "./crypto/workers/nodeThreadWorker.js";
|
|
|
|
import { SynchronousCryptoWorkerFactoryPlain } from "./crypto/workers/synchronousWorkerFactoryPlain.js";
|
|
|
|
import { openTalerDatabase } from "./index.js";
|
|
|
|
import {
|
|
|
|
createPlatformHttpLib,
|
|
|
|
} from "@gnu-taler/taler-util/http";
|
|
|
|
import { SetTimeoutTimerAPI } from "./util/timer.js";
|
|
|
|
import { Wallet } from "./wallet.js";
|
|
|
|
import { DefaultNodeWalletArgs, makeTempfileId } from "./host-common.js";
|
2019-08-17 01:54:01 +02:00
|
|
|
|
2023-02-15 23:32:42 +01:00
|
|
|
const logger = new Logger("host-impl.node.ts");
|
2020-09-06 12:56:27 +02:00
|
|
|
|
2022-01-11 21:00:12 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a wallet instance with default settings for node.
|
|
|
|
*
|
|
|
|
* Extended version that allows getting DB stats.
|
|
|
|
*/
|
2023-02-15 23:32:42 +01:00
|
|
|
export async function createNativeWalletHost2(
|
2022-01-11 21:00:12 +01:00
|
|
|
args: DefaultNodeWalletArgs = {},
|
|
|
|
): Promise<{
|
|
|
|
wallet: Wallet;
|
|
|
|
getDbStats: () => AccessStats;
|
|
|
|
}> {
|
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 {
|
2021-08-20 13:01:35 +02:00
|
|
|
const dbContentStr: string = fs.readFileSync(storagePath, {
|
2019-12-09 13:29:11 +01:00
|
|
|
encoding: "utf-8",
|
|
|
|
});
|
2019-08-17 01:54:01 +02:00
|
|
|
const dbContent = JSON.parse(dbContentStr);
|
|
|
|
myBackend.importDump(dbContent);
|
2021-10-07 12:01:40 +02:00
|
|
|
} catch (e: any) {
|
2020-09-06 12:56:27 +02:00
|
|
|
const code: string = e.code;
|
|
|
|
if (code === "ENOENT") {
|
|
|
|
logger.trace("wallet file doesn't exist yet");
|
|
|
|
} else {
|
|
|
|
logger.error("could not open wallet database file");
|
|
|
|
throw e;
|
|
|
|
}
|
2019-08-17 01:54:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
myBackend.afterCommitCallback = async () => {
|
2021-08-06 16:27:18 +02:00
|
|
|
logger.trace("committing database");
|
2019-08-20 23:36:56 +02:00
|
|
|
// Allow caller to stop persisting the wallet.
|
|
|
|
if (args.persistentStoragePath === undefined) {
|
|
|
|
return;
|
|
|
|
}
|
2023-02-15 23:32:42 +01:00
|
|
|
const tmpPath = `${args.persistentStoragePath}-${makeTempfileId(5)}.tmp`;
|
|
|
|
logger.trace("exported DB dump");
|
2019-08-17 01:54:01 +02:00
|
|
|
const dbContent = myBackend.exportDump();
|
2021-08-20 13:01:35 +02:00
|
|
|
fs.writeFileSync(tmpPath, JSON.stringify(dbContent, undefined, 2), {
|
|
|
|
encoding: "utf-8",
|
|
|
|
});
|
2020-09-06 12:56:27 +02:00
|
|
|
// Atomically move the temporary file onto the DB path.
|
2021-08-20 13:01:35 +02:00
|
|
|
fs.renameSync(tmpPath, args.persistentStoragePath);
|
2022-08-24 11:11:02 +02:00
|
|
|
logger.trace("committing database done");
|
2019-08-17 01:54:01 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
BridgeIDBFactory.enableTracing = false;
|
|
|
|
|
|
|
|
const myBridgeIdbFactory = new BridgeIDBFactory(myBackend);
|
2022-01-11 21:00:12 +01:00
|
|
|
const myIdbFactory: IDBFactory = myBridgeIdbFactory as any as IDBFactory;
|
2019-08-17 01:54:01 +02:00
|
|
|
|
2019-08-22 23:36:36 +02:00
|
|
|
let myHttpLib;
|
|
|
|
if (args.httpLib) {
|
|
|
|
myHttpLib = args.httpLib;
|
|
|
|
} else {
|
2023-02-15 23:32:42 +01:00
|
|
|
myHttpLib = createPlatformHttpLib({
|
|
|
|
enableThrottling: true,
|
|
|
|
});
|
2019-08-22 23:36:36 +02:00
|
|
|
}
|
2019-08-17 01:54:01 +02:00
|
|
|
|
2020-04-07 10:07:32 +02:00
|
|
|
const myVersionChange = (): Promise<void> => {
|
2020-08-14 12:23:50 +02:00
|
|
|
logger.error("version change requested, should not happen");
|
2020-12-14 16:45:15 +01:00
|
|
|
throw Error(
|
|
|
|
"BUG: wallet DB version change event can't happen with memory IDB",
|
|
|
|
);
|
2019-08-17 01:54:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
2022-10-05 15:45:10 +02:00
|
|
|
const cryptoWorkerType = args.cryptoWorkerType ?? "node-worker-thread";
|
|
|
|
if (cryptoWorkerType === "sync") {
|
2021-11-16 17:20:36 +01:00
|
|
|
logger.info("using synchronous crypto worker");
|
2023-02-15 23:32:42 +01:00
|
|
|
workerFactory = new SynchronousCryptoWorkerFactoryPlain();
|
2022-10-05 15:45:10 +02:00
|
|
|
} else if (cryptoWorkerType === "node-worker-thread") {
|
2021-11-16 17:20:36 +01:00
|
|
|
try {
|
|
|
|
// Try if we have worker threads available, fails in older node versions.
|
|
|
|
const _r = "require";
|
2022-01-16 21:47:43 +01:00
|
|
|
// eslint-disable-next-line no-unused-vars
|
2021-11-16 17:20:36 +01:00
|
|
|
const worker_threads = module[_r]("worker_threads");
|
|
|
|
// require("worker_threads");
|
|
|
|
workerFactory = new NodeThreadCryptoWorkerFactory();
|
2022-10-19 15:44:28 +02:00
|
|
|
logger.info("using node thread crypto worker");
|
2021-11-16 17:20:36 +01:00
|
|
|
} catch (e) {
|
|
|
|
logger.warn(
|
|
|
|
"worker threads not available, falling back to synchronous workers",
|
|
|
|
);
|
2023-02-15 23:32:42 +01:00
|
|
|
workerFactory = new SynchronousCryptoWorkerFactoryPlain();
|
2021-11-16 17:20:36 +01:00
|
|
|
}
|
2022-10-05 15:45:10 +02:00
|
|
|
} else {
|
|
|
|
throw Error(`unsupported crypto worker type '${cryptoWorkerType}'`);
|
2020-02-24 18:08:07 +01:00
|
|
|
}
|
2022-04-11 20:10:16 +02:00
|
|
|
|
2022-08-24 11:11:02 +02:00
|
|
|
const timer = new SetTimeoutTimerAPI();
|
2022-04-11 20:10:16 +02:00
|
|
|
|
|
|
|
const w = await Wallet.create(myDb, myHttpLib, timer, workerFactory);
|
2021-06-15 18:52:43 +02:00
|
|
|
|
2019-12-06 02:52:16 +01:00
|
|
|
if (args.notifyHandler) {
|
|
|
|
w.addNotificationListener(args.notifyHandler);
|
|
|
|
}
|
2022-01-11 21:00:12 +01:00
|
|
|
return {
|
|
|
|
wallet: w,
|
|
|
|
getDbStats: () => myBackend.accessStats,
|
|
|
|
};
|
2019-08-17 01:54:01 +02:00
|
|
|
}
|