wallet-core/src/wallet.ts

731 lines
21 KiB
TypeScript
Raw Normal View History

2015-12-25 22:42:14 +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
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.
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
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.
*/
2019-12-09 13:29:11 +01:00
import { CryptoWorkerFactory } from "./crypto/workers/cryptoApi";
import { HttpRequestLibrary } from "./util/http";
2017-05-28 01:10:54 +02:00
import {
2019-12-12 22:39:45 +01:00
Database
} from "./util/query";
import { AmountJson } from "./util/amounts";
import * as Amounts from "./util/amounts";
import {
acceptWithdrawal,
getWithdrawDetailsForUri,
2019-12-09 19:59:08 +01:00
getExchangeWithdrawalInfo,
} from "./operations/withdraw";
import {
abortFailedPayment,
preparePay,
confirmPay,
2019-12-03 00:52:15 +01:00
processDownloadProposal,
2019-12-03 14:40:05 +01:00
applyRefund,
getFullRefundFees,
processPurchasePay,
processPurchaseQueryRefund,
processPurchaseApplyRefund,
} from "./operations/pay";
2016-05-24 01:53:56 +02:00
import {
2017-05-28 01:10:54 +02:00
CoinRecord,
CoinStatus,
CurrencyRecord,
DenominationRecord,
2016-11-15 15:07:17 +01:00
ExchangeRecord,
2019-11-30 00:36:20 +01:00
ProposalRecord,
PurchaseRecord,
ReserveRecord,
Stores,
2019-11-21 23:09:43 +01:00
ReserveRecordStatus,
} from "./types/dbTypes";
import { MerchantRefundPermission } from "./types/talerTypes";
import {
2018-09-20 02:56:13 +02:00
BenchmarkResult,
ConfirmPayResult,
ConfirmReserveRequest,
CreateReserveRequest,
CreateReserveResponse,
ReturnCoinsRequest,
SenderWireInfos,
2017-11-30 04:07:36 +01:00
TipStatus,
WalletBalance,
PreparePayResult,
WithdrawDetails,
AcceptWithdrawalResponse,
2019-08-31 13:27:12 +02:00
PurchaseDetails,
2019-12-09 19:59:08 +01:00
ExchangeWithdrawDetails,
RefreshReason,
} from "./types/walletTypes";
import { Logger } from "./util/logging";
2015-12-13 23:47:30 +01:00
import { assertUnreachable } from "./util/assertUnreachable";
import {
updateExchangeFromUrl,
getExchangeTrust,
getExchangePaytoUri,
2019-12-09 19:59:08 +01:00
acceptExchangeTermsOfService,
} from "./operations/exchanges";
import { processReserve } from "./operations/reserves";
import { InternalWalletState } from "./operations/state";
import { createReserve, confirmReserve } from "./operations/reserves";
import { processRefreshGroup, createRefreshGroup } from "./operations/refresh";
import { processWithdrawSession } from "./operations/withdraw";
import { getHistory } from "./operations/history";
import { getPendingOperations } from "./operations/pending";
import { getBalances } from "./operations/balance";
import { acceptTip, getTipStatus, processTip } from "./operations/tip";
import { returnCoins } from "./operations/return";
import { payback } from "./operations/payback";
2019-12-02 17:35:47 +01:00
import { TimerGroup } from "./util/timer";
import { AsyncCondition } from "./util/promiseUtils";
2019-12-05 19:38:19 +01:00
import { AsyncOpMemoSingle } from "./util/asyncMemo";
import { PendingOperationInfo, PendingOperationsResponse, PendingOperationType } from "./types/pending";
import { WalletNotification, NotificationType } from "./types/notifications";
import { HistoryQuery, HistoryEvent } from "./types/history";
/**
* Wallet protocol version spoken with the exchange
* and merchant.
*
* Uses libtool's current:revision:age versioning.
*/
2019-05-08 07:01:17 +02:00
export const WALLET_PROTOCOL_VERSION = "3:0:0";
2017-06-04 18:46:32 +02:00
2019-12-03 01:33:25 +01:00
export const WALLET_CACHE_BREAKER_CLIENT_VERSION = "3";
2019-08-31 22:07:16 +02:00
const builtinCurrencies: CurrencyRecord[] = [
{
auditors: [
{
2017-06-04 19:41:43 +02:00
auditorPub: "BW9DC48PHQY4NH011SHHX36DZZ3Q22Y6X7FZ1VD1CMZ2PTFZ6PN0",
baseUrl: "https://auditor.demo.taler.net/",
2019-06-26 15:30:32 +02:00
expirationStamp: new Date(2027, 1).getTime(),
},
2017-04-12 17:47:14 +02:00
],
exchanges: [],
2017-05-28 01:10:54 +02:00
fractionalDigits: 2,
name: "KUDOS",
},
];
2019-11-21 23:09:43 +01:00
const logger = new Logger("wallet.ts");
/**
* The platform-independent wallet implementation.
*/
export class Wallet {
private ws: InternalWalletState;
2019-12-02 17:35:47 +01:00
private timerGroup: TimerGroup = new TimerGroup();
private latch = new AsyncCondition();
private stopped: boolean = false;
2019-12-05 19:38:19 +01:00
private memoRunRetryLoop = new AsyncOpMemoSingle<void>();
2019-12-12 22:39:45 +01:00
get db(): Database {
return this.ws.db;
}
2019-06-26 15:30:32 +02:00
constructor(
2019-12-12 22:39:45 +01:00
db: Database,
2019-06-26 15:30:32 +02:00
http: HttpRequestLibrary,
2019-08-15 19:10:23 +02:00
cryptoWorkerFactory: CryptoWorkerFactory,
2019-06-26 15:30:32 +02:00
) {
2019-12-05 19:38:19 +01:00
this.ws = new InternalWalletState(db, http, cryptoWorkerFactory);
}
getExchangePaytoUri(exchangeBaseUrl: string, supportedTargetTypes: string[]) {
return getExchangePaytoUri(this.ws, exchangeBaseUrl, supportedTargetTypes);
}
2019-12-09 19:59:08 +01:00
getWithdrawDetailsForAmount(
exchangeBaseUrl: string,
amount: AmountJson,
): Promise<ExchangeWithdrawDetails> {
return getExchangeWithdrawalInfo(this.ws, exchangeBaseUrl, amount);
}
2017-06-05 02:00:03 +02:00
2019-12-05 19:38:19 +01:00
addNotificationListener(f: (n: WalletNotification) => void): void {
this.ws.addNotificationListener(f);
}
2019-11-21 23:09:43 +01:00
/**
2019-11-30 00:36:20 +01:00
* Execute one operation based on the pending operation info record.
2019-11-21 23:09:43 +01:00
*/
2019-11-30 00:36:20 +01:00
async processOnePendingOperation(
pending: PendingOperationInfo,
2019-12-03 14:40:05 +01:00
forceNow: boolean = false,
2019-11-30 00:36:20 +01:00
): Promise<void> {
2019-12-05 22:17:01 +01:00
console.log("running pending", pending);
2019-11-30 00:36:20 +01:00
switch (pending.type) {
case PendingOperationType.Bug:
2019-12-05 19:38:19 +01:00
// Nothing to do, will just be displayed to the user
2019-11-30 00:36:20 +01:00
return;
case PendingOperationType.ExchangeUpdate:
await updateExchangeFromUrl(this.ws, pending.exchangeBaseUrl, forceNow);
2019-11-30 00:36:20 +01:00
break;
case PendingOperationType.Refresh:
await processRefreshGroup(
2019-12-09 19:59:08 +01:00
this.ws,
pending.refreshGroupId,
2019-12-09 19:59:08 +01:00
forceNow,
);
2019-11-30 00:36:20 +01:00
break;
case PendingOperationType.Reserve:
2019-12-05 19:38:19 +01:00
await processReserve(this.ws, pending.reservePub, forceNow);
2019-11-30 00:36:20 +01:00
break;
case PendingOperationType.Withdraw:
2019-12-09 19:59:08 +01:00
await processWithdrawSession(
this.ws,
pending.withdrawSessionId,
forceNow,
);
2019-11-30 00:36:20 +01:00
break;
case PendingOperationType.ProposalChoice:
2019-11-30 00:36:20 +01:00
// Nothing to do, user needs to accept/reject
break;
case PendingOperationType.ProposalDownload:
await processDownloadProposal(this.ws, pending.proposalId, forceNow);
2019-12-03 00:52:15 +01:00
break;
case PendingOperationType.TipPickup:
await processTip(this.ws, pending.tipId, forceNow);
2019-12-02 17:35:47 +01:00
break;
case PendingOperationType.Pay:
await processPurchasePay(this.ws, pending.proposalId, forceNow);
break;
case PendingOperationType.RefundQuery:
await processPurchaseQueryRefund(this.ws, pending.proposalId, forceNow);
break;
case PendingOperationType.RefundApply:
await processPurchaseApplyRefund(this.ws, pending.proposalId, forceNow);
2019-12-03 00:52:15 +01:00
break;
2019-11-30 00:36:20 +01:00
default:
assertUnreachable(pending);
2019-11-21 23:09:43 +01:00
}
2019-11-30 00:36:20 +01:00
}
2019-11-21 23:09:43 +01:00
2019-11-30 00:36:20 +01:00
/**
* Process pending operations.
*/
2019-12-03 14:40:05 +01:00
public async runPending(forceNow: boolean = false): Promise<void> {
2019-12-05 19:38:19 +01:00
const onlyDue = !forceNow;
const pendingOpsResponse = await this.getPendingOperations(onlyDue);
2019-11-30 00:36:20 +01:00
for (const p of pendingOpsResponse.pendingOperations) {
try {
2019-12-03 14:40:05 +01:00
await this.processOnePendingOperation(p, forceNow);
2019-11-30 00:36:20 +01:00
} catch (e) {
console.error(e);
}
2019-11-21 23:09:43 +01:00
}
}
/**
2019-12-05 19:38:19 +01:00
* Run the wallet until there are no more pending operations that give
* liveness left. The wallet will be in a stopped state when this function
* returns without resolving to an exception.
*/
2019-12-05 19:38:19 +01:00
public async runUntilDone(): Promise<void> {
const p = new Promise((resolve, reject) => {
// Run this asynchronously
this.addNotificationListener(n => {
if (
n.type === NotificationType.WaitingForRetry &&
n.numGivingLiveness == 0
) {
logger.trace("no liveness-giving operations left, stopping");
this.stop();
2019-12-02 17:35:47 +01:00
}
2019-12-05 19:38:19 +01:00
});
this.runRetryLoop().catch(e => {
console.log("exception in wallet retry loop");
reject(e);
});
});
await p;
2019-11-21 23:09:43 +01:00
}
/**
2019-12-05 19:38:19 +01:00
* Process pending operations and wait for scheduled operations in
* a loop until the wallet is stopped explicitly.
2019-11-21 23:09:43 +01:00
*/
2019-12-05 19:38:19 +01:00
public async runRetryLoop(): Promise<void> {
// Make sure we only run one main loop at a time.
return this.memoRunRetryLoop.memo(async () => {
try {
await this.runRetryLoopImpl();
} catch (e) {
console.error("error during retry loop execution", e);
throw e;
2019-11-30 00:36:20 +01:00
}
2019-12-05 19:38:19 +01:00
});
}
private async runRetryLoopImpl(): Promise<void> {
while (!this.stopped) {
console.log("running wallet retry loop iteration");
let pending = await this.getPendingOperations(true);
if (pending.pendingOperations.length === 0) {
const allPending = await this.getPendingOperations(false);
let numPending = 0;
let numGivingLiveness = 0;
for (const p of allPending.pendingOperations) {
numPending++;
if (p.givesLifeness) {
numGivingLiveness++;
}
}
let dt;
2019-12-05 19:38:19 +01:00
if (
allPending.pendingOperations.length === 0 ||
allPending.nextRetryDelay.d_ms === Number.MAX_SAFE_INTEGER
) {
// Wait for 5 seconds
dt = 5000;
2019-12-05 19:38:19 +01:00
} else {
dt = Math.min(5000, allPending.nextRetryDelay.d_ms);
2019-12-05 19:38:19 +01:00
}
const timeout = this.timerGroup.resolveAfter(dt);
2019-12-05 19:38:19 +01:00
this.ws.notify({
type: NotificationType.WaitingForRetry,
numGivingLiveness,
numPending,
});
await Promise.race([timeout, this.latch.wait()]);
console.log("timeout done");
} else {
logger.trace("running pending operations that are due");
// FIXME: maybe be a bit smarter about executing these
// operations in parallel?
2019-12-05 19:38:19 +01:00
for (const p of pending.pendingOperations) {
try {
console.log("running", p);
await this.processOnePendingOperation(p);
} catch (e) {
console.error(e);
}
this.ws.notify({ type: NotificationType.Wildcard });
2019-12-05 19:38:19 +01:00
}
2019-11-21 23:09:43 +01:00
}
}
2019-12-05 19:38:19 +01:00
logger.trace("exiting wallet retry loop");
}
/**
* Insert the hard-coded defaults for exchanges, coins and
* auditors into the database, unless these defaults have
* already been applied.
*/
async fillDefaults() {
2019-12-12 22:39:45 +01:00
await this.db.runWithWriteTransaction(
2019-11-20 20:02:48 +01:00
[Stores.config, Stores.currencies],
async tx => {
let applied = false;
2019-11-20 20:02:48 +01:00
await tx.iter(Stores.config).forEach(x => {
if (x.key == "currencyDefaultsApplied" && x.value == true) {
applied = true;
}
});
if (!applied) {
for (let c of builtinCurrencies) {
await tx.put(Stores.currencies, c);
}
}
2019-11-20 20:02:48 +01:00
},
);
}
2019-09-06 09:48:00 +02:00
/**
* Check if a payment for the given taler://pay/ URI is possible.
*
2019-09-06 09:48:00 +02:00
* If the payment is possible, the signature are already generated but not
* yet send to the merchant.
*/
async preparePay(talerPayUri: string): Promise<PreparePayResult> {
return preparePay(this.ws, talerPayUri);
}
2016-02-10 02:03:31 +01:00
/**
* Add a contract to the wallet and sign coins, and send them.
2016-02-10 02:03:31 +01:00
*/
2019-06-26 15:30:32 +02:00
async confirmPay(
2019-11-30 00:36:20 +01:00
proposalId: string,
sessionIdOverride: string | undefined,
2019-06-26 15:30:32 +02:00
): Promise<ConfirmPayResult> {
2019-12-02 17:35:47 +01:00
try {
return await confirmPay(this.ws, proposalId, sessionIdOverride);
} finally {
this.latch.trigger();
}
}
2019-11-30 00:36:20 +01:00
2016-02-09 21:56:06 +01:00
/**
* First fetch information requred to withdraw from the reserve,
* then deplete the reserve, withdrawing coins until it is empty.
2019-11-21 23:09:43 +01:00
*
* The returned promise resolves once the reserve is set to the
* state DORMANT.
2016-02-09 21:56:06 +01:00
*/
async processReserve(reservePub: string): Promise<void> {
2019-12-02 17:35:47 +01:00
try {
return await processReserve(this.ws, reservePub);
} finally {
this.latch.trigger();
}
}
2016-02-09 21:56:06 +01:00
/**
* Create a reserve, but do not flag it as confirmed yet.
*
* Adds the corresponding exchange as a trusted exchange if it is neither
* audited nor trusted already.
2016-02-09 21:56:06 +01:00
*/
2019-06-26 15:30:32 +02:00
async createReserve(
req: CreateReserveRequest,
): Promise<CreateReserveResponse> {
2019-12-02 17:35:47 +01:00
try {
return createReserve(this.ws, req);
} finally {
this.latch.trigger();
}
2016-02-09 21:56:06 +01:00
}
/**
* Mark an existing reserve as confirmed. The wallet will start trying
* to withdraw from that reserve. This may not immediately succeed,
2016-03-01 19:39:17 +01:00
* since the exchange might not know about the reserve yet, even though the
2016-02-09 21:56:06 +01:00
* bank confirmed its creation.
*
* A confirmed reserve should be shown to the user in the UI, while
* an unconfirmed reserve should be hidden.
*/
2016-09-28 18:54:48 +02:00
async confirmReserve(req: ConfirmReserveRequest): Promise<void> {
2019-12-02 17:35:47 +01:00
try {
return confirmReserve(this.ws, req);
} finally {
this.latch.trigger();
}
}
2016-09-28 18:54:48 +02:00
/**
* Check if and how an exchange is trusted and/or audited.
*/
async getExchangeTrust(
exchangeInfo: ExchangeRecord,
): Promise<{ isTrusted: boolean; isAudited: boolean }> {
return getExchangeTrust(this.ws, exchangeInfo);
2019-11-30 00:36:20 +01:00
}
async getWithdrawDetailsForUri(
talerWithdrawUri: string,
maybeSelectedExchange?: string,
): Promise<WithdrawDetails> {
return getWithdrawDetailsForUri(
this.ws,
talerWithdrawUri,
maybeSelectedExchange,
2019-11-30 00:36:20 +01:00
);
}
2016-02-11 18:17:02 +01:00
/**
* Update or add exchange DB entry by fetching the /keys and /wire information.
* Optionally link the reserve entry to the new or existing
* exchange entry in then DB.
2016-02-11 18:17:02 +01:00
*/
async updateExchangeFromUrl(
baseUrl: string,
force: boolean = false,
): Promise<ExchangeRecord> {
try {
return updateExchangeFromUrl(this.ws, baseUrl, force);
} finally {
this.latch.trigger();
}
}
/**
* Get detailed balance information, sliced by exchange and by currency.
*/
async getBalances(): Promise<WalletBalance> {
2019-12-05 19:38:19 +01:00
return this.ws.memoGetBalance.memo(() => getBalances(this.ws));
}
async refresh(oldCoinPub: string): Promise<void> {
try {
const refreshGroupId = await this.db.runWithWriteTransaction([Stores.refreshGroups], async (tx) => {
return await createRefreshGroup(tx, [{ coinPub: oldCoinPub }], RefreshReason.Manual);
});
await processRefreshGroup(this.ws, refreshGroupId.refreshGroupId);
} catch (e) {
this.latch.trigger();
}
}
2019-11-20 20:02:48 +01:00
async findExchange(
exchangeBaseUrl: string,
): Promise<ExchangeRecord | undefined> {
2019-12-12 22:39:45 +01:00
return await this.db.get(Stores.exchanges, exchangeBaseUrl);
}
2016-02-11 18:17:02 +01:00
/**
* Retrive the full event history for this wallet.
*/
async getHistory(
historyQuery?: HistoryQuery,
2019-11-21 23:09:43 +01:00
): Promise<{ history: HistoryEvent[] }> {
return getHistory(this.ws, historyQuery);
2016-10-12 02:55:53 +02:00
}
2019-12-05 19:38:19 +01:00
async getPendingOperations(
onlyDue: boolean = false,
): Promise<PendingOperationsResponse> {
return this.ws.memoGetPending.memo(() =>
getPendingOperations(this.ws, onlyDue),
);
2019-11-19 16:16:12 +01:00
}
2019-12-09 19:59:08 +01:00
async acceptExchangeTermsOfService(
exchangeBaseUrl: string,
etag: string | undefined,
) {
return acceptExchangeTermsOfService(this.ws, exchangeBaseUrl, etag);
}
async getDenoms(exchangeUrl: string): Promise<DenominationRecord[]> {
2019-12-12 22:39:45 +01:00
const denoms = await this.db.iterIndex(
2019-11-20 20:02:48 +01:00
Stores.denominations.exchangeBaseUrlIndex,
exchangeUrl,
).toArray();
return denoms;
}
2016-11-13 10:17:39 +01:00
2019-11-30 00:36:20 +01:00
async getProposal(proposalId: string): Promise<ProposalRecord | undefined> {
2019-12-12 22:39:45 +01:00
const proposal = await this.db.get(Stores.proposals, proposalId);
return proposal;
2016-11-13 10:17:39 +01:00
}
2016-11-15 15:07:17 +01:00
async getExchanges(): Promise<ExchangeRecord[]> {
2019-12-12 22:39:45 +01:00
return await this.db.iter(Stores.exchanges).toArray();
}
2016-02-23 14:07:53 +01:00
2017-03-24 17:54:22 +01:00
async getCurrencies(): Promise<CurrencyRecord[]> {
2019-12-12 22:39:45 +01:00
return await this.db.iter(Stores.currencies).toArray();
2017-03-24 17:54:22 +01:00
}
async updateCurrency(currencyRecord: CurrencyRecord): Promise<void> {
logger.trace("updating currency to", currencyRecord);
2019-12-12 22:39:45 +01:00
await this.db.put(Stores.currencies, currencyRecord);
2017-03-24 17:54:22 +01:00
}
2016-10-13 02:23:24 +02:00
async getReserves(exchangeBaseUrl: string): Promise<ReserveRecord[]> {
2019-12-12 22:39:45 +01:00
return await this.db.iter(Stores.reserves).filter(
2019-11-21 23:09:43 +01:00
r => r.exchangeBaseUrl === exchangeBaseUrl,
2019-11-20 20:02:48 +01:00
);
2016-10-12 02:55:53 +02:00
}
2019-11-21 23:09:43 +01:00
async getCoinsForExchange(exchangeBaseUrl: string): Promise<CoinRecord[]> {
2019-12-12 22:39:45 +01:00
return await this.db.iter(Stores.coins).filter(
2019-11-20 20:02:48 +01:00
c => c.exchangeBaseUrl === exchangeBaseUrl,
);
2016-10-12 02:55:53 +02:00
}
2019-11-21 23:09:43 +01:00
async getCoins(): Promise<CoinRecord[]> {
2019-12-12 22:39:45 +01:00
return await this.db.iter(Stores.coins).toArray();
2019-11-21 23:09:43 +01:00
}
async payback(coinPub: string): Promise<void> {
return payback(this.ws, coinPub);
}
async getPaybackReserves(): Promise<ReserveRecord[]> {
2019-12-12 22:39:45 +01:00
return await this.db.iter(Stores.reserves).filter(
2019-11-20 20:02:48 +01:00
r => r.hasPayback,
);
}
2017-06-05 02:00:03 +02:00
/**
* Stop ongoing processing.
*/
stop() {
2019-12-02 17:35:47 +01:00
this.stopped = true;
this.timerGroup.stopCurrentAndFutureTimers();
2019-12-05 19:38:19 +01:00
this.ws.cryptoApi.stop();
2017-06-05 02:00:03 +02:00
}
async getSenderWireInfos(): Promise<SenderWireInfos> {
const m: { [url: string]: Set<string> } = {};
2019-12-12 22:39:45 +01:00
await this.db.iter(Stores.exchanges).forEach(x => {
const wi = x.wireInfo;
if (!wi) {
return;
}
const s = (m[x.baseUrl] = m[x.baseUrl] || new Set());
Object.keys(wi.feesForType).map(k => s.add(k));
});
const exchangeWireTypes: { [url: string]: string[] } = {};
2019-06-26 15:30:32 +02:00
Object.keys(m).map(e => {
exchangeWireTypes[e] = Array.from(m[e]);
});
2019-07-21 23:50:10 +02:00
const senderWiresSet: Set<string> = new Set();
2019-12-12 22:39:45 +01:00
await this.db.iter(Stores.senderWires).forEach(x => {
senderWiresSet.add(x.paytoUri);
});
2019-07-21 23:50:10 +02:00
const senderWires: string[] = Array.from(senderWiresSet);
return {
exchangeWireTypes,
senderWires,
};
}
/**
* Trigger paying coins back into the user's account.
*/
async returnCoins(req: ReturnCoinsRequest): Promise<void> {
return returnCoins(this.ws, req);
}
/**
* Accept a refund, return the contract hash for the contract
* that was involved in the refund.
*/
2019-08-31 11:49:36 +02:00
async applyRefund(talerRefundUri: string): Promise<string> {
return applyRefund(this.ws, talerRefundUri);
2017-08-27 03:56:19 +02:00
}
2019-06-26 15:30:32 +02:00
async getPurchase(
contractTermsHash: string,
): Promise<PurchaseRecord | undefined> {
2019-12-12 22:39:45 +01:00
return this.db.get(Stores.purchases, contractTermsHash);
2017-08-27 03:56:19 +02:00
}
2019-06-26 15:30:32 +02:00
async getFullRefundFees(
refundPermissions: MerchantRefundPermission[],
): Promise<AmountJson> {
return getFullRefundFees(this.ws, refundPermissions);
}
2017-11-30 04:07:36 +01:00
2019-11-30 00:36:20 +01:00
async acceptTip(talerTipUri: string): Promise<void> {
try {
return acceptTip(this.ws, talerTipUri);
} catch (e) {
this.latch.trigger();
}
2017-11-30 04:07:36 +01:00
}
2019-08-30 17:27:59 +02:00
async getTipStatus(talerTipUri: string): Promise<TipStatus> {
return getTipStatus(this.ws, talerTipUri);
2017-11-30 04:07:36 +01:00
}
async abortFailedPayment(contractTermsHash: string): Promise<void> {
try {
return abortFailedPayment(this.ws, contractTermsHash);
} finally {
this.latch.trigger();
}
}
2019-12-09 19:59:08 +01:00
/**
* Inform the wallet that the status of a reserve has changed (e.g. due to a
* confirmation from the bank.).
*/
2019-11-30 00:36:20 +01:00
public async handleNotifyReserve() {
2019-12-12 22:39:45 +01:00
const reserves = await this.db.iter(Stores.reserves).toArray();
2019-11-30 00:36:20 +01:00
for (const r of reserves) {
if (r.reserveStatus === ReserveRecordStatus.WAIT_CONFIRM_BANK) {
try {
this.processReserve(r.reservePub);
2019-11-30 00:36:20 +01:00
} catch (e) {
console.error(e);
}
}
}
}
/**
* Remove unreferenced / expired data from the wallet's database
* based on the current system time.
*/
async collectGarbage() {
// FIXME(#5845)
// We currently do not garbage-collect the wallet database. This might change
// after the feature has been properly re-designed, and we have come up with a
// strategy to test it.
}
async acceptWithdrawal(
2019-08-28 02:49:27 +02:00
talerWithdrawUri: string,
selectedExchange: string,
): Promise<AcceptWithdrawalResponse> {
try {
return acceptWithdrawal(this.ws, talerWithdrawUri, selectedExchange);
} finally {
this.latch.trigger();
}
2019-08-28 02:49:27 +02:00
}
2019-08-31 13:27:12 +02:00
async getPurchaseDetails(hc: string): Promise<PurchaseDetails> {
2019-12-12 22:39:45 +01:00
const purchase = await this.db.get(Stores.purchases, hc);
2019-08-31 13:27:12 +02:00
if (!purchase) {
throw Error("unknown purchase");
}
const refundsDoneAmounts = Object.values(purchase.refundsDone).map(x =>
Amounts.parseOrThrow(x.refund_amount),
);
2019-11-20 20:02:48 +01:00
const refundsPendingAmounts = Object.values(
purchase.refundsPending,
).map(x => Amounts.parseOrThrow(x.refund_amount));
2019-08-31 13:27:12 +02:00
const totalRefundAmount = Amounts.sum([
...refundsDoneAmounts,
...refundsPendingAmounts,
]).amount;
const refundsDoneFees = Object.values(purchase.refundsDone).map(x =>
Amounts.parseOrThrow(x.refund_amount),
);
const refundsPendingFees = Object.values(purchase.refundsPending).map(x =>
Amounts.parseOrThrow(x.refund_amount),
2019-08-31 13:27:12 +02:00
);
const totalRefundFees = Amounts.sum([
...refundsDoneFees,
...refundsPendingFees,
]).amount;
const totalFees = totalRefundFees;
return {
contractTerms: purchase.contractTerms,
hasRefund: purchase.lastRefundStatusTimestamp !== undefined,
2019-08-31 13:27:12 +02:00
totalRefundAmount: totalRefundAmount,
totalRefundAndRefreshFees: totalFees,
};
}
2018-09-20 02:56:13 +02:00
benchmarkCrypto(repetitions: number): Promise<BenchmarkResult> {
2019-12-05 19:38:19 +01:00
return this.ws.cryptoApi.benchmark(repetitions);
2018-09-20 02:56:13 +02:00
}
2016-10-18 01:16:31 +02:00
}