2019-08-17 01:54:01 +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/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 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,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
notifyHandler?: (reason: string) => 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-08-19 20:24:29 +02:00
|
|
|
const myNotifier: Notifier = {
|
|
|
|
notify() {
|
|
|
|
if (args.notifyHandler) {
|
|
|
|
args.notifyHandler("");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-17 01:54:01 +02:00
|
|
|
|
|
|
|
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 () => {
|
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();
|
|
|
|
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;
|
|
|
|
|
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
|
|
|
|
|
|
|
const myVersionChange = () => {
|
|
|
|
console.error("version change requested, should not happen");
|
|
|
|
throw Error();
|
|
|
|
};
|
|
|
|
|
|
|
|
const myUnsupportedUpgrade = () => {
|
|
|
|
console.error("unsupported database migration");
|
|
|
|
throw Error();
|
|
|
|
};
|
|
|
|
|
|
|
|
shimIndexedDB(myBridgeIdbFactory);
|
|
|
|
|
|
|
|
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,
|
2019-08-18 15:08:10 +02:00
|
|
|
amount: string = "TESTKUDOS:10",
|
2019-08-17 01:54:01 +02:00
|
|
|
bankBaseUrl: string = "https://bank.test.taler.net/",
|
|
|
|
exchangeBaseUrl: string = "https://exchange.test.taler.net/",
|
|
|
|
) {
|
|
|
|
const reserveResponse = await myWallet.createReserve({
|
2019-08-17 18:54:09 +02:00
|
|
|
amount: amounts.parseOrThrow(amount),
|
2019-08-17 01:54:01 +02:00
|
|
|
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);
|
|
|
|
}
|