aboutsummaryrefslogtreecommitdiff
path: root/src/headless/helpers.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-08-17 01:54:01 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-08-17 01:54:01 +0200
commit5ff600fed792919938facfae07be3a73cb4bfb36 (patch)
tree8f355d4f27b983316b69a6e1f9d32104577f1cf4 /src/headless/helpers.ts
parent9e3a26ca70e77265f74527eb183c3f80b6531a97 (diff)
downloadwallet-core-5ff600fed792919938facfae07be3a73cb4bfb36.tar.xz
start with an actual wallet cli
Diffstat (limited to 'src/headless/helpers.ts')
-rw-r--r--src/headless/helpers.ts229
1 files changed, 229 insertions, 0 deletions
diff --git a/src/headless/helpers.ts b/src/headless/helpers.ts
new file mode 100644
index 000000000..0ac7accb6
--- /dev/null
+++ b/src/headless/helpers.ts
@@ -0,0 +1,229 @@
+/*
+ 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/>
+ */
+
+/**
+ * Helpers to create headless wallets.
+ */
+
+/**
+ * Imports.
+ */
+import { Wallet } from "../wallet";
+import { Notifier, Badge } from "../walletTypes";
+import { MemoryBackend, BridgeIDBFactory, shimIndexedDB } from "idb-bridge";
+import { SynchronousCryptoWorkerFactory } from "../crypto/synchronousWorker";
+import { openTalerDb } from "../db";
+import Axios from "axios";
+import querystring = require("querystring");
+import { HttpRequestLibrary } from "../http";
+import * as amounts from "../amounts";
+import { Bank } from "./bank";
+
+import fs = require("fs");
+
+const enableTracing = false;
+
+class ConsoleNotifier implements Notifier {
+ notify(): void {
+ // nothing to do.
+ }
+}
+
+class ConsoleBadge implements Badge {
+ startBusy(): void {
+ enableTracing && console.log("NOTIFICATION: busy");
+ }
+ stopBusy(): void {
+ enableTracing && console.log("NOTIFICATION: busy end");
+ }
+ showNotification(): void {
+ enableTracing && console.log("NOTIFICATION: show");
+ }
+ clearNotification(): void {
+ enableTracing && console.log("NOTIFICATION: cleared");
+ }
+}
+
+export class NodeHttpLib implements HttpRequestLibrary {
+ async get(url: string): Promise<import("../http").HttpResponse> {
+ enableTracing && console.log("making GET request to", url);
+ const resp = await Axios({
+ method: "get",
+ url: url,
+ responseType: "json",
+ });
+ enableTracing && console.log("got response", resp.data);
+ enableTracing && console.log("resp type", typeof resp.data);
+ return {
+ responseJson: resp.data,
+ status: resp.status,
+ };
+ }
+
+ async postJson(
+ url: string,
+ body: any,
+ ): Promise<import("../http").HttpResponse> {
+ enableTracing && console.log("making POST request to", url);
+ const resp = await Axios({
+ method: "post",
+ url: url,
+ responseType: "json",
+ data: body,
+ });
+ enableTracing && console.log("got response", resp.data);
+ enableTracing && console.log("resp type", typeof resp.data);
+ return {
+ responseJson: resp.data,
+ status: resp.status,
+ };
+ }
+
+ async postForm(
+ url: string,
+ form: any,
+ ): Promise<import("../http").HttpResponse> {
+ enableTracing && console.log("making POST request to", url);
+ const resp = await Axios({
+ method: "post",
+ url: url,
+ data: querystring.stringify(form),
+ responseType: "json",
+ });
+ enableTracing && console.log("got response", resp.data);
+ enableTracing && console.log("resp type", typeof resp.data);
+ return {
+ responseJson: resp.data,
+ status: resp.status,
+ };
+ }
+}
+
+interface DefaultNodeWalletArgs {
+ /**
+ * 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;
+}
+
+/**
+ * Get a wallet instance with default settings for node.
+ */
+export async function getDefaultNodeWallet(
+ args: DefaultNodeWalletArgs = {},
+): Promise<Wallet> {
+ const myNotifier = new ConsoleNotifier();
+
+ const myBadge = new ConsoleBadge();
+
+ const myBackend = new MemoryBackend();
+ myBackend.enableTracing = false;
+
+ const storagePath = args.persistentStoragePath;
+ if (storagePath) {
+ console.log(`using storage path ${storagePath}`);
+
+ try {
+ const dbContentStr: string = fs.readFileSync(storagePath, { encoding: "utf-8" });
+ const dbContent = JSON.parse(dbContentStr);
+ myBackend.importDump(dbContent);
+ console.log("imported wallet");
+ } catch (e) {
+ console.log("could not read wallet file");
+ }
+
+ myBackend.afterCommitCallback = async () => {
+ console.log("in afterCommitCallback!");
+ const dbContent = myBackend.exportDump();
+ fs.writeFileSync(storagePath, JSON.stringify(dbContent, undefined, 2), { encoding: "utf-8" });
+ };
+ }
+
+ BridgeIDBFactory.enableTracing = false;
+
+ const myBridgeIdbFactory = new BridgeIDBFactory(myBackend);
+ const myIdbFactory: IDBFactory = (myBridgeIdbFactory as any) as IDBFactory;
+
+ const myHttpLib = new NodeHttpLib();
+
+ const myVersionChange = () => {
+ console.error("version change requested, should not happen");
+ throw Error();
+ };
+
+ const myUnsupportedUpgrade = () => {
+ console.error("unsupported database migration");
+ throw Error();
+ };
+
+ shimIndexedDB(myBridgeIdbFactory);
+
+ console.log("opening taler DB");
+
+ const myDb = await openTalerDb(
+ myIdbFactory,
+ myVersionChange,
+ myUnsupportedUpgrade,
+ );
+
+ console.log("opened db");
+
+ return new Wallet(
+ myDb,
+ myHttpLib,
+ myBadge,
+ myNotifier,
+ new SynchronousCryptoWorkerFactory(),
+ );
+ //const myWallet = new Wallet(myDb, myHttpLib, myBadge, myNotifier, new NodeCryptoWorkerFactory());
+}
+
+export async function withdrawTestBalance(
+ myWallet: Wallet,
+ amount: string = "TESTKUDOS:10",
+ bankBaseUrl: string = "https://bank.test.taler.net/",
+ exchangeBaseUrl: string = "https://exchange.test.taler.net/",
+) {
+ const reserveResponse = await myWallet.createReserve({
+ amount: amounts.parseOrThrow("TESTKUDOS:10.0"),
+ exchange: exchangeBaseUrl,
+ });
+
+ const bank = new Bank(bankBaseUrl);
+
+ const bankUser = await bank.registerRandomUser();
+
+ console.log("bank user", bankUser);
+
+ const exchangePaytoUri = await myWallet.getExchangePaytoUri(
+ exchangeBaseUrl,
+ ["x-taler-bank"],
+ );
+
+ await bank.createReserve(
+ bankUser,
+ amount,
+ reserveResponse.reservePub,
+ exchangePaytoUri,
+ );
+
+ await myWallet.confirmReserve({ reservePub: reserveResponse.reservePub });
+
+ await myWallet.processReserve(reserveResponse.reservePub);
+}