2015-12-25 22:42:14 +01:00
|
|
|
/*
|
2019-12-02 00:42:40 +01:00
|
|
|
This file is part of GNU Taler
|
2019-11-30 00:36:20 +01:00
|
|
|
(C) 2015-2019 GNUnet e.V.
|
2015-12-25 22:42:14 +01:00
|
|
|
|
2019-12-02 00:42:40 +01:00
|
|
|
GNU Taler is free software; you can redistribute it and/or modify it under the
|
2015-12-25 22:42:14 +01: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.
|
|
|
|
|
2019-12-02 00:42:40 +01:00
|
|
|
GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
|
2015-12-25 22:42:14 +01: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
|
2019-12-02 00:42:40 +01:00
|
|
|
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
2015-12-25 22:42:14 +01:00
|
|
|
*/
|
|
|
|
|
2016-01-05 15:42:46 +01:00
|
|
|
/**
|
|
|
|
* High-level wallet operations that should be indepentent from the underlying
|
|
|
|
* browser extension interface.
|
|
|
|
*/
|
|
|
|
|
2017-05-24 16:52:00 +02:00
|
|
|
/**
|
|
|
|
* Imports.
|
|
|
|
*/
|
2021-05-12 16:18:32 +02:00
|
|
|
import {
|
2022-06-10 13:03:47 +02:00
|
|
|
AbsoluteTime,
|
|
|
|
AcceptManualWithdrawalResult,
|
|
|
|
AmountJson,
|
2022-03-10 16:30:24 +01:00
|
|
|
Amounts,
|
|
|
|
BalancesResponse,
|
|
|
|
codecForAbortPayWithRefundRequest,
|
2022-01-16 21:47:43 +01:00
|
|
|
codecForAcceptBankIntegratedWithdrawalRequest,
|
|
|
|
codecForAcceptExchangeTosRequest,
|
|
|
|
codecForAcceptManualWithdrawalRequet,
|
2022-07-12 17:41:14 +02:00
|
|
|
codecForAcceptPeerPushPaymentRequest,
|
2022-01-16 21:47:43 +01:00
|
|
|
codecForAcceptTipRequest,
|
2022-03-10 16:30:24 +01:00
|
|
|
codecForAddExchangeRequest,
|
|
|
|
codecForAny,
|
2022-05-29 06:23:15 +02:00
|
|
|
codecForApplyRefundFromPurchaseIdRequest,
|
2022-03-10 16:30:24 +01:00
|
|
|
codecForApplyRefundRequest,
|
2022-07-12 17:41:14 +02:00
|
|
|
codecForCheckPeerPushPaymentRequest,
|
2022-01-16 21:47:43 +01:00
|
|
|
codecForConfirmPayRequest,
|
2022-03-10 16:30:24 +01:00
|
|
|
codecForCreateDepositGroupRequest,
|
|
|
|
codecForDeleteTransactionRequest,
|
|
|
|
codecForForceRefreshRequest,
|
2022-08-08 18:53:04 +02:00
|
|
|
codecForGetContractTermsDetails,
|
2022-03-10 16:30:24 +01:00
|
|
|
codecForGetExchangeTosRequest,
|
|
|
|
codecForGetExchangeWithdrawalInfo,
|
|
|
|
codecForGetFeeForDeposit,
|
|
|
|
codecForGetWithdrawalDetailsForAmountRequest,
|
|
|
|
codecForGetWithdrawalDetailsForUri,
|
|
|
|
codecForImportDbRequest,
|
2022-06-21 12:40:12 +02:00
|
|
|
codecForInitiatePeerPushPaymentRequest,
|
2022-03-10 16:30:24 +01:00
|
|
|
codecForIntegrationTestArgs,
|
|
|
|
codecForListKnownBankAccounts,
|
2022-05-03 05:16:03 +02:00
|
|
|
codecForPrepareDepositRequest,
|
2022-06-10 13:03:47 +02:00
|
|
|
codecForPreparePayRequest,
|
|
|
|
codecForPrepareRefundRequest,
|
|
|
|
codecForPrepareTipRequest,
|
2022-03-10 16:30:24 +01:00
|
|
|
codecForRetryTransactionRequest,
|
|
|
|
codecForSetCoinSuspendedRequest,
|
|
|
|
codecForSetWalletDeviceIdRequest,
|
|
|
|
codecForTestPayArgs,
|
|
|
|
codecForTrackDepositGroupRequest,
|
|
|
|
codecForTransactionsRequest,
|
|
|
|
codecForWithdrawFakebankRequest,
|
|
|
|
codecForWithdrawTestBalance,
|
|
|
|
CoinDumpJson,
|
2022-06-10 13:03:47 +02:00
|
|
|
CoreApiResponse,
|
|
|
|
Duration,
|
|
|
|
durationFromSpec,
|
2022-03-10 16:30:24 +01:00
|
|
|
durationMin,
|
|
|
|
ExchangeListItem,
|
|
|
|
ExchangesListRespose,
|
|
|
|
GetExchangeTosResult,
|
|
|
|
j2s,
|
|
|
|
KnownBankAccounts,
|
|
|
|
Logger,
|
|
|
|
ManualWithdrawalDetails,
|
|
|
|
NotificationType,
|
|
|
|
parsePaytoUri,
|
|
|
|
PaytoUri,
|
|
|
|
RefreshReason,
|
2022-06-10 13:03:47 +02:00
|
|
|
TalerErrorCode,
|
|
|
|
URL,
|
|
|
|
WalletNotification,
|
2021-05-12 16:18:32 +02:00
|
|
|
} from "@gnu-taler/taler-util";
|
2022-05-03 00:21:13 +02:00
|
|
|
import { TalerCryptoInterface } from "./crypto/cryptoImplementation.js";
|
2022-03-23 21:24:23 +01:00
|
|
|
import {
|
|
|
|
CryptoDispatcher,
|
2022-06-10 13:03:47 +02:00
|
|
|
CryptoWorkerFactory,
|
2022-03-23 21:24:23 +01:00
|
|
|
} from "./crypto/workers/cryptoDispatcher.js";
|
2022-01-16 21:47:43 +01:00
|
|
|
import {
|
|
|
|
AuditorTrustRecord,
|
|
|
|
CoinSourceType,
|
|
|
|
exportDb,
|
|
|
|
importDb,
|
|
|
|
ReserveRecordStatus,
|
2022-06-10 13:03:47 +02:00
|
|
|
WalletStoresV1,
|
2022-01-16 21:47:43 +01:00
|
|
|
} from "./db.js";
|
2022-03-23 21:24:23 +01:00
|
|
|
import { getErrorDetailFromException, TalerError } from "./errors.js";
|
2022-05-03 00:21:13 +02:00
|
|
|
import {
|
|
|
|
DenomInfo,
|
|
|
|
ExchangeOperations,
|
|
|
|
InternalWalletState,
|
|
|
|
MerchantInfo,
|
|
|
|
MerchantOperations,
|
|
|
|
NotificationListener,
|
|
|
|
RecoupOperations,
|
|
|
|
} from "./internal-wallet-state.js";
|
2022-01-16 21:47:43 +01:00
|
|
|
import { exportBackup } from "./operations/backup/export.js";
|
2019-12-02 00:42:40 +01:00
|
|
|
import {
|
2021-02-08 15:38:34 +01:00
|
|
|
addBackupProvider,
|
|
|
|
codecForAddBackupProviderRequest,
|
2021-07-15 20:03:45 +02:00
|
|
|
codecForRemoveBackupProvider,
|
2021-07-07 18:28:02 +02:00
|
|
|
codecForRunBackupCycle,
|
2021-02-08 15:38:34 +01:00
|
|
|
getBackupInfo,
|
|
|
|
getBackupRecovery,
|
|
|
|
loadBackupRecovery,
|
2021-06-25 13:27:06 +02:00
|
|
|
processBackupForProvider,
|
2021-07-15 20:03:45 +02:00
|
|
|
removeBackupProvider,
|
2022-06-10 13:03:47 +02:00
|
|
|
runBackupCycle,
|
2021-06-17 17:40:42 +02:00
|
|
|
} from "./operations/backup/index.js";
|
2022-01-16 21:47:43 +01:00
|
|
|
import { setWalletDeviceId } from "./operations/backup/state.js";
|
2021-06-17 17:40:42 +02:00
|
|
|
import { getBalances } from "./operations/balance.js";
|
2021-02-08 15:38:34 +01:00
|
|
|
import {
|
|
|
|
createDepositGroup,
|
2021-12-23 19:17:36 +01:00
|
|
|
getFeeForDeposit,
|
2022-05-03 05:16:03 +02:00
|
|
|
prepareDepositGroup,
|
2021-02-08 15:38:34 +01:00
|
|
|
processDepositGroup,
|
2022-06-10 13:03:47 +02:00
|
|
|
trackDepositGroup,
|
2021-06-17 17:40:42 +02:00
|
|
|
} from "./operations/deposits.js";
|
2021-02-08 15:38:34 +01:00
|
|
|
import {
|
|
|
|
acceptExchangeTermsOfService,
|
2022-01-24 18:12:12 +01:00
|
|
|
downloadTosFromAcceptedFormat,
|
2021-06-09 15:14:17 +02:00
|
|
|
getExchangeDetails,
|
2022-01-24 18:12:12 +01:00
|
|
|
getExchangeRequestTimeout,
|
2021-06-17 21:06:45 +02:00
|
|
|
getExchangeTrust,
|
2022-01-24 18:12:12 +01:00
|
|
|
updateExchangeFromUrl,
|
2022-06-10 13:03:47 +02:00
|
|
|
updateExchangeTermsOfService,
|
2021-06-17 17:40:42 +02:00
|
|
|
} from "./operations/exchanges.js";
|
2022-01-16 21:47:43 +01:00
|
|
|
import { getMerchantInfo } from "./operations/merchants.js";
|
2019-12-02 00:42:40 +01:00
|
|
|
import {
|
|
|
|
confirmPay,
|
2022-08-08 18:53:04 +02:00
|
|
|
getContractTermsDetails,
|
2021-02-08 15:38:34 +01:00
|
|
|
preparePayForUri,
|
2019-12-03 00:52:15 +01:00
|
|
|
processDownloadProposal,
|
2022-06-10 13:03:47 +02:00
|
|
|
processPurchasePay,
|
2021-06-17 17:40:42 +02:00
|
|
|
} from "./operations/pay.js";
|
2022-07-12 17:41:14 +02:00
|
|
|
import {
|
|
|
|
acceptPeerPushPayment,
|
|
|
|
checkPeerPushPayment,
|
|
|
|
initiatePeerToPeerPush,
|
|
|
|
} from "./operations/peer-to-peer.js";
|
2021-06-17 17:40:42 +02:00
|
|
|
import { getPendingOperations } from "./operations/pending.js";
|
2021-06-22 12:18:12 +02:00
|
|
|
import { createRecoupGroup, processRecoupGroup } from "./operations/recoup.js";
|
2021-02-08 15:38:34 +01:00
|
|
|
import {
|
|
|
|
autoRefresh,
|
|
|
|
createRefreshGroup,
|
2022-06-10 13:03:47 +02:00
|
|
|
processRefreshGroup,
|
2021-06-17 17:40:42 +02:00
|
|
|
} from "./operations/refresh.js";
|
2021-02-08 15:38:34 +01:00
|
|
|
import {
|
|
|
|
abortFailedPayWithRefund,
|
|
|
|
applyRefund,
|
2022-05-29 06:23:15 +02:00
|
|
|
applyRefundFromPurchaseId,
|
2022-05-03 00:21:13 +02:00
|
|
|
prepareRefund,
|
2022-06-10 13:03:47 +02:00
|
|
|
processPurchaseQueryRefund,
|
2021-06-17 17:40:42 +02:00
|
|
|
} from "./operations/refund.js";
|
2021-02-08 15:38:34 +01:00
|
|
|
import {
|
|
|
|
runIntegrationTest,
|
|
|
|
testPay,
|
2022-06-10 13:03:47 +02:00
|
|
|
withdrawTestBalance,
|
2021-06-17 17:40:42 +02:00
|
|
|
} from "./operations/testing.js";
|
|
|
|
import { acceptTip, prepareTip, processTip } from "./operations/tip.js";
|
2021-06-15 18:52:43 +02:00
|
|
|
import {
|
|
|
|
deleteTransaction,
|
|
|
|
getTransactions,
|
2022-06-10 13:03:47 +02:00
|
|
|
retryTransaction,
|
2021-06-17 17:40:42 +02:00
|
|
|
} from "./operations/transactions.js";
|
2021-02-08 15:38:34 +01:00
|
|
|
import {
|
2022-08-09 15:00:45 +02:00
|
|
|
acceptWithdrawalFromUri,
|
|
|
|
createManualWithdrawal,
|
2021-02-08 15:38:34 +01:00
|
|
|
getExchangeWithdrawalInfo,
|
2022-08-09 15:00:45 +02:00
|
|
|
getFundingPaytoUrisTx,
|
2021-02-08 15:38:34 +01:00
|
|
|
getWithdrawalDetailsForUri,
|
2022-08-09 15:00:45 +02:00
|
|
|
processWithdrawalGroup as processWithdrawalGroup,
|
2021-06-17 17:40:42 +02:00
|
|
|
} from "./operations/withdraw.js";
|
2016-05-24 01:53:56 +02:00
|
|
|
import {
|
2022-03-10 16:30:24 +01:00
|
|
|
PendingOperationsResponse,
|
|
|
|
PendingTaskInfo,
|
2022-06-10 13:03:47 +02:00
|
|
|
PendingTaskType,
|
2021-03-17 17:56:37 +01:00
|
|
|
} from "./pending-types.js";
|
2021-06-17 17:40:42 +02:00
|
|
|
import { assertUnreachable } from "./util/assertUnreachable.js";
|
2021-06-17 21:06:45 +02:00
|
|
|
import { AsyncOpMemoMap, AsyncOpMemoSingle } from "./util/asyncMemo.js";
|
2022-01-16 21:47:43 +01:00
|
|
|
import {
|
|
|
|
HttpRequestLibrary,
|
2022-06-10 13:03:47 +02:00
|
|
|
readSuccessResponseJsonOrThrow,
|
2022-01-16 21:47:43 +01:00
|
|
|
} from "./util/http.js";
|
2021-06-17 21:06:45 +02:00
|
|
|
import {
|
|
|
|
AsyncCondition,
|
|
|
|
OpenedPromise,
|
2022-06-10 13:03:47 +02:00
|
|
|
openPromise,
|
2021-06-17 21:06:45 +02:00
|
|
|
} from "./util/promiseUtils.js";
|
2022-01-13 12:08:31 +01:00
|
|
|
import { DbAccess, GetReadWriteAccess } from "./util/query.js";
|
2022-04-11 20:10:16 +02:00
|
|
|
import { TimerAPI, TimerGroup } from "./util/timer.js";
|
2022-01-16 21:47:43 +01:00
|
|
|
import { WalletCoreApiClient } from "./wallet-api-types.js";
|
2017-12-12 21:54:14 +01:00
|
|
|
|
2021-05-20 13:14:47 +02:00
|
|
|
const builtinAuditors: AuditorTrustRecord[] = [
|
2017-03-24 16:59:23 +01:00
|
|
|
{
|
2021-05-20 13:14:47 +02:00
|
|
|
currency: "KUDOS",
|
|
|
|
auditorPub: "BW9DC48PHQY4NH011SHHX36DZZ3Q22Y6X7FZ1VD1CMZ2PTFZ6PN0",
|
|
|
|
auditorBaseUrl: "https://auditor.demo.taler.net/",
|
|
|
|
uids: ["5P25XF8TVQP9AW6VYGY2KV47WT5Y3ZXFSJAA570GJPX5SVJXKBVG"],
|
2017-03-24 16:59:23 +01:00
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2019-11-21 23:09:43 +01:00
|
|
|
const logger = new Logger("wallet.ts");
|
|
|
|
|
2021-06-15 18:52:43 +02:00
|
|
|
async function getWithdrawalDetailsForAmount(
|
|
|
|
ws: InternalWalletState,
|
|
|
|
exchangeBaseUrl: string,
|
|
|
|
amount: AmountJson,
|
|
|
|
): Promise<ManualWithdrawalDetails> {
|
|
|
|
const wi = await getExchangeWithdrawalInfo(ws, exchangeBaseUrl, amount);
|
|
|
|
const paytoUris = wi.exchangeDetails.wireInfo.accounts.map(
|
|
|
|
(x) => x.payto_uri,
|
|
|
|
);
|
|
|
|
if (!paytoUris) {
|
|
|
|
throw Error("exchange is in invalid state");
|
2019-12-02 00:42:40 +01:00
|
|
|
}
|
2021-06-15 18:52:43 +02:00
|
|
|
return {
|
|
|
|
amountRaw: Amounts.stringify(amount),
|
|
|
|
amountEffective: Amounts.stringify(wi.selectedDenoms.totalCoinValue),
|
|
|
|
paytoUris,
|
|
|
|
tosAccepted: wi.termsOfServiceAccepted,
|
|
|
|
};
|
|
|
|
}
|
2019-12-02 00:42:40 +01:00
|
|
|
|
2021-06-15 18:52:43 +02:00
|
|
|
/**
|
|
|
|
* Execute one operation based on the pending operation info record.
|
|
|
|
*/
|
|
|
|
async function processOnePendingOperation(
|
|
|
|
ws: InternalWalletState,
|
2021-06-25 13:27:06 +02:00
|
|
|
pending: PendingTaskInfo,
|
2021-06-15 18:52:43 +02:00
|
|
|
forceNow = false,
|
|
|
|
): Promise<void> {
|
|
|
|
logger.trace(`running pending ${JSON.stringify(pending, undefined, 2)}`);
|
|
|
|
switch (pending.type) {
|
2021-06-25 13:27:06 +02:00
|
|
|
case PendingTaskType.ExchangeUpdate:
|
2022-03-29 13:47:32 +02:00
|
|
|
await updateExchangeFromUrl(ws, pending.exchangeBaseUrl, {
|
2021-10-14 11:36:43 +02:00
|
|
|
forceNow,
|
2022-03-29 13:47:32 +02:00
|
|
|
});
|
2021-06-15 18:52:43 +02:00
|
|
|
break;
|
2021-06-25 13:27:06 +02:00
|
|
|
case PendingTaskType.Refresh:
|
2022-03-29 13:47:32 +02:00
|
|
|
await processRefreshGroup(ws, pending.refreshGroupId, { forceNow });
|
2021-06-15 18:52:43 +02:00
|
|
|
break;
|
2021-06-25 13:27:06 +02:00
|
|
|
case PendingTaskType.Withdraw:
|
2022-08-09 15:00:45 +02:00
|
|
|
await processWithdrawalGroup(ws, pending.withdrawalGroupId, { forceNow });
|
2021-06-15 18:52:43 +02:00
|
|
|
break;
|
2021-06-25 13:27:06 +02:00
|
|
|
case PendingTaskType.ProposalDownload:
|
2022-03-29 13:47:32 +02:00
|
|
|
await processDownloadProposal(ws, pending.proposalId, { forceNow });
|
2021-06-15 18:52:43 +02:00
|
|
|
break;
|
2021-06-25 13:27:06 +02:00
|
|
|
case PendingTaskType.TipPickup:
|
2022-03-29 13:47:32 +02:00
|
|
|
await processTip(ws, pending.tipId, { forceNow });
|
2021-06-15 18:52:43 +02:00
|
|
|
break;
|
2021-06-25 13:27:06 +02:00
|
|
|
case PendingTaskType.Pay:
|
2022-03-29 13:47:32 +02:00
|
|
|
await processPurchasePay(ws, pending.proposalId, { forceNow });
|
2021-06-15 18:52:43 +02:00
|
|
|
break;
|
2021-06-25 13:27:06 +02:00
|
|
|
case PendingTaskType.RefundQuery:
|
2022-03-29 13:47:32 +02:00
|
|
|
await processPurchaseQueryRefund(ws, pending.proposalId, { forceNow });
|
2021-06-15 18:52:43 +02:00
|
|
|
break;
|
2021-06-25 13:27:06 +02:00
|
|
|
case PendingTaskType.Recoup:
|
2022-03-29 13:47:32 +02:00
|
|
|
await processRecoupGroup(ws, pending.recoupGroupId, { forceNow });
|
2021-06-15 18:52:43 +02:00
|
|
|
break;
|
2021-06-25 13:27:06 +02:00
|
|
|
case PendingTaskType.ExchangeCheckRefresh:
|
2021-06-15 18:52:43 +02:00
|
|
|
await autoRefresh(ws, pending.exchangeBaseUrl);
|
|
|
|
break;
|
2022-03-28 23:59:16 +02:00
|
|
|
case PendingTaskType.Deposit: {
|
2022-03-29 13:47:32 +02:00
|
|
|
await processDepositGroup(ws, pending.depositGroupId, {
|
|
|
|
forceNow,
|
|
|
|
});
|
2021-06-15 18:52:43 +02:00
|
|
|
break;
|
2022-03-28 23:59:16 +02:00
|
|
|
}
|
2021-06-25 13:27:06 +02:00
|
|
|
case PendingTaskType.Backup:
|
|
|
|
await processBackupForProvider(ws, pending.backupProviderBaseUrl);
|
|
|
|
break;
|
2021-06-15 18:52:43 +02:00
|
|
|
default:
|
|
|
|
assertUnreachable(pending);
|
2019-12-02 00:42:40 +01:00
|
|
|
}
|
2021-06-15 18:52:43 +02:00
|
|
|
}
|
2019-12-02 00:42:40 +01:00
|
|
|
|
2021-06-15 18:52:43 +02:00
|
|
|
/**
|
|
|
|
* Process pending operations.
|
|
|
|
*/
|
|
|
|
export async function runPending(
|
|
|
|
ws: InternalWalletState,
|
|
|
|
forceNow = false,
|
|
|
|
): Promise<void> {
|
|
|
|
const pendingOpsResponse = await getPendingOperations(ws);
|
|
|
|
for (const p of pendingOpsResponse.pendingOperations) {
|
2022-03-18 15:32:41 +01:00
|
|
|
if (!forceNow && !AbsoluteTime.isExpired(p.timestampDue)) {
|
2021-06-15 18:52:43 +02:00
|
|
|
continue;
|
2020-07-11 09:56:07 +02:00
|
|
|
}
|
2021-06-15 18:52:43 +02:00
|
|
|
try {
|
|
|
|
await processOnePendingOperation(ws, p, forceNow);
|
|
|
|
} catch (e) {
|
2022-03-22 21:16:38 +01:00
|
|
|
if (e instanceof TalerError) {
|
2021-06-15 18:52:43 +02:00
|
|
|
console.error(
|
2022-05-31 15:08:31 +02:00
|
|
|
"Pending operation failed:",
|
2022-03-22 21:16:38 +01:00
|
|
|
JSON.stringify(e.errorDetail, undefined, 2),
|
2019-12-09 19:59:08 +01:00
|
|
|
);
|
2021-06-15 18:52:43 +02:00
|
|
|
} else {
|
|
|
|
console.error(e);
|
|
|
|
}
|
2019-11-21 23:09:43 +01:00
|
|
|
}
|
2019-11-30 00:36:20 +01:00
|
|
|
}
|
2021-06-15 18:52:43 +02:00
|
|
|
}
|
2019-11-21 23:09:43 +01:00
|
|
|
|
2021-06-22 13:52:28 +02:00
|
|
|
export interface RetryLoopOpts {
|
|
|
|
/**
|
|
|
|
* Stop when the number of retries is exceeded for any pending
|
|
|
|
* operation.
|
|
|
|
*/
|
|
|
|
maxRetries?: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stop the retry loop when all lifeness-giving pending operations
|
|
|
|
* are done.
|
|
|
|
*
|
|
|
|
* Defaults to false.
|
|
|
|
*/
|
|
|
|
stopWhenDone?: boolean;
|
2021-06-15 18:52:43 +02:00
|
|
|
}
|
2019-12-05 19:38:19 +01:00
|
|
|
|
2021-06-15 18:52:43 +02:00
|
|
|
/**
|
2021-06-22 13:52:28 +02:00
|
|
|
* Main retry loop of the wallet.
|
|
|
|
*
|
|
|
|
* Looks up pending operations from the wallet, runs them, repeat.
|
2021-06-15 18:52:43 +02:00
|
|
|
*/
|
2021-06-22 13:52:28 +02:00
|
|
|
async function runTaskLoop(
|
|
|
|
ws: InternalWalletState,
|
|
|
|
opts: RetryLoopOpts = {},
|
|
|
|
): Promise<void> {
|
2021-06-15 18:52:43 +02:00
|
|
|
for (let iteration = 0; !ws.stopped; iteration++) {
|
|
|
|
const pending = await getPendingOperations(ws);
|
|
|
|
logger.trace(`pending operations: ${j2s(pending)}`);
|
|
|
|
let numGivingLiveness = 0;
|
|
|
|
let numDue = 0;
|
2022-03-18 15:32:41 +01:00
|
|
|
let minDue: AbsoluteTime = AbsoluteTime.never();
|
2022-05-18 19:41:51 +02:00
|
|
|
|
2021-06-15 18:52:43 +02:00
|
|
|
for (const p of pending.pendingOperations) {
|
2021-06-22 13:52:28 +02:00
|
|
|
const maxRetries = opts.maxRetries;
|
|
|
|
|
|
|
|
if (maxRetries && p.retryInfo && p.retryInfo.retryCounter > maxRetries) {
|
|
|
|
logger.warn(
|
2022-05-18 19:38:27 +02:00
|
|
|
`skipping, as ${maxRetries} retries are exceeded in an operation of type ${p.type}`,
|
2021-06-22 13:52:28 +02:00
|
|
|
);
|
2022-05-18 19:38:27 +02:00
|
|
|
continue;
|
2021-06-22 13:52:28 +02:00
|
|
|
}
|
2022-05-18 19:43:48 +02:00
|
|
|
|
|
|
|
minDue = AbsoluteTime.min(minDue, p.timestampDue);
|
|
|
|
if (AbsoluteTime.isExpired(p.timestampDue)) {
|
|
|
|
numDue++;
|
|
|
|
}
|
|
|
|
if (p.givesLifeness) {
|
|
|
|
numGivingLiveness++;
|
|
|
|
}
|
2021-06-15 18:52:43 +02:00
|
|
|
}
|
2021-06-22 13:52:28 +02:00
|
|
|
|
2021-08-19 15:12:33 +02:00
|
|
|
if (opts.stopWhenDone && numGivingLiveness === 0 && iteration !== 0) {
|
2021-06-22 13:52:28 +02:00
|
|
|
logger.warn(`stopping, as no pending operations have lifeness`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-06-15 18:52:43 +02:00
|
|
|
// Make sure that we run tasks that don't give lifeness at least
|
|
|
|
// one time.
|
|
|
|
if (iteration !== 0 && numDue === 0) {
|
|
|
|
// We've executed pending, due operations at least one.
|
|
|
|
// Now we don't have any more operations available,
|
|
|
|
// and need to wait.
|
|
|
|
|
|
|
|
// Wait for at most 5 seconds to the next check.
|
|
|
|
const dt = durationMin(
|
|
|
|
durationFromSpec({
|
|
|
|
seconds: 5,
|
|
|
|
}),
|
2022-03-18 15:32:41 +01:00
|
|
|
Duration.getRemaining(minDue),
|
2021-06-15 18:52:43 +02:00
|
|
|
);
|
|
|
|
logger.trace(`waiting for at most ${dt.d_ms} ms`);
|
|
|
|
const timeout = ws.timerGroup.resolveAfter(dt);
|
|
|
|
ws.notify({
|
|
|
|
type: NotificationType.WaitingForRetry,
|
|
|
|
numGivingLiveness,
|
|
|
|
numPending: pending.pendingOperations.length,
|
|
|
|
});
|
|
|
|
// Wait until either the timeout, or we are notified (via the latch)
|
|
|
|
// that more work might be available.
|
|
|
|
await Promise.race([timeout, ws.latch.wait()]);
|
|
|
|
} else {
|
|
|
|
logger.trace(
|
|
|
|
`running ${pending.pendingOperations.length} pending operations`,
|
|
|
|
);
|
2020-09-03 17:08:26 +02:00
|
|
|
for (const p of pending.pendingOperations) {
|
2022-03-18 15:32:41 +01:00
|
|
|
if (!AbsoluteTime.isExpired(p.timestampDue)) {
|
2021-06-15 18:52:43 +02:00
|
|
|
continue;
|
2020-09-03 17:08:26 +02:00
|
|
|
}
|
2021-06-15 18:52:43 +02:00
|
|
|
try {
|
|
|
|
await processOnePendingOperation(ws, p);
|
|
|
|
} catch (e) {
|
2022-03-22 21:16:38 +01:00
|
|
|
if (
|
|
|
|
e instanceof TalerError &&
|
|
|
|
e.hasErrorCode(TalerErrorCode.WALLET_PENDING_OPERATION_FAILED)
|
|
|
|
) {
|
|
|
|
logger.warn("operation processed resulted in error");
|
|
|
|
logger.warn(`error was: ${j2s(e.errorDetail)}`);
|
2021-06-15 18:52:43 +02:00
|
|
|
} else {
|
2022-03-22 21:16:38 +01:00
|
|
|
// This is a bug, as we expect pending operations to always
|
|
|
|
// do their own error handling and only throw WALLET_PENDING_OPERATION_FAILED
|
|
|
|
// or return something.
|
2021-06-15 18:52:43 +02:00
|
|
|
logger.error("Uncaught exception", e);
|
|
|
|
ws.notify({
|
|
|
|
type: NotificationType.InternalError,
|
|
|
|
message: "uncaught exception",
|
|
|
|
exception: e,
|
|
|
|
});
|
2019-12-05 19:38:19 +01:00
|
|
|
}
|
|
|
|
}
|
2021-06-15 18:52:43 +02:00
|
|
|
ws.notify({
|
|
|
|
type: NotificationType.PendingOperationProcessed,
|
|
|
|
});
|
2019-11-21 23:09:43 +01:00
|
|
|
}
|
|
|
|
}
|
2016-05-24 01:18:23 +02:00
|
|
|
}
|
2021-06-15 18:52:43 +02:00
|
|
|
logger.trace("exiting wallet retry loop");
|
|
|
|
}
|
2016-05-24 01:18:23 +02:00
|
|
|
|
2021-06-15 18:52:43 +02:00
|
|
|
/**
|
|
|
|
* Insert the hard-coded defaults for exchanges, coins and
|
|
|
|
* auditors into the database, unless these defaults have
|
|
|
|
* already been applied.
|
|
|
|
*/
|
|
|
|
async function fillDefaults(ws: InternalWalletState): Promise<void> {
|
|
|
|
await ws.db
|
|
|
|
.mktx((x) => ({ config: x.config, auditorTrustStore: x.auditorTrust }))
|
|
|
|
.runReadWrite(async (tx) => {
|
|
|
|
let applied = false;
|
|
|
|
await tx.config.iter().forEach((x) => {
|
|
|
|
if (x.key == "currencyDefaultsApplied" && x.value == true) {
|
|
|
|
applied = true;
|
2019-11-20 19:48:43 +01:00
|
|
|
}
|
2021-06-09 15:14:17 +02:00
|
|
|
});
|
2021-06-15 18:52:43 +02:00
|
|
|
if (!applied) {
|
|
|
|
for (const c of builtinAuditors) {
|
|
|
|
await tx.auditorTrustStore.put(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2017-03-24 16:59:23 +01:00
|
|
|
|
2021-06-15 18:52:43 +02:00
|
|
|
async function getExchangeTos(
|
|
|
|
ws: InternalWalletState,
|
|
|
|
exchangeBaseUrl: string,
|
2021-10-13 19:26:18 +02:00
|
|
|
acceptedFormat?: string[],
|
2021-06-15 18:52:43 +02:00
|
|
|
): Promise<GetExchangeTosResult> {
|
2022-03-29 13:47:32 +02:00
|
|
|
// FIXME: download ToS in acceptable format if passed!
|
|
|
|
const { exchangeDetails } = await updateExchangeFromUrl(ws, exchangeBaseUrl);
|
2021-10-13 19:26:18 +02:00
|
|
|
const content = exchangeDetails.termsOfServiceText;
|
2021-06-15 18:52:43 +02:00
|
|
|
const currentEtag = exchangeDetails.termsOfServiceLastEtag;
|
2021-10-13 19:26:18 +02:00
|
|
|
const contentType = exchangeDetails.termsOfServiceContentType;
|
2021-10-14 11:36:43 +02:00
|
|
|
if (
|
|
|
|
content === undefined ||
|
|
|
|
currentEtag === undefined ||
|
|
|
|
contentType === undefined
|
|
|
|
) {
|
2021-06-15 18:52:43 +02:00
|
|
|
throw Error("exchange is in invalid state");
|
2019-12-02 00:42:40 +01:00
|
|
|
}
|
2022-03-10 16:30:24 +01:00
|
|
|
if (
|
|
|
|
acceptedFormat &&
|
|
|
|
acceptedFormat.findIndex((f) => f === contentType) !== -1
|
|
|
|
) {
|
2022-01-24 18:12:12 +01:00
|
|
|
return {
|
|
|
|
acceptedEtag: exchangeDetails.termsOfServiceAcceptedEtag,
|
|
|
|
currentEtag,
|
|
|
|
content,
|
|
|
|
contentType,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-03-10 16:30:24 +01:00
|
|
|
const tosDownload = await downloadTosFromAcceptedFormat(
|
|
|
|
ws,
|
|
|
|
exchangeBaseUrl,
|
|
|
|
getExchangeRequestTimeout(),
|
|
|
|
acceptedFormat,
|
|
|
|
);
|
2022-01-24 18:12:12 +01:00
|
|
|
|
|
|
|
if (tosDownload.tosContentType === contentType) {
|
|
|
|
return {
|
|
|
|
acceptedEtag: exchangeDetails.termsOfServiceAcceptedEtag,
|
|
|
|
currentEtag,
|
|
|
|
content,
|
|
|
|
contentType,
|
|
|
|
};
|
|
|
|
}
|
2022-03-10 16:30:24 +01:00
|
|
|
await updateExchangeTermsOfService(ws, exchangeBaseUrl, tosDownload);
|
2022-01-24 18:12:12 +01:00
|
|
|
|
2021-06-15 18:52:43 +02:00
|
|
|
return {
|
|
|
|
acceptedEtag: exchangeDetails.termsOfServiceAcceptedEtag,
|
2022-01-24 18:12:12 +01:00
|
|
|
currentEtag: tosDownload.tosEtag,
|
|
|
|
content: tosDownload.tosText,
|
|
|
|
contentType: tosDownload.tosContentType,
|
2021-06-15 18:52:43 +02:00
|
|
|
};
|
|
|
|
}
|
2019-11-30 00:36:20 +01:00
|
|
|
|
2022-08-09 15:00:45 +02:00
|
|
|
/**
|
|
|
|
* List bank accounts known to the wallet from
|
|
|
|
* previous withdrawals.
|
|
|
|
*/
|
2021-12-23 19:17:36 +01:00
|
|
|
async function listKnownBankAccounts(
|
|
|
|
ws: InternalWalletState,
|
|
|
|
currency?: string,
|
|
|
|
): Promise<KnownBankAccounts> {
|
2022-01-13 12:08:31 +01:00
|
|
|
const accounts: PaytoUri[] = [];
|
2021-12-23 19:17:36 +01:00
|
|
|
await ws.db
|
|
|
|
.mktx((x) => ({
|
2022-08-09 15:00:45 +02:00
|
|
|
withdrawalGroups: x.withdrawalGroups,
|
2021-12-23 19:17:36 +01:00
|
|
|
}))
|
|
|
|
.runReadOnly(async (tx) => {
|
2022-08-09 15:00:45 +02:00
|
|
|
const withdrawalGroups = await tx.withdrawalGroups.iter().toArray();
|
|
|
|
for (const r of withdrawalGroups) {
|
|
|
|
const amount = r.rawWithdrawalAmount;
|
|
|
|
if (currency && currency !== amount.currency) {
|
2022-01-13 12:08:31 +01:00
|
|
|
continue;
|
2021-12-23 19:17:36 +01:00
|
|
|
}
|
2022-01-13 12:08:31 +01:00
|
|
|
const payto = r.senderWire ? parsePaytoUri(r.senderWire) : undefined;
|
2021-12-23 19:17:36 +01:00
|
|
|
if (payto) {
|
2022-01-13 12:08:31 +01:00
|
|
|
accounts.push(payto);
|
2021-12-23 19:17:36 +01:00
|
|
|
}
|
|
|
|
}
|
2022-01-13 12:08:31 +01:00
|
|
|
});
|
|
|
|
return { accounts };
|
2021-12-23 19:17:36 +01:00
|
|
|
}
|
|
|
|
|
2021-06-15 18:52:43 +02:00
|
|
|
async function getExchanges(
|
|
|
|
ws: InternalWalletState,
|
|
|
|
): Promise<ExchangesListRespose> {
|
|
|
|
const exchanges: ExchangeListItem[] = [];
|
|
|
|
await ws.db
|
|
|
|
.mktx((x) => ({
|
|
|
|
exchanges: x.exchanges,
|
|
|
|
exchangeDetails: x.exchangeDetails,
|
|
|
|
}))
|
|
|
|
.runReadOnly(async (tx) => {
|
|
|
|
const exchangeRecords = await tx.exchanges.iter().toArray();
|
|
|
|
for (const r of exchangeRecords) {
|
|
|
|
const dp = r.detailsPointer;
|
|
|
|
if (!dp) {
|
|
|
|
continue;
|
|
|
|
}
|
2021-10-13 19:26:18 +02:00
|
|
|
const { currency } = dp;
|
2021-06-15 18:52:43 +02:00
|
|
|
const exchangeDetails = await getExchangeDetails(tx, r.baseUrl);
|
|
|
|
if (!exchangeDetails) {
|
|
|
|
continue;
|
|
|
|
}
|
2021-11-24 12:55:37 +01:00
|
|
|
|
2021-06-15 18:52:43 +02:00
|
|
|
exchanges.push({
|
|
|
|
exchangeBaseUrl: r.baseUrl,
|
|
|
|
currency,
|
2021-11-24 12:55:37 +01:00
|
|
|
tos: {
|
|
|
|
acceptedVersion: exchangeDetails.termsOfServiceAcceptedEtag,
|
|
|
|
currentVersion: exchangeDetails.termsOfServiceLastEtag,
|
|
|
|
contentType: exchangeDetails.termsOfServiceContentType,
|
|
|
|
content: exchangeDetails.termsOfServiceText,
|
|
|
|
},
|
2021-06-15 18:52:43 +02:00
|
|
|
paytoUris: exchangeDetails.wireInfo.accounts.map((x) => x.payto_uri),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return { exchanges };
|
|
|
|
}
|
|
|
|
|
|
|
|
async function setCoinSuspended(
|
|
|
|
ws: InternalWalletState,
|
|
|
|
coinPub: string,
|
|
|
|
suspended: boolean,
|
|
|
|
): Promise<void> {
|
|
|
|
await ws.db
|
|
|
|
.mktx((x) => ({
|
|
|
|
coins: x.coins,
|
|
|
|
}))
|
|
|
|
.runReadWrite(async (tx) => {
|
|
|
|
const c = await tx.coins.get(coinPub);
|
|
|
|
if (!c) {
|
|
|
|
logger.warn(`coin ${coinPub} not found, won't suspend`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
c.suspended = suspended;
|
|
|
|
await tx.coins.put(c);
|
|
|
|
});
|
|
|
|
}
|
2019-11-30 00:36:20 +01:00
|
|
|
|
2021-06-15 18:52:43 +02:00
|
|
|
/**
|
|
|
|
* Dump the public information of coins we have in an easy-to-process format.
|
|
|
|
*/
|
|
|
|
async function dumpCoins(ws: InternalWalletState): Promise<CoinDumpJson> {
|
|
|
|
const coinsJson: CoinDumpJson = { coins: [] };
|
2022-01-13 22:01:14 +01:00
|
|
|
logger.info("dumping coins");
|
2021-06-15 18:52:43 +02:00
|
|
|
await ws.db
|
|
|
|
.mktx((x) => ({
|
|
|
|
coins: x.coins,
|
|
|
|
denominations: x.denominations,
|
|
|
|
withdrawalGroups: x.withdrawalGroups,
|
|
|
|
}))
|
|
|
|
.runReadOnly(async (tx) => {
|
|
|
|
const coins = await tx.coins.iter().toArray();
|
|
|
|
for (const c of coins) {
|
|
|
|
const denom = await tx.denominations.get([
|
|
|
|
c.exchangeBaseUrl,
|
|
|
|
c.denomPubHash,
|
|
|
|
]);
|
|
|
|
if (!denom) {
|
|
|
|
console.error("no denom session found for coin");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
const cs = c.coinSource;
|
|
|
|
let refreshParentCoinPub: string | undefined;
|
|
|
|
if (cs.type == CoinSourceType.Refresh) {
|
|
|
|
refreshParentCoinPub = cs.oldCoinPub;
|
|
|
|
}
|
|
|
|
let withdrawalReservePub: string | undefined;
|
|
|
|
if (cs.type == CoinSourceType.Withdraw) {
|
|
|
|
const ws = await tx.withdrawalGroups.get(cs.withdrawalGroupId);
|
|
|
|
if (!ws) {
|
|
|
|
console.error("no withdrawal session found for coin");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
withdrawalReservePub = ws.reservePub;
|
|
|
|
}
|
2022-03-10 16:30:24 +01:00
|
|
|
const denomInfo = await ws.getDenomInfo(
|
|
|
|
ws,
|
|
|
|
tx,
|
|
|
|
c.exchangeBaseUrl,
|
|
|
|
c.denomPubHash,
|
|
|
|
);
|
2022-05-18 19:41:51 +02:00
|
|
|
if (!denomInfo) {
|
2022-06-10 13:03:47 +02:00
|
|
|
console.error("no denomination found for coin");
|
2022-05-18 19:41:51 +02:00
|
|
|
continue;
|
|
|
|
}
|
2021-06-15 18:52:43 +02:00
|
|
|
coinsJson.coins.push({
|
|
|
|
coin_pub: c.coinPub,
|
2022-05-18 19:41:51 +02:00
|
|
|
denom_pub: denomInfo.denomPub,
|
2021-06-15 18:52:43 +02:00
|
|
|
denom_pub_hash: c.denomPubHash,
|
|
|
|
denom_value: Amounts.stringify(denom.value),
|
|
|
|
exchange_base_url: c.exchangeBaseUrl,
|
|
|
|
refresh_parent_coin_pub: refreshParentCoinPub,
|
|
|
|
remaining_value: Amounts.stringify(c.currentAmount),
|
|
|
|
withdrawal_reserve_pub: withdrawalReservePub,
|
|
|
|
coin_suspended: c.suspended,
|
2022-05-04 21:11:12 +02:00
|
|
|
ageCommitmentProof: c.ageCommitmentProof,
|
2021-06-15 18:52:43 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return coinsJson;
|
|
|
|
}
|
2016-01-06 15:39:22 +01:00
|
|
|
|
2021-06-15 18:52:43 +02:00
|
|
|
/**
|
|
|
|
* Get an API client from an internal wallet state object.
|
|
|
|
*/
|
|
|
|
export async function getClientFromWalletState(
|
|
|
|
ws: InternalWalletState,
|
|
|
|
): Promise<WalletCoreApiClient> {
|
|
|
|
let id = 0;
|
|
|
|
const client: WalletCoreApiClient = {
|
|
|
|
async call(op, payload): Promise<any> {
|
|
|
|
const res = await handleCoreApiRequest(ws, op, `${id++}`, payload);
|
|
|
|
switch (res.type) {
|
|
|
|
case "error":
|
2022-03-22 21:16:38 +01:00
|
|
|
throw TalerError.fromUncheckedDetail(res.error);
|
2021-06-15 18:52:43 +02:00
|
|
|
case "response":
|
|
|
|
return res.result;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
return client;
|
|
|
|
}
|
2016-11-16 01:59:39 +01:00
|
|
|
|
2021-06-15 18:52:43 +02:00
|
|
|
/**
|
|
|
|
* Implementation of the "wallet-core" API.
|
|
|
|
*/
|
|
|
|
async function dispatchRequestInternal(
|
|
|
|
ws: InternalWalletState,
|
|
|
|
operation: string,
|
|
|
|
payload: unknown,
|
|
|
|
): Promise<Record<string, any>> {
|
2021-07-30 23:35:38 +02:00
|
|
|
if (!ws.initCalled && operation !== "initWallet") {
|
2021-06-15 18:52:43 +02:00
|
|
|
throw Error(
|
|
|
|
`wallet must be initialized before running operation ${operation}`,
|
2021-06-02 13:23:51 +02:00
|
|
|
);
|
2020-07-11 10:32:17 +02:00
|
|
|
}
|
2021-06-15 18:52:43 +02:00
|
|
|
switch (operation) {
|
|
|
|
case "initWallet": {
|
|
|
|
ws.initCalled = true;
|
2021-06-22 12:18:12 +02:00
|
|
|
await fillDefaults(ws);
|
2021-06-15 18:52:43 +02:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
case "withdrawTestkudos": {
|
2022-06-10 13:03:47 +02:00
|
|
|
await withdrawTestBalance(ws, {
|
|
|
|
amount: "TESTKUDOS:10",
|
|
|
|
bankBaseUrl: "https://bank.test.taler.net/",
|
|
|
|
exchangeBaseUrl: "https://exchange.test.taler.net/",
|
|
|
|
});
|
2021-06-15 18:52:43 +02:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
case "withdrawTestBalance": {
|
|
|
|
const req = codecForWithdrawTestBalance().decode(payload);
|
2022-06-10 13:03:47 +02:00
|
|
|
await withdrawTestBalance(ws, req);
|
2021-06-15 18:52:43 +02:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
case "runIntegrationTest": {
|
|
|
|
const req = codecForIntegrationTestArgs().decode(payload);
|
|
|
|
await runIntegrationTest(ws, req);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
case "testPay": {
|
|
|
|
const req = codecForTestPayArgs().decode(payload);
|
2022-06-10 13:03:47 +02:00
|
|
|
return await testPay(ws, req);
|
2021-06-15 18:52:43 +02:00
|
|
|
}
|
|
|
|
case "getTransactions": {
|
|
|
|
const req = codecForTransactionsRequest().decode(payload);
|
|
|
|
return await getTransactions(ws, req);
|
|
|
|
}
|
|
|
|
case "addExchange": {
|
|
|
|
const req = codecForAddExchangeRequest().decode(payload);
|
2022-03-29 13:47:32 +02:00
|
|
|
await updateExchangeFromUrl(ws, req.exchangeBaseUrl, {
|
|
|
|
forceNow: req.forceUpdate,
|
|
|
|
});
|
2021-06-15 18:52:43 +02:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
case "listExchanges": {
|
|
|
|
return await getExchanges(ws);
|
|
|
|
}
|
2021-12-23 19:17:36 +01:00
|
|
|
case "listKnownBankAccounts": {
|
|
|
|
const req = codecForListKnownBankAccounts().decode(payload);
|
|
|
|
return await listKnownBankAccounts(ws, req.currency);
|
|
|
|
}
|
2021-06-15 18:52:43 +02:00
|
|
|
case "getWithdrawalDetailsForUri": {
|
|
|
|
const req = codecForGetWithdrawalDetailsForUri().decode(payload);
|
|
|
|
return await getWithdrawalDetailsForUri(ws, req.talerWithdrawUri);
|
|
|
|
}
|
2021-09-08 20:30:32 +02:00
|
|
|
case "getExchangeWithdrawalInfo": {
|
|
|
|
const req = codecForGetExchangeWithdrawalInfo().decode(payload);
|
2021-10-14 11:36:43 +02:00
|
|
|
return await getExchangeWithdrawalInfo(
|
|
|
|
ws,
|
|
|
|
req.exchangeBaseUrl,
|
|
|
|
req.amount,
|
|
|
|
);
|
2021-09-08 20:30:32 +02:00
|
|
|
}
|
2021-06-15 18:52:43 +02:00
|
|
|
case "acceptManualWithdrawal": {
|
|
|
|
const req = codecForAcceptManualWithdrawalRequet().decode(payload);
|
2022-08-09 15:00:45 +02:00
|
|
|
const res = await createManualWithdrawal(ws, {
|
|
|
|
amount: Amounts.parseOrThrow(req.amount),
|
|
|
|
exchangeBaseUrl: req.exchangeBaseUrl,
|
|
|
|
restrictAge: req.restrictAge,
|
|
|
|
});
|
2021-06-15 18:52:43 +02:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
case "getWithdrawalDetailsForAmount": {
|
2022-01-13 12:08:31 +01:00
|
|
|
const req =
|
|
|
|
codecForGetWithdrawalDetailsForAmountRequest().decode(payload);
|
2021-06-15 18:52:43 +02:00
|
|
|
return await getWithdrawalDetailsForAmount(
|
|
|
|
ws,
|
|
|
|
req.exchangeBaseUrl,
|
|
|
|
Amounts.parseOrThrow(req.amount),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
case "getBalances": {
|
|
|
|
return await getBalances(ws);
|
|
|
|
}
|
|
|
|
case "getPendingOperations": {
|
|
|
|
return await getPendingOperations(ws);
|
|
|
|
}
|
|
|
|
case "setExchangeTosAccepted": {
|
|
|
|
const req = codecForAcceptExchangeTosRequest().decode(payload);
|
|
|
|
await acceptExchangeTermsOfService(ws, req.exchangeBaseUrl, req.etag);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
case "applyRefund": {
|
|
|
|
const req = codecForApplyRefundRequest().decode(payload);
|
|
|
|
return await applyRefund(ws, req.talerRefundUri);
|
|
|
|
}
|
2022-05-29 06:23:15 +02:00
|
|
|
case "applyRefundFromPurchaseId": {
|
|
|
|
const req = codecForApplyRefundFromPurchaseIdRequest().decode(payload);
|
|
|
|
return await applyRefundFromPurchaseId(ws, req.purchaseId);
|
|
|
|
}
|
2021-06-15 18:52:43 +02:00
|
|
|
case "acceptBankIntegratedWithdrawal": {
|
2022-01-13 12:08:31 +01:00
|
|
|
const req =
|
|
|
|
codecForAcceptBankIntegratedWithdrawalRequest().decode(payload);
|
2022-08-09 15:00:45 +02:00
|
|
|
return await acceptWithdrawalFromUri(ws, {
|
|
|
|
selectedExchange: req.exchangeBaseUrl,
|
|
|
|
talerWithdrawUri: req.talerWithdrawUri,
|
|
|
|
forcedDenomSel: req.forcedDenomSel,
|
|
|
|
restrictAge: req.restrictAge,
|
|
|
|
});
|
2021-06-15 18:52:43 +02:00
|
|
|
}
|
|
|
|
case "getExchangeTos": {
|
|
|
|
const req = codecForGetExchangeTosRequest().decode(payload);
|
2021-10-14 11:36:43 +02:00
|
|
|
return getExchangeTos(ws, req.exchangeBaseUrl, req.acceptedFormat);
|
2021-06-15 18:52:43 +02:00
|
|
|
}
|
2022-08-08 18:53:04 +02:00
|
|
|
case "getContractTermsDetails": {
|
|
|
|
const req = codecForGetContractTermsDetails().decode(payload);
|
|
|
|
return getContractTermsDetails(ws, req.proposalId);
|
|
|
|
}
|
2021-06-15 18:52:43 +02:00
|
|
|
case "retryPendingNow": {
|
|
|
|
await runPending(ws, true);
|
|
|
|
return {};
|
|
|
|
}
|
2021-06-17 13:34:59 +02:00
|
|
|
// FIXME: Deprecate one of the aliases!
|
|
|
|
case "preparePayForUri":
|
2021-06-15 18:52:43 +02:00
|
|
|
case "preparePay": {
|
|
|
|
const req = codecForPreparePayRequest().decode(payload);
|
|
|
|
return await preparePayForUri(ws, req.talerPayUri);
|
|
|
|
}
|
|
|
|
case "confirmPay": {
|
|
|
|
const req = codecForConfirmPayRequest().decode(payload);
|
|
|
|
return await confirmPay(ws, req.proposalId, req.sessionId);
|
|
|
|
}
|
|
|
|
case "abortFailedPayWithRefund": {
|
|
|
|
const req = codecForAbortPayWithRefundRequest().decode(payload);
|
|
|
|
await abortFailedPayWithRefund(ws, req.proposalId);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
case "dumpCoins": {
|
|
|
|
return await dumpCoins(ws);
|
|
|
|
}
|
|
|
|
case "setCoinSuspended": {
|
|
|
|
const req = codecForSetCoinSuspendedRequest().decode(payload);
|
|
|
|
await setCoinSuspended(ws, req.coinPub, req.suspended);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
case "forceRefresh": {
|
|
|
|
const req = codecForForceRefreshRequest().decode(payload);
|
|
|
|
const coinPubs = req.coinPubList.map((x) => ({ coinPub: x }));
|
|
|
|
const refreshGroupId = await ws.db
|
2021-06-09 15:14:17 +02:00
|
|
|
.mktx((x) => ({
|
|
|
|
refreshGroups: x.refreshGroups,
|
|
|
|
denominations: x.denominations,
|
|
|
|
coins: x.coins,
|
|
|
|
}))
|
|
|
|
.runReadWrite(async (tx) => {
|
2019-12-16 12:53:22 +01:00
|
|
|
return await createRefreshGroup(
|
2021-06-15 18:52:43 +02:00
|
|
|
ws,
|
2019-12-16 12:53:22 +01:00
|
|
|
tx,
|
2021-06-15 18:52:43 +02:00
|
|
|
coinPubs,
|
2019-12-16 12:53:22 +01:00
|
|
|
RefreshReason.Manual,
|
|
|
|
);
|
2021-06-09 15:14:17 +02:00
|
|
|
});
|
2022-03-29 13:47:32 +02:00
|
|
|
processRefreshGroup(ws, refreshGroupId.refreshGroupId, {
|
|
|
|
forceNow: true,
|
|
|
|
}).catch((x) => {
|
|
|
|
logger.error(x);
|
|
|
|
});
|
2021-06-15 18:52:43 +02:00
|
|
|
return {
|
|
|
|
refreshGroupId,
|
|
|
|
};
|
2019-12-06 11:01:39 +01:00
|
|
|
}
|
2021-06-15 18:52:43 +02:00
|
|
|
case "prepareTip": {
|
|
|
|
const req = codecForPrepareTipRequest().decode(payload);
|
|
|
|
return await prepareTip(ws, req.talerTipUri);
|
2019-12-06 11:01:39 +01:00
|
|
|
}
|
2022-05-03 00:21:13 +02:00
|
|
|
case "prepareRefund": {
|
|
|
|
const req = codecForPrepareRefundRequest().decode(payload);
|
|
|
|
return await prepareRefund(ws, req.talerRefundUri);
|
|
|
|
}
|
2021-06-15 18:52:43 +02:00
|
|
|
case "acceptTip": {
|
|
|
|
const req = codecForAcceptTipRequest().decode(payload);
|
|
|
|
await acceptTip(ws, req.walletTipId);
|
|
|
|
return {};
|
2019-11-30 00:36:20 +01:00
|
|
|
}
|
2021-06-15 18:52:43 +02:00
|
|
|
case "exportBackupPlain": {
|
|
|
|
return exportBackup(ws);
|
2019-12-06 11:01:39 +01:00
|
|
|
}
|
2021-06-15 18:52:43 +02:00
|
|
|
case "addBackupProvider": {
|
|
|
|
const req = codecForAddBackupProviderRequest().decode(payload);
|
|
|
|
await addBackupProvider(ws, req);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
case "runBackupCycle": {
|
2021-07-07 18:28:02 +02:00
|
|
|
const req = codecForRunBackupCycle().decode(payload);
|
|
|
|
await runBackupCycle(ws, req);
|
2021-06-15 18:52:43 +02:00
|
|
|
return {};
|
|
|
|
}
|
2021-07-15 20:03:45 +02:00
|
|
|
case "removeBackupProvider": {
|
|
|
|
const req = codecForRemoveBackupProvider().decode(payload);
|
|
|
|
await removeBackupProvider(ws, req);
|
|
|
|
return {};
|
|
|
|
}
|
2021-06-15 18:52:43 +02:00
|
|
|
case "exportBackupRecovery": {
|
|
|
|
const resp = await getBackupRecovery(ws);
|
|
|
|
return resp;
|
|
|
|
}
|
|
|
|
case "importBackupRecovery": {
|
|
|
|
const req = codecForAny().decode(payload);
|
|
|
|
await loadBackupRecovery(ws, req);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
case "getBackupInfo": {
|
|
|
|
const resp = await getBackupInfo(ws);
|
|
|
|
return resp;
|
|
|
|
}
|
2021-12-23 19:17:36 +01:00
|
|
|
case "getFeeForDeposit": {
|
|
|
|
const req = codecForGetFeeForDeposit().decode(payload);
|
|
|
|
return await getFeeForDeposit(ws, req);
|
|
|
|
}
|
2022-05-03 05:16:03 +02:00
|
|
|
case "prepareDeposit": {
|
|
|
|
const req = codecForPrepareDepositRequest().decode(payload);
|
|
|
|
return await prepareDepositGroup(ws, req);
|
|
|
|
}
|
2021-06-15 18:52:43 +02:00
|
|
|
case "createDepositGroup": {
|
|
|
|
const req = codecForCreateDepositGroupRequest().decode(payload);
|
|
|
|
return await createDepositGroup(ws, req);
|
|
|
|
}
|
|
|
|
case "trackDepositGroup": {
|
|
|
|
const req = codecForTrackDepositGroupRequest().decode(payload);
|
|
|
|
return trackDepositGroup(ws, req);
|
|
|
|
}
|
|
|
|
case "deleteTransaction": {
|
|
|
|
const req = codecForDeleteTransactionRequest().decode(payload);
|
|
|
|
await deleteTransaction(ws, req.transactionId);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
case "retryTransaction": {
|
|
|
|
const req = codecForRetryTransactionRequest().decode(payload);
|
|
|
|
await retryTransaction(ws, req.transactionId);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
case "setWalletDeviceId": {
|
|
|
|
const req = codecForSetWalletDeviceIdRequest().decode(payload);
|
|
|
|
await setWalletDeviceId(ws, req.walletDeviceId);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
case "listCurrencies": {
|
|
|
|
return await ws.db
|
|
|
|
.mktx((x) => ({
|
|
|
|
auditorTrust: x.auditorTrust,
|
|
|
|
exchangeTrust: x.exchangeTrust,
|
|
|
|
}))
|
|
|
|
.runReadOnly(async (tx) => {
|
|
|
|
const trustedAuditors = await tx.auditorTrust.iter().toArray();
|
|
|
|
const trustedExchanges = await tx.exchangeTrust.iter().toArray();
|
|
|
|
return {
|
|
|
|
trustedAuditors: trustedAuditors.map((x) => ({
|
|
|
|
currency: x.currency,
|
|
|
|
auditorBaseUrl: x.auditorBaseUrl,
|
|
|
|
auditorPub: x.auditorPub,
|
|
|
|
})),
|
|
|
|
trustedExchanges: trustedExchanges.map((x) => ({
|
|
|
|
currency: x.currency,
|
|
|
|
exchangeBaseUrl: x.exchangeBaseUrl,
|
|
|
|
exchangeMasterPub: x.exchangeMasterPub,
|
|
|
|
})),
|
|
|
|
};
|
2020-08-14 12:23:50 +02:00
|
|
|
});
|
2020-08-14 09:36:42 +02:00
|
|
|
}
|
2021-10-14 11:36:43 +02:00
|
|
|
case "withdrawFakebank": {
|
|
|
|
const req = codecForWithdrawFakebankRequest().decode(payload);
|
|
|
|
const amount = Amounts.parseOrThrow(req.amount);
|
|
|
|
const details = await getWithdrawalDetailsForAmount(
|
|
|
|
ws,
|
|
|
|
req.exchange,
|
|
|
|
amount,
|
|
|
|
);
|
2022-08-09 15:00:45 +02:00
|
|
|
const wres = await createManualWithdrawal(ws, {
|
|
|
|
amount: amount,
|
|
|
|
exchangeBaseUrl: req.exchange,
|
|
|
|
});
|
2021-10-14 11:36:43 +02:00
|
|
|
const paytoUri = details.paytoUris[0];
|
|
|
|
const pt = parsePaytoUri(paytoUri);
|
|
|
|
if (!pt) {
|
|
|
|
throw Error("failed to parse payto URI");
|
|
|
|
}
|
|
|
|
const components = pt.targetPath.split("/");
|
|
|
|
const creditorAcct = components[components.length - 1];
|
2021-12-09 10:39:50 +01:00
|
|
|
logger.info(`making testbank transfer to '${creditorAcct}'`);
|
2021-10-14 11:36:43 +02:00
|
|
|
const fbReq = await ws.http.postJson(
|
|
|
|
new URL(`${creditorAcct}/admin/add-incoming`, req.bank).href,
|
|
|
|
{
|
|
|
|
amount: Amounts.stringify(amount),
|
|
|
|
reserve_pub: wres.reservePub,
|
|
|
|
debit_account: "payto://x-taler-bank/localhost/testdebtor",
|
|
|
|
},
|
|
|
|
);
|
|
|
|
const fbResp = await readSuccessResponseJsonOrThrow(fbReq, codecForAny());
|
|
|
|
logger.info(`started fakebank withdrawal: ${j2s(fbResp)}`);
|
|
|
|
return {};
|
|
|
|
}
|
2021-12-01 18:16:40 +01:00
|
|
|
case "exportDb": {
|
|
|
|
const dbDump = await exportDb(ws.db.idbHandle());
|
|
|
|
return dbDump;
|
|
|
|
}
|
2022-01-13 05:33:24 +01:00
|
|
|
case "importDb": {
|
|
|
|
const req = codecForImportDbRequest().decode(payload);
|
|
|
|
await importDb(ws.db.idbHandle(), req.dump);
|
|
|
|
return [];
|
|
|
|
}
|
2022-06-21 12:40:12 +02:00
|
|
|
case "initiatePeerPushPayment": {
|
|
|
|
const req = codecForInitiatePeerPushPaymentRequest().decode(payload);
|
|
|
|
return await initiatePeerToPeerPush(ws, req);
|
|
|
|
}
|
2022-07-12 17:41:14 +02:00
|
|
|
case "checkPeerPushPayment": {
|
|
|
|
const req = codecForCheckPeerPushPaymentRequest().decode(payload);
|
|
|
|
return await checkPeerPushPayment(ws, req);
|
|
|
|
}
|
|
|
|
case "acceptPeerPushPayment": {
|
|
|
|
const req = codecForAcceptPeerPushPaymentRequest().decode(payload);
|
|
|
|
await acceptPeerPushPayment(ws, req);
|
|
|
|
return {};
|
|
|
|
}
|
2020-08-14 09:36:42 +02:00
|
|
|
}
|
2022-03-22 21:16:38 +01:00
|
|
|
throw TalerError.fromDetail(
|
2021-06-15 18:52:43 +02:00
|
|
|
TalerErrorCode.WALLET_CORE_API_OPERATION_UNKNOWN,
|
|
|
|
{
|
|
|
|
operation,
|
|
|
|
},
|
2022-03-22 21:16:38 +01:00
|
|
|
"unknown operation",
|
2021-06-15 18:52:43 +02:00
|
|
|
);
|
|
|
|
}
|
2020-08-14 09:36:42 +02:00
|
|
|
|
2021-06-15 18:52:43 +02:00
|
|
|
/**
|
|
|
|
* Handle a request to the wallet-core API.
|
|
|
|
*/
|
|
|
|
export async function handleCoreApiRequest(
|
|
|
|
ws: InternalWalletState,
|
|
|
|
operation: string,
|
|
|
|
id: string,
|
|
|
|
payload: unknown,
|
|
|
|
): Promise<CoreApiResponse> {
|
|
|
|
try {
|
|
|
|
const result = await dispatchRequestInternal(ws, operation, payload);
|
|
|
|
return {
|
|
|
|
type: "response",
|
|
|
|
operation,
|
|
|
|
id,
|
|
|
|
result,
|
|
|
|
};
|
2021-10-14 11:36:43 +02:00
|
|
|
} catch (e: any) {
|
2022-03-22 21:16:38 +01:00
|
|
|
const err = getErrorDetailFromException(e);
|
2022-03-24 01:10:34 +01:00
|
|
|
logger.info(`finished wallet core request with error: ${j2s(err)}`);
|
2022-03-22 21:16:38 +01:00
|
|
|
return {
|
|
|
|
type: "error",
|
|
|
|
operation,
|
|
|
|
id,
|
|
|
|
error: err,
|
|
|
|
};
|
2020-08-14 09:36:42 +02:00
|
|
|
}
|
2016-10-18 01:16:31 +02:00
|
|
|
}
|
2021-06-17 21:06:45 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Public handle to a running wallet.
|
|
|
|
*/
|
|
|
|
export class Wallet {
|
|
|
|
private ws: InternalWalletState;
|
|
|
|
private _client: WalletCoreApiClient;
|
|
|
|
|
|
|
|
private constructor(
|
|
|
|
db: DbAccess<typeof WalletStoresV1>,
|
|
|
|
http: HttpRequestLibrary,
|
2022-04-11 20:10:16 +02:00
|
|
|
timer: TimerAPI,
|
2021-06-17 21:06:45 +02:00
|
|
|
cryptoWorkerFactory: CryptoWorkerFactory,
|
|
|
|
) {
|
2022-04-11 20:10:16 +02:00
|
|
|
this.ws = new InternalWalletStateImpl(db, http, timer, cryptoWorkerFactory);
|
2021-06-17 21:06:45 +02:00
|
|
|
}
|
|
|
|
|
2022-01-16 21:47:43 +01:00
|
|
|
get client(): WalletCoreApiClient {
|
2021-06-17 21:06:45 +02:00
|
|
|
return this._client;
|
|
|
|
}
|
|
|
|
|
2021-12-08 16:23:00 +01:00
|
|
|
/**
|
|
|
|
* Trust the exchange, do not validate signatures.
|
|
|
|
* Only used to benchmark the exchange.
|
|
|
|
*/
|
2022-01-16 21:47:43 +01:00
|
|
|
setInsecureTrustExchange(): void {
|
2021-12-08 16:23:00 +01:00
|
|
|
this.ws.insecureTrustExchange = true;
|
|
|
|
}
|
|
|
|
|
2022-05-03 17:53:32 +02:00
|
|
|
setBatchWithdrawal(enable: boolean): void {
|
|
|
|
this.ws.batchWithdrawal = enable;
|
|
|
|
}
|
|
|
|
|
2021-06-17 21:06:45 +02:00
|
|
|
static async create(
|
|
|
|
db: DbAccess<typeof WalletStoresV1>,
|
|
|
|
http: HttpRequestLibrary,
|
2022-04-11 20:10:16 +02:00
|
|
|
timer: TimerAPI,
|
2021-06-17 21:06:45 +02:00
|
|
|
cryptoWorkerFactory: CryptoWorkerFactory,
|
|
|
|
): Promise<Wallet> {
|
2022-04-11 20:10:16 +02:00
|
|
|
const w = new Wallet(db, http, timer, cryptoWorkerFactory);
|
2021-06-17 21:06:45 +02:00
|
|
|
w._client = await getClientFromWalletState(w.ws);
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
|
|
|
|
addNotificationListener(f: (n: WalletNotification) => void): void {
|
|
|
|
return this.ws.addNotificationListener(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
stop(): void {
|
|
|
|
this.ws.stop();
|
|
|
|
}
|
|
|
|
|
2022-01-16 21:47:43 +01:00
|
|
|
runPending(forceNow = false): Promise<void> {
|
2021-06-17 21:06:45 +02:00
|
|
|
return runPending(this.ws, forceNow);
|
|
|
|
}
|
|
|
|
|
2022-01-16 21:47:43 +01:00
|
|
|
runTaskLoop(opts?: RetryLoopOpts): Promise<void> {
|
2021-06-22 13:52:28 +02:00
|
|
|
return runTaskLoop(this.ws, opts);
|
2021-06-17 21:06:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
handleCoreApiRequest(
|
|
|
|
operation: string,
|
|
|
|
id: string,
|
|
|
|
payload: unknown,
|
|
|
|
): Promise<CoreApiResponse> {
|
|
|
|
return handleCoreApiRequest(this.ws, operation, id, payload);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal state of the wallet.
|
|
|
|
*
|
|
|
|
* This ties together all the operation implementations.
|
|
|
|
*/
|
|
|
|
class InternalWalletStateImpl implements InternalWalletState {
|
|
|
|
memoProcessReserve: AsyncOpMemoMap<void> = new AsyncOpMemoMap();
|
|
|
|
memoMakePlanchet: AsyncOpMemoMap<void> = new AsyncOpMemoMap();
|
2022-01-13 12:08:31 +01:00
|
|
|
memoGetPending: AsyncOpMemoSingle<PendingOperationsResponse> =
|
|
|
|
new AsyncOpMemoSingle();
|
2021-06-17 21:06:45 +02:00
|
|
|
memoGetBalance: AsyncOpMemoSingle<BalancesResponse> = new AsyncOpMemoSingle();
|
|
|
|
memoProcessRefresh: AsyncOpMemoMap<void> = new AsyncOpMemoMap();
|
|
|
|
memoProcessRecoup: AsyncOpMemoMap<void> = new AsyncOpMemoMap();
|
2022-03-29 13:47:32 +02:00
|
|
|
|
2022-03-23 21:24:23 +01:00
|
|
|
cryptoApi: TalerCryptoInterface;
|
|
|
|
cryptoDispatcher: CryptoDispatcher;
|
2021-06-17 21:06:45 +02:00
|
|
|
|
2021-11-23 23:51:12 +01:00
|
|
|
merchantInfoCache: Record<string, MerchantInfo> = {};
|
|
|
|
|
2022-01-16 21:47:43 +01:00
|
|
|
insecureTrustExchange = false;
|
2021-12-08 16:23:00 +01:00
|
|
|
|
2022-05-03 17:53:32 +02:00
|
|
|
batchWithdrawal = false;
|
|
|
|
|
2022-04-11 20:10:16 +02:00
|
|
|
readonly timerGroup: TimerGroup;
|
2021-06-17 21:06:45 +02:00
|
|
|
latch = new AsyncCondition();
|
|
|
|
stopped = false;
|
|
|
|
|
|
|
|
listeners: NotificationListener[] = [];
|
|
|
|
|
2022-01-16 21:47:43 +01:00
|
|
|
initCalled = false;
|
2021-06-17 21:06:45 +02:00
|
|
|
|
|
|
|
exchangeOps: ExchangeOperations = {
|
|
|
|
getExchangeDetails,
|
|
|
|
getExchangeTrust,
|
|
|
|
updateExchangeFromUrl,
|
|
|
|
};
|
|
|
|
|
2021-06-22 12:18:12 +02:00
|
|
|
recoupOps: RecoupOperations = {
|
2022-01-16 21:47:43 +01:00
|
|
|
createRecoupGroup,
|
|
|
|
processRecoupGroup,
|
2021-06-22 12:18:12 +02:00
|
|
|
};
|
|
|
|
|
2021-11-23 23:51:12 +01:00
|
|
|
merchantOps: MerchantOperations = {
|
2022-01-16 21:47:43 +01:00
|
|
|
getMerchantInfo,
|
2021-11-23 23:51:12 +01:00
|
|
|
};
|
|
|
|
|
2022-01-13 12:08:31 +01:00
|
|
|
// FIXME: Use an LRU cache here.
|
|
|
|
private denomCache: Record<string, DenomInfo> = {};
|
2021-12-13 11:28:15 +01:00
|
|
|
|
2021-06-17 21:06:45 +02:00
|
|
|
/**
|
|
|
|
* Promises that are waiting for a particular resource.
|
|
|
|
*/
|
|
|
|
private resourceWaiters: Record<string, OpenedPromise<void>[]> = {};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Resources that are currently locked.
|
|
|
|
*/
|
|
|
|
private resourceLocks: Set<string> = new Set();
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
// FIXME: Make this a getter and make
|
|
|
|
// the actual value nullable.
|
|
|
|
// Check if we are in a DB migration / garbage collection
|
|
|
|
// and throw an error in that case.
|
|
|
|
public db: DbAccess<typeof WalletStoresV1>,
|
|
|
|
public http: HttpRequestLibrary,
|
2022-04-11 20:10:16 +02:00
|
|
|
public timer: TimerAPI,
|
2021-06-17 21:06:45 +02:00
|
|
|
cryptoWorkerFactory: CryptoWorkerFactory,
|
|
|
|
) {
|
2022-03-23 21:24:23 +01:00
|
|
|
this.cryptoDispatcher = new CryptoDispatcher(cryptoWorkerFactory);
|
|
|
|
this.cryptoApi = this.cryptoDispatcher.cryptoApi;
|
2022-04-19 17:12:43 +02:00
|
|
|
this.timerGroup = new TimerGroup(timer);
|
2021-06-17 21:06:45 +02:00
|
|
|
}
|
|
|
|
|
2022-01-13 12:08:31 +01:00
|
|
|
async getDenomInfo(
|
|
|
|
ws: InternalWalletState,
|
|
|
|
tx: GetReadWriteAccess<{
|
|
|
|
denominations: typeof WalletStoresV1.denominations;
|
|
|
|
}>,
|
|
|
|
exchangeBaseUrl: string,
|
|
|
|
denomPubHash: string,
|
|
|
|
): Promise<DenomInfo | undefined> {
|
|
|
|
const key = `${exchangeBaseUrl}:${denomPubHash}`;
|
|
|
|
const cached = this.denomCache[key];
|
|
|
|
if (cached) {
|
2022-05-14 23:09:33 +02:00
|
|
|
logger.trace("using cached denom");
|
2022-01-13 12:08:31 +01:00
|
|
|
return cached;
|
|
|
|
}
|
2022-05-14 23:09:33 +02:00
|
|
|
logger.trace("looking up denom denom");
|
2022-01-13 22:01:14 +01:00
|
|
|
const d = await tx.denominations.get([exchangeBaseUrl, denomPubHash]);
|
|
|
|
if (d) {
|
|
|
|
this.denomCache[key] = d;
|
|
|
|
}
|
|
|
|
return d;
|
2022-01-13 12:08:31 +01:00
|
|
|
}
|
|
|
|
|
2021-06-17 21:06:45 +02:00
|
|
|
notify(n: WalletNotification): void {
|
|
|
|
logger.trace("Notification", n);
|
|
|
|
for (const l of this.listeners) {
|
|
|
|
const nc = JSON.parse(JSON.stringify(n));
|
|
|
|
setTimeout(() => {
|
|
|
|
l(nc);
|
|
|
|
}, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
addNotificationListener(f: (n: WalletNotification) => void): void {
|
|
|
|
this.listeners.push(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stop ongoing processing.
|
|
|
|
*/
|
|
|
|
stop(): void {
|
|
|
|
this.stopped = true;
|
|
|
|
this.timerGroup.stopCurrentAndFutureTimers();
|
2022-03-23 21:24:23 +01:00
|
|
|
this.cryptoDispatcher.stop();
|
2021-06-17 21:06:45 +02:00
|
|
|
}
|
|
|
|
|
2021-06-22 12:18:12 +02:00
|
|
|
async runUntilDone(
|
|
|
|
req: {
|
|
|
|
maxRetries?: number;
|
|
|
|
} = {},
|
|
|
|
): Promise<void> {
|
2021-06-22 13:52:28 +02:00
|
|
|
await runTaskLoop(this, { ...req, stopWhenDone: true });
|
2021-06-22 12:18:12 +02:00
|
|
|
}
|
|
|
|
|
2021-06-17 21:06:45 +02:00
|
|
|
/**
|
|
|
|
* Run an async function after acquiring a list of locks, identified
|
|
|
|
* by string tokens.
|
|
|
|
*/
|
2022-03-10 16:30:24 +01:00
|
|
|
async runSequentialized<T>(
|
|
|
|
tokens: string[],
|
|
|
|
f: () => Promise<T>,
|
|
|
|
): Promise<T> {
|
2021-06-17 21:06:45 +02:00
|
|
|
// Make sure locks are always acquired in the same order
|
|
|
|
tokens = [...tokens].sort();
|
|
|
|
|
|
|
|
for (const token of tokens) {
|
|
|
|
if (this.resourceLocks.has(token)) {
|
|
|
|
const p = openPromise<void>();
|
|
|
|
let waitList = this.resourceWaiters[token];
|
|
|
|
if (!waitList) {
|
|
|
|
waitList = this.resourceWaiters[token] = [];
|
|
|
|
}
|
|
|
|
waitList.push(p);
|
|
|
|
await p.promise;
|
|
|
|
}
|
|
|
|
this.resourceLocks.add(token);
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
logger.trace(`begin exclusive execution on ${JSON.stringify(tokens)}`);
|
|
|
|
const result = await f();
|
|
|
|
logger.trace(`end exclusive execution on ${JSON.stringify(tokens)}`);
|
|
|
|
return result;
|
|
|
|
} finally {
|
|
|
|
for (const token of tokens) {
|
|
|
|
this.resourceLocks.delete(token);
|
|
|
|
let waiter = (this.resourceWaiters[token] ?? []).shift();
|
|
|
|
if (waiter) {
|
|
|
|
waiter.resolve();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|