From a6d78f12df0bf42838f424e889f376ca19bfd96c Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 20 Feb 2023 03:56:43 +0100 Subject: -deletion --- .../taler-wallet-core/src/operations/common.ts | 2 + .../src/operations/transactions.ts | 69 ++++++++++++++++++++-- 2 files changed, 66 insertions(+), 5 deletions(-) diff --git a/packages/taler-wallet-core/src/operations/common.ts b/packages/taler-wallet-core/src/operations/common.ts index 2db5cd7b4..35e6455bc 100644 --- a/packages/taler-wallet-core/src/operations/common.ts +++ b/packages/taler-wallet-core/src/operations/common.ts @@ -338,6 +338,8 @@ export enum TombstoneTag { DeleteRefund = "delete-refund", DeletePeerPullDebit = "delete-peer-pull-debit", DeletePeerPushDebit = "delete-peer-push-debit", + DeletePeerPullCredit = "delete-peer-pull-credit", + DeletePeerPushCredit = "delete-peer-push-credit", } /** diff --git a/packages/taler-wallet-core/src/operations/transactions.ts b/packages/taler-wallet-core/src/operations/transactions.ts index faac808b1..9ee1c1e74 100644 --- a/packages/taler-wallet-core/src/operations/transactions.ts +++ b/packages/taler-wallet-core/src/operations/transactions.ts @@ -1413,11 +1413,70 @@ export async function deleteTransaction( ): Promise { const { type, args: rest } = parseId("txn", transactionId); - if ( - type === TransactionType.Withdrawal || - type === TransactionType.PeerPullCredit || - type === TransactionType.PeerPushCredit - ) { + if (type === TransactionType.PeerPushCredit) { + const peerPushPaymentIncomingId = rest[0]; + await ws.db + .mktx((x) => [ + x.withdrawalGroups, + x.peerPushPaymentIncoming, + x.tombstones, + ]) + .runReadWrite(async (tx) => { + const pushInc = await tx.peerPushPaymentIncoming.get( + peerPushPaymentIncomingId, + ); + if (!pushInc) { + return; + } + if (pushInc.withdrawalGroupId) { + const withdrawalGroupId = pushInc.withdrawalGroupId; + const withdrawalGroupRecord = await tx.withdrawalGroups.get( + withdrawalGroupId, + ); + if (withdrawalGroupRecord) { + await tx.withdrawalGroups.delete(withdrawalGroupId); + await tx.tombstones.put({ + id: TombstoneTag.DeleteWithdrawalGroup + ":" + withdrawalGroupId, + }); + } + } + await tx.peerPushPaymentIncoming.delete(peerPushPaymentIncomingId); + await tx.tombstones.put({ + id: + TombstoneTag.DeletePeerPushCredit + ":" + peerPushPaymentIncomingId, + }); + }); + } else if (type === TransactionType.PeerPullCredit) { + const pursePub = rest[0]; + await ws.db + .mktx((x) => [ + x.withdrawalGroups, + x.peerPullPaymentInitiations, + x.tombstones, + ]) + .runReadWrite(async (tx) => { + const pullIni = await tx.peerPullPaymentInitiations.get(pursePub); + if (!pullIni) { + return; + } + if (pullIni.withdrawalGroupId) { + const withdrawalGroupId = pullIni.withdrawalGroupId; + const withdrawalGroupRecord = await tx.withdrawalGroups.get( + withdrawalGroupId, + ); + if (withdrawalGroupRecord) { + await tx.withdrawalGroups.delete(withdrawalGroupId); + await tx.tombstones.put({ + id: TombstoneTag.DeleteWithdrawalGroup + ":" + withdrawalGroupId, + }); + } + } + await tx.peerPullPaymentInitiations.delete(pursePub); + await tx.tombstones.put({ + id: TombstoneTag.DeletePeerPullCredit + ":" + pursePub, + }); + }); + } else if (type === TransactionType.Withdrawal) { const withdrawalGroupId = rest[0]; await ws.db .mktx((x) => [x.withdrawalGroups, x.tombstones]) -- cgit v1.2.3