wallet-core/packages/taler-wallet-cli/src/index.ts

652 lines
19 KiB
TypeScript
Raw Normal View History

2019-08-01 23:27:42 +02:00
/*
This file is part of GNU Taler
(C) 2019 Taler Systems S.A.
2019-08-01 23:27:42 +02:00
GNU Taler is free software; you can redistribute it and/or modify it under the
2019-08-01 23:27:42 +02:00
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
2019-08-01 23:27:42 +02:00
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/>
2019-08-01 23:27:42 +02:00
*/
import os from "os";
import fs from "fs";
2020-07-23 20:52:46 +02:00
import {
getDefaultNodeWallet,
Logger,
Amounts,
Wallet,
2020-07-23 20:52:46 +02:00
OperationFailedAndReportedError,
OperationFailedError,
time,
taleruri,
walletTypes,
talerCrypto,
payto,
codec,
testvectors,
walletCoreApi,
NodeHttpLib,
} from "taler-wallet-core";
import * as clk from "./clk";
import { NodeThreadCryptoWorkerFactory } from "taler-wallet-core/lib/crypto/workers/nodeThreadWorker";
import { CryptoApi } from "taler-wallet-core/lib/crypto/workers/cryptoApi";
// This module also serves as the entry point for the crypto
// thread worker, and thus must expose these two handlers.
export { handleWorkerError, handleWorkerMessage } from "taler-wallet-core";
2020-02-24 18:40:36 +01:00
2019-11-21 23:09:43 +01:00
const logger = new Logger("taler-wallet-cli.ts");
2019-08-16 23:29:29 +02:00
2020-03-23 12:30:01 +01:00
const defaultWalletDbPath = os.homedir + "/" + ".talerwalletdb.json";
2019-08-16 23:29:29 +02:00
2019-11-30 00:36:20 +01:00
function assertUnreachable(x: never): never {
throw new Error("Didn't expect to get here");
}
2019-11-19 16:16:12 +01:00
async function doPay(
wallet: Wallet,
payUrl: string,
options: { alwaysYes: boolean } = { alwaysYes: true },
2020-04-07 10:07:32 +02:00
): Promise<void> {
2019-12-20 01:25:22 +01:00
const result = await wallet.preparePayForUri(payUrl);
if (result.status === walletTypes.PreparePayResultType.InsufficientBalance) {
2020-07-29 19:40:41 +02:00
console.log("contract", result.contractTerms);
2019-11-19 16:16:12 +01:00
console.error("insufficient balance");
process.exit(1);
return;
}
if (result.status === walletTypes.PreparePayResultType.AlreadyConfirmed) {
if (result.paid) {
console.log("already paid!");
} else {
console.log("payment already in progress");
}
2019-11-19 16:16:12 +01:00
process.exit(0);
return;
}
if (result.status === "payment-possible") {
console.log("paying ...");
} else {
throw Error("not reached");
}
2020-07-29 19:40:41 +02:00
console.log("contract", result.contractTerms);
console.log("raw amount:", result.amountRaw);
console.log("effective amount:", result.amountEffective);
2019-11-19 16:16:12 +01:00
let pay;
if (options.alwaysYes) {
pay = true;
} else {
while (true) {
const yesNoResp = (await clk.prompt("Pay? [Y/n]")).toLowerCase();
if (yesNoResp === "" || yesNoResp === "y" || yesNoResp === "yes") {
pay = true;
break;
} else if (yesNoResp === "n" || yesNoResp === "no") {
pay = false;
break;
} else {
console.log("please answer y/n");
}
}
}
if (pay) {
2020-04-07 10:07:32 +02:00
await wallet.confirmPay(result.proposalId, undefined);
2019-11-19 16:16:12 +01:00
} else {
console.log("not paying");
}
}
2020-04-07 10:07:32 +02:00
function applyVerbose(verbose: boolean): void {
// TODO
2019-08-18 23:06:27 +02:00
}
2020-04-07 10:07:32 +02:00
function printVersion(): void {
// eslint-disable-next-line @typescript-eslint/no-var-requires
2020-08-06 17:36:56 +02:00
const info = require("../package.json");
2019-11-30 00:36:20 +01:00
console.log(`${info.version}`);
process.exit(0);
}
export const walletCli = clk
2019-11-19 16:16:12 +01:00
.program("wallet", {
help: "Command line interface for the GNU Taler wallet.",
})
2020-03-23 12:30:01 +01:00
.maybeOption("walletDbFile", ["--wallet-db"], clk.STRING, {
2020-03-24 10:55:04 +01:00
help: "location of the wallet database file",
2020-03-23 12:30:01 +01:00
})
2020-03-23 13:17:35 +01:00
.maybeOption("timetravel", ["--timetravel"], clk.INT, {
help: "modify system time by given offset in microseconds",
onPresentHandler: (x) => {
// Convert microseconds to milliseconds and do timetravel
logger.info(`timetravelling ${x} microseconds`);
time.setDangerousTimetravel(x / 1000);
2020-03-23 13:17:35 +01:00
},
})
2019-11-19 16:16:12 +01:00
.maybeOption("inhibit", ["--inhibit"], clk.STRING, {
help:
"Inhibit running certain operations, useful for debugging and testing.",
})
2020-03-24 19:24:32 +01:00
.flag("noThrottle", ["--no-throttle"], {
2020-03-27 19:48:25 +01:00
help: "Don't do any request throttling.",
2020-03-24 19:24:32 +01:00
})
2019-11-30 00:36:20 +01:00
.flag("version", ["-v", "--version"], {
onPresentHandler: printVersion,
})
2019-11-19 16:16:12 +01:00
.flag("verbose", ["-V", "--verbose"], {
help: "Enable verbose output.",
});
type WalletCliArgsType = clk.GetArgType<typeof walletCli>;
async function withWallet<T>(
walletCliArgs: WalletCliArgsType,
f: (w: Wallet) => Promise<T>,
): Promise<T> {
2020-03-23 12:30:01 +01:00
const dbPath = walletCliArgs.wallet.walletDbFile ?? defaultWalletDbPath;
2020-03-24 19:24:32 +01:00
const myHttpLib = new NodeHttpLib();
if (walletCliArgs.wallet.noThrottle) {
myHttpLib.setThrottling(false);
}
const wallet = await getDefaultNodeWallet({
2020-03-23 12:30:01 +01:00
persistentStoragePath: dbPath,
2020-03-24 19:24:32 +01:00
httpLib: myHttpLib,
});
2019-11-21 23:09:43 +01:00
applyVerbose(walletCliArgs.wallet.verbose);
try {
await wallet.fillDefaults();
const ret = await f(wallet);
return ret;
} catch (e) {
2020-07-23 20:52:46 +02:00
if (
e instanceof OperationFailedAndReportedError ||
e instanceof OperationFailedError
) {
2019-11-21 23:09:43 +01:00
console.error("Operation failed: " + e.message);
2020-07-23 20:52:46 +02:00
console.error(
"Error details:",
JSON.stringify(e.operationError, undefined, 2),
);
2019-11-21 23:09:43 +01:00
} else {
2019-12-05 22:17:01 +01:00
console.error("caught unhandled exception (bug?):", e);
2019-11-21 23:09:43 +01:00
}
process.exit(1);
} finally {
wallet.stop();
}
}
2019-11-19 16:16:12 +01:00
walletCli
2019-11-30 00:36:20 +01:00
.subcommand("balance", "balance", { help: "Show wallet balance." })
.flag("json", ["--json"], {
help: "Show raw JSON.",
})
2020-03-24 10:55:04 +01:00
.action(async (args) => {
await withWallet(args, async (wallet) => {
const balance = await wallet.getBalances();
console.log(JSON.stringify(balance, undefined, 2));
});
2019-07-31 01:33:56 +02:00
});
2019-11-19 16:16:12 +01:00
walletCli
.subcommand("api", "api", { help: "Call the wallet-core API directly." })
2020-07-23 15:00:08 +02:00
.requiredArgument("operation", clk.STRING)
.requiredArgument("request", clk.STRING)
2020-03-24 10:55:04 +01:00
.action(async (args) => {
await withWallet(args, async (wallet) => {
2020-07-23 15:00:08 +02:00
let requestJson;
try {
requestJson = JSON.parse(args.api.request);
2020-07-23 15:00:08 +02:00
} catch (e) {
console.error("Invalid JSON");
2020-07-23 15:00:08 +02:00
process.exit(1);
}
const resp = await walletCoreApi.handleCoreApiRequest(
2020-07-23 15:00:08 +02:00
wallet,
args.api.operation,
"reqid-1",
2020-07-23 15:00:08 +02:00
requestJson,
);
console.log(JSON.stringify(resp, undefined, 2));
2019-09-04 14:28:22 +02:00
});
});
2019-11-19 16:16:12 +01:00
walletCli
.subcommand("", "pending", { help: "Show pending operations." })
2020-03-24 10:55:04 +01:00
.action(async (args) => {
await withWallet(args, async (wallet) => {
const pending = await wallet.getPendingOperations();
console.log(JSON.stringify(pending, undefined, 2));
2019-11-19 16:16:12 +01:00
});
});
2020-05-12 10:38:58 +02:00
walletCli
2020-05-15 13:28:15 +02:00
.subcommand("transactions", "transactions", { help: "Show transactions." })
.maybeOption("currency", ["--currency"], clk.STRING)
.maybeOption("search", ["--search"], clk.STRING)
2020-05-12 10:38:58 +02:00
.action(async (args) => {
await withWallet(args, async (wallet) => {
2020-05-15 13:28:15 +02:00
const pending = await wallet.getTransactions({
currency: args.transactions.currency,
search: args.transactions.search,
});
2020-05-12 10:38:58 +02:00
console.log(JSON.stringify(pending, undefined, 2));
});
});
2019-08-20 15:59:05 +02:00
async function asyncSleep(milliSeconds: number): Promise<void> {
return new Promise<void>((resolve, reject) => {
setTimeout(() => resolve(), milliSeconds);
2019-08-20 15:59:05 +02:00
});
}
walletCli
.subcommand("runPendingOpt", "run-pending", {
2019-11-21 23:09:43 +01:00
help: "Run pending operations.",
})
.flag("forceNow", ["-f", "--force-now"])
2020-03-24 10:55:04 +01:00
.action(async (args) => {
await withWallet(args, async (wallet) => {
await wallet.runPending(args.runPendingOpt.forceNow);
});
});
walletCli
.subcommand("finishPendingOpt", "run-until-done", {
help: "Run until no more work is left.",
})
.action(async (args) => {
await withWallet(args, async (wallet) => {
await wallet.runUntilDoneAndStop();
});
});
2019-11-19 16:16:12 +01:00
walletCli
2019-11-21 23:09:43 +01:00
.subcommand("handleUri", "handle-uri", {
help: "Handle a taler:// URI.",
2019-11-19 16:16:12 +01:00
})
2019-11-21 23:09:43 +01:00
.requiredArgument("uri", clk.STRING)
.flag("autoYes", ["-y", "--yes"])
2020-03-24 10:55:04 +01:00
.action(async (args) => {
await withWallet(args, async (wallet) => {
2019-11-21 23:09:43 +01:00
const uri: string = args.handleUri.uri;
const uriType = taleruri.classifyTalerUri(uri);
2019-12-06 12:47:28 +01:00
switch (uriType) {
case taleruri.TalerUriType.TalerPay:
2019-12-06 12:47:28 +01:00
await doPay(wallet, uri, { alwaysYes: args.handleUri.autoYes });
break;
case taleruri.TalerUriType.TalerTip:
2019-12-06 12:47:28 +01:00
{
const res = await wallet.getTipStatus(uri);
console.log("tip status", res);
await wallet.acceptTip(res.tipId);
}
break;
case taleruri.TalerUriType.TalerRefund:
2019-12-06 12:47:28 +01:00
await wallet.applyRefund(uri);
break;
case taleruri.TalerUriType.TalerWithdraw:
2019-12-06 12:47:28 +01:00
{
const withdrawInfo = await wallet.getWithdrawalDetailsForUri(uri);
const selectedExchange = withdrawInfo.defaultExchangeBaseUrl;
2019-12-06 12:47:28 +01:00
if (!selectedExchange) {
console.error("no suggested exchange!");
process.exit(1);
return;
}
const res = await wallet.acceptWithdrawal(uri, selectedExchange);
await wallet.processReserve(res.reservePub);
}
break;
default:
console.log(`URI type (${uriType}) not handled`);
break;
2019-11-21 23:09:43 +01:00
}
2019-12-06 12:47:28 +01:00
return;
2019-11-21 23:09:43 +01:00
});
});
const exchangesCli = walletCli.subcommand("exchangesCmd", "exchanges", {
help: "Manage exchanges.",
});
exchangesCli
.subcommand("exchangesListCmd", "list", {
help: "List known exchanges.",
})
2020-03-24 10:55:04 +01:00
.action(async (args) => {
2019-11-21 23:09:43 +01:00
console.log("Listing exchanges ...");
2020-03-24 10:55:04 +01:00
await withWallet(args, async (wallet) => {
2019-11-21 23:09:43 +01:00
const exchanges = await wallet.getExchanges();
console.log(JSON.stringify(exchanges, undefined, 2));
2019-11-21 23:09:43 +01:00
});
});
exchangesCli
.subcommand("exchangesUpdateCmd", "update", {
help: "Update or add an exchange by base URL.",
})
.requiredArgument("url", clk.STRING, {
help: "Base URL of the exchange.",
})
.flag("force", ["-f", "--force"])
2020-03-24 10:55:04 +01:00
.action(async (args) => {
await withWallet(args, async (wallet) => {
2020-04-07 10:07:32 +02:00
await wallet.updateExchangeFromUrl(
2019-11-21 23:09:43 +01:00
args.exchangesUpdateCmd.url,
args.exchangesUpdateCmd.force,
);
});
});
exchangesCli
.subcommand("exchangesAddCmd", "add", {
help: "Add an exchange by base URL.",
})
.requiredArgument("url", clk.STRING, {
help: "Base URL of the exchange.",
})
.action(async (args) => {
await withWallet(args, async (wallet) => {
2020-07-16 19:22:56 +02:00
await wallet.updateExchangeFromUrl(args.exchangesAddCmd.url);
});
});
exchangesCli
.subcommand("exchangesAcceptTosCmd", "accept-tos", {
help: "Accept terms of service.",
})
.requiredArgument("url", clk.STRING, {
help: "Base URL of the exchange.",
})
.requiredArgument("etag", clk.STRING, {
help: "ToS version tag to accept",
})
.action(async (args) => {
await withWallet(args, async (wallet) => {
await wallet.acceptExchangeTermsOfService(
args.exchangesAcceptTosCmd.url,
2020-07-16 19:22:56 +02:00
args.exchangesAcceptTosCmd.etag,
);
});
});
2020-07-16 19:22:56 +02:00
exchangesCli
.subcommand("exchangesTosCmd", "tos", {
help: "Show terms of service.",
})
.requiredArgument("url", clk.STRING, {
help: "Base URL of the exchange.",
})
.action(async (args) => {
await withWallet(args, async (wallet) => {
2020-07-16 19:22:56 +02:00
const tosResult = await wallet.getExchangeTos(args.exchangesTosCmd.url);
console.log(JSON.stringify(tosResult, undefined, 2));
});
});
2019-11-21 23:09:43 +01:00
const advancedCli = walletCli.subcommand("advancedArgs", "advanced", {
help:
"Subcommands for advanced operations (only use if you know what you're doing!).",
});
advancedCli
.subcommand("manualWithdrawalDetails", "manual-withdrawal-details", {
help: "Query withdrawal fees.",
})
.requiredArgument("exchange", clk.STRING)
.requiredArgument("amount", clk.STRING)
.action(async (args) => {
await withWallet(args, async (wallet) => {
2020-07-11 09:56:07 +02:00
const details = await wallet.getWithdrawalDetailsForAmount(
args.manualWithdrawalDetails.exchange,
Amounts.parseOrThrow(args.manualWithdrawalDetails.amount),
);
console.log(JSON.stringify(details, undefined, 2));
});
});
advancedCli
.subcommand("decode", "decode", {
2019-11-30 00:36:20 +01:00
help: "Decode base32-crockford.",
})
2020-03-24 10:55:04 +01:00
.action((args) => {
2019-11-30 00:36:20 +01:00
const enc = fs.readFileSync(0, "utf8");
fs.writeFileSync(1, talerCrypto.decodeCrock(enc.trim()));
});
2020-06-21 14:49:27 +02:00
advancedCli
2020-06-21 14:50:39 +02:00
.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;
}
2020-07-16 19:22:56 +02:00
const reserve = await wallet.acceptManualWithdrawal(
exchange.baseUrl,
Amounts.parseOrThrow(args.withdrawManually.amount),
);
const completePaytoUri = payto.addPaytoQueryParams(acct.payto_uri, {
2020-06-21 14:50:39 +02:00
amount: args.withdrawManually.amount,
message: `Taler top-up ${reserve.reservePub}`,
});
console.log("Created reserve", reserve.reservePub);
console.log("Payto URI", completePaytoUri);
2020-06-21 14:49:27 +02:00
});
});
const reservesCli = advancedCli.subcommand("reserves", "reserves", {
help: "Manage reserves.",
});
reservesCli
.subcommand("list", "list", {
help: "List reserves.",
})
.action(async (args) => {
await withWallet(args, async (wallet) => {
const reserves = await wallet.getReserves();
console.log(JSON.stringify(reserves, undefined, 2));
});
});
reservesCli
.subcommand("update", "update", {
help: "Update reserve status via exchange.",
})
.requiredArgument("reservePub", clk.STRING)
.action(async (args) => {
await withWallet(args, async (wallet) => {
await wallet.updateReserve(args.update.reservePub);
});
});
2019-11-30 00:36:20 +01:00
advancedCli
.subcommand("payPrepare", "pay-prepare", {
help: "Claim an order but don't pay yet.",
})
.requiredArgument("url", clk.STRING)
2020-03-24 10:55:04 +01:00
.action(async (args) => {
await withWallet(args, async (wallet) => {
2019-12-20 01:25:22 +01:00
const res = await wallet.preparePayForUri(args.payPrepare.url);
2019-11-30 00:36:20 +01:00
switch (res.status) {
case walletTypes.PreparePayResultType.InsufficientBalance:
2019-11-30 00:36:20 +01:00
console.log("insufficient balance");
break;
case walletTypes.PreparePayResultType.AlreadyConfirmed:
if (res.paid) {
console.log("already paid!");
} else {
console.log("payment in progress");
}
2019-11-30 00:36:20 +01:00
break;
case walletTypes.PreparePayResultType.PaymentPossible:
2019-11-30 00:36:20 +01:00
console.log("payment possible");
break;
default:
assertUnreachable(res);
}
});
});
2020-07-20 10:42:35 +02:00
advancedCli
.subcommand("payConfirm", "pay-confirm", {
help: "Confirm payment proposed by a merchant.",
})
.requiredArgument("proposalId", clk.STRING)
.maybeOption("sessionIdOverride", ["--session-id"], clk.STRING)
.action(async (args) => {
await withWallet(args, async (wallet) => {
wallet.confirmPay(
args.payConfirm.proposalId,
args.payConfirm.sessionIdOverride,
);
2020-07-20 10:42:35 +02:00
});
});
2019-11-21 23:09:43 +01:00
advancedCli
.subcommand("refresh", "force-refresh", {
help: "Force a refresh on a coin.",
})
.requiredArgument("coinPub", clk.STRING)
2020-03-24 10:55:04 +01:00
.action(async (args) => {
await withWallet(args, async (wallet) => {
await wallet.refresh(args.refresh.coinPub);
2019-11-21 23:09:43 +01:00
});
});
2020-03-24 10:55:04 +01:00
advancedCli
.subcommand("dumpCoins", "dump-coins", {
help: "Dump coins in an easy-to-process format.",
})
.action(async (args) => {
await withWallet(args, async (wallet) => {
const coinDump = await wallet.dumpCoins();
console.log(JSON.stringify(coinDump, undefined, 2));
});
});
const coinPubListCodec = codec.makeCodecForList(codec.codecForString);
2020-03-24 10:55:04 +01:00
advancedCli
.subcommand("suspendCoins", "suspend-coins", {
help: "Mark a coin as suspended, will not be used for payments.",
})
.requiredArgument("coinPubSpec", clk.STRING)
.action(async (args) => {
await withWallet(args, async (wallet) => {
let coinPubList: string[];
try {
coinPubList = coinPubListCodec.decode(
JSON.parse(args.suspendCoins.coinPubSpec),
);
} catch (e) {
console.log("could not parse coin list:", e.message);
process.exit(1);
}
for (const c of coinPubList) {
await wallet.setCoinSuspended(c, true);
}
});
});
advancedCli
.subcommand("unsuspendCoins", "unsuspend-coins", {
help: "Mark a coin as suspended, will not be used for payments.",
})
.requiredArgument("coinPubSpec", clk.STRING)
.action(async (args) => {
await withWallet(args, async (wallet) => {
let coinPubList: string[];
try {
coinPubList = coinPubListCodec.decode(
JSON.parse(args.unsuspendCoins.coinPubSpec),
);
} catch (e) {
console.log("could not parse coin list:", e.message);
process.exit(1);
}
for (const c of coinPubList) {
await wallet.setCoinSuspended(c, false);
}
});
});
2019-11-21 23:09:43 +01:00
advancedCli
.subcommand("coins", "list-coins", {
help: "List coins.",
})
2020-03-24 10:55:04 +01:00
.action(async (args) => {
await withWallet(args, async (wallet) => {
2019-11-21 23:09:43 +01:00
const coins = await wallet.getCoins();
for (const coin of coins) {
console.log(`coin ${coin.coinPub}`);
console.log(` status ${coin.status}`);
console.log(` exchange ${coin.exchangeBaseUrl}`);
console.log(` denomPubHash ${coin.denomPubHash}`);
2019-11-30 00:36:20 +01:00
console.log(
` remaining amount ${Amounts.stringify(coin.currentAmount)}`,
2019-11-30 00:36:20 +01:00
);
2019-11-21 23:09:43 +01:00
}
});
});
advancedCli
.subcommand("updateReserve", "update-reserve", {
help: "Update reserve status.",
})
.requiredArgument("reservePub", clk.STRING)
2020-03-24 10:55:04 +01:00
.action(async (args) => {
await withWallet(args, async (wallet) => {
const r = await wallet.updateReserve(args.updateReserve.reservePub);
console.log("updated reserve:", JSON.stringify(r, undefined, 2));
});
});
advancedCli
.subcommand("updateReserve", "show-reserve", {
help: "Show the current reserve status.",
})
.requiredArgument("reservePub", clk.STRING)
2020-03-24 10:55:04 +01:00
.action(async (args) => {
await withWallet(args, async (wallet) => {
const r = await wallet.getReserve(args.updateReserve.reservePub);
console.log("updated reserve:", JSON.stringify(r, undefined, 2));
});
});
2019-11-21 23:09:43 +01:00
const testCli = walletCli.subcommand("testingArgs", "testing", {
help: "Subcommands for testing GNU Taler deployments.",
});
2020-06-21 14:50:39 +02:00
testCli.subcommand("vectors", "vectors").action(async (args) => {
testvectors.printTestVectors();
2020-06-21 14:50:39 +02:00
});
2020-06-08 16:02:38 +02:00
testCli.subcommand("cryptoworker", "cryptoworker").action(async (args) => {
const workerFactory = new NodeThreadCryptoWorkerFactory();
const cryptoApi = new CryptoApi(workerFactory);
const res = await cryptoApi.hashString("foo");
console.log(res);
});