implement manual withdrawal

This commit is contained in:
Florian Dold 2020-06-21 18:19:27 +05:30
parent c60b10ac82
commit 3903513913
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B
2 changed files with 53 additions and 3 deletions

View File

@ -34,6 +34,7 @@ import { setDangerousTimetravel } from "../util/time";
import { makeCodecForList, codecForString } from "../util/codec";
import { NodeHttpLib } from "./NodeHttpLib";
import * as nacl from "../crypto/primitives/nacl-fast";
import { addPaytoQueryParams } from "../util/payto";
const logger = new Logger("taler-wallet-cli.ts");
@ -367,6 +368,42 @@ advancedCli
fs.writeFileSync(1, decodeCrock(enc.trim()));
});
advancedCli
.subcommand("withdrawManually", "withdraw-manually", {
help: "Withdraw manually from an exchange.",
})
.requiredOption("exchange", ["--exchange"], clk.STRING, {
help: "Base URL of the exchange.",
})
.requiredOption("amount", ["--amount"], clk.STRING, {
help: "Amount to withdraw",
})
.action(async (args) => {
await withWallet(args, async (wallet) => {
const exchange = await wallet.updateExchangeFromUrl(args.withdrawManually.exchange);
const acct = exchange.wireInfo?.accounts[0];
if (!acct) {
console.log("exchange has no accounts");
return;
}
const reserve = await wallet.createReserve({
amount: Amounts.parseOrThrow(args.withdrawManually.amount),
exchangeWire: acct.payto_uri,
exchange: exchange.baseUrl,
});
await wallet.confirmReserve({
reservePub: reserve.reservePub,
});
const completePaytoUri = addPaytoQueryParams(acct.payto_uri, {
amount: args.withdrawManually.amount,
message: `Taler top-up ${reserve.reservePub}`,
});
console.log("Created reserve", reserve.reservePub);
console.log("Payto URI", completePaytoUri);
});
});
const reservesCli = advancedCli.subcommand("reserves", "reserves", {
help: "Manage reserves.",
});

View File

@ -20,13 +20,26 @@ interface PaytoUri {
params: { [name: string]: string };
}
const paytoPfx = "payto://";
/**
* Add query parameters to a payto URI
*/
export function addPaytoQueryParams(s: string, params: { [name: string]: string }): string {
const [acct, search] = s.slice(paytoPfx.length).split("?");
const searchParams = new URLSearchParams(search || "");
for (let k of Object.keys(params)) {
searchParams.set(k, params[k]);
}
return paytoPfx + acct + "?" + searchParams.toString();
}
export function parsePaytoUri(s: string): PaytoUri | undefined {
const pfx = "payto://";
if (!s.startsWith(pfx)) {
if (!s.startsWith(paytoPfx)) {
return undefined;
}
const [acct, search] = s.slice(pfx.length).split("?");
const [acct, search] = s.slice(paytoPfx.length).split("?");
const firstSlashPos = acct.indexOf("/");