|
@@ -1,7 +1,14 @@
|
|
|
use crate::{
|
|
|
- amount::AmountCents, broadcaster::Broadcaster, config::Config, status::StatusManager,
|
|
|
- storage::Storage, transaction::Type, worker::WorkerManager, AccountId, Amount, Error, Filter,
|
|
|
- PaymentFrom, PaymentId, RevId, Status, Tag, Transaction, TxId,
|
|
|
+ amount::AmountCents,
|
|
|
+ broadcaster::Broadcaster,
|
|
|
+ config::Config,
|
|
|
+ status::{InternalStatus, StatusManager},
|
|
|
+ storage::{Batch, ReceivedPaymentStatus, Storage},
|
|
|
+ transaction::Error as TxError,
|
|
|
+ transaction::Type,
|
|
|
+ worker::WorkerManager,
|
|
|
+ AccountId, Amount, Error, Filter, PaymentFrom, PaymentId, RevId, Status, Tag, Transaction,
|
|
|
+ TxId,
|
|
|
};
|
|
|
use std::{cmp::Ordering, collections::HashMap, sync::Arc};
|
|
|
use tokio::sync::mpsc::Receiver;
|
|
@@ -174,11 +181,138 @@ where
|
|
|
Ok((exchange_tx, payments))
|
|
|
}
|
|
|
|
|
|
- /// TODO: Move the whole logic of persisting the transaction and the revision into this layer,
|
|
|
- /// instead of having them at the transaction layer
|
|
|
- async fn persist(&self, mut transaction: Transaction) -> Result<Transaction, Error> {
|
|
|
- transaction.persist(&self.config).await?;
|
|
|
+ #[inline]
|
|
|
+ /// Persist a new base transaction
|
|
|
+ ///
|
|
|
+ /// This operation should only happen once, because if it is executed multiple times the storage
|
|
|
+ /// layer should fail. Base transactions are not allowed to be ammened, only revisions.
|
|
|
+ async fn store_base_transaction(
|
|
|
+ transaction: &Transaction,
|
|
|
+ batch: &mut S::Batch<'_>,
|
|
|
+ ) -> Result<(), Error> {
|
|
|
+ let spends = transaction
|
|
|
+ .spends
|
|
|
+ .iter()
|
|
|
+ .map(|x| x.id.clone())
|
|
|
+ .collect::<Vec<_>>();
|
|
|
+ batch
|
|
|
+ .spend_payments(
|
|
|
+ &transaction.revision.transaction_id,
|
|
|
+ spends,
|
|
|
+ ReceivedPaymentStatus::Locked,
|
|
|
+ )
|
|
|
+ .await?;
|
|
|
+ batch
|
|
|
+ .create_payments(
|
|
|
+ &transaction.revision.transaction_id,
|
|
|
+ &transaction.creates,
|
|
|
+ ReceivedPaymentStatus::Locked,
|
|
|
+ )
|
|
|
+ .await?;
|
|
|
+
|
|
|
+ for account in transaction.accounts() {
|
|
|
+ batch
|
|
|
+ .relate_account_to_transaction(
|
|
|
+ &transaction.revision.transaction_id,
|
|
|
+ &account,
|
|
|
+ transaction.typ,
|
|
|
+ )
|
|
|
+ .await?;
|
|
|
+ }
|
|
|
+ batch
|
|
|
+ .store_base_transaction(
|
|
|
+ &transaction.revision.transaction_id,
|
|
|
+ &transaction.transaction,
|
|
|
+ )
|
|
|
+ .await?;
|
|
|
+ Ok(())
|
|
|
+ }
|
|
|
+
|
|
|
+ /// Stores the current transaction object to the storage layer.
|
|
|
+ ///
|
|
|
+ /// This method is not idempotent, and it will fail if the transaction if the requested update
|
|
|
+ /// is not allowed.
|
|
|
+ ///
|
|
|
+ /// This function will store the base transaction if it is the first revision, and will create a
|
|
|
+ /// new revision otherwise.
|
|
|
+ pub async fn store(&self, transaction: Transaction) -> Result<Transaction, Error> {
|
|
|
+ transaction.validate()?;
|
|
|
+
|
|
|
+ let mut batch = self.config.storage.begin().await?;
|
|
|
+ if transaction.revision.previous.is_none() {
|
|
|
+ Self::store_base_transaction(&transaction, &mut batch).await?;
|
|
|
+ }
|
|
|
+
|
|
|
+ let (created_updated, spent_updated) = match self
|
|
|
+ .config
|
|
|
+ .status
|
|
|
+ .internal_type(&transaction.revision.status)
|
|
|
+ {
|
|
|
+ InternalStatus::Reverted => {
|
|
|
+ batch
|
|
|
+ .update_transaction_payments(
|
|
|
+ &transaction.id,
|
|
|
+ ReceivedPaymentStatus::Failed,
|
|
|
+ ReceivedPaymentStatus::Spendable,
|
|
|
+ )
|
|
|
+ .await?
|
|
|
+ }
|
|
|
+ InternalStatus::Spendable => {
|
|
|
+ batch
|
|
|
+ .update_transaction_payments(
|
|
|
+ &transaction.id,
|
|
|
+ ReceivedPaymentStatus::Spendable,
|
|
|
+ ReceivedPaymentStatus::Spent,
|
|
|
+ )
|
|
|
+ .await?
|
|
|
+ }
|
|
|
+ _ => (transaction.creates.len(), transaction.spends.len()),
|
|
|
+ };
|
|
|
+
|
|
|
+ if transaction.creates.len() != created_updated || transaction.spends.len() != spent_updated
|
|
|
+ {
|
|
|
+ return Err(Error::Transaction(TxError::NoUpdate));
|
|
|
+ }
|
|
|
+
|
|
|
+ if self
|
|
|
+ .config
|
|
|
+ .status
|
|
|
+ .is_spendable(&transaction.revision.status)
|
|
|
+ {
|
|
|
+ batch
|
|
|
+ .update_transaction_payments(
|
|
|
+ &transaction.id,
|
|
|
+ ReceivedPaymentStatus::Spendable,
|
|
|
+ ReceivedPaymentStatus::Spent,
|
|
|
+ )
|
|
|
+ .await?;
|
|
|
+ }
|
|
|
+
|
|
|
+ batch
|
|
|
+ .store_revision(&transaction.revision_id, &transaction.revision)
|
|
|
+ .await?;
|
|
|
+
|
|
|
+ batch
|
|
|
+ .tag_transaction(
|
|
|
+ &transaction.id,
|
|
|
+ &transaction.transaction,
|
|
|
+ &transaction.revision.tags,
|
|
|
+ )
|
|
|
+ .await?;
|
|
|
+
|
|
|
+ batch
|
|
|
+ .update_transaction_revision(
|
|
|
+ &transaction.id,
|
|
|
+ &transaction.revision_id,
|
|
|
+ transaction.revision.previous.as_ref(),
|
|
|
+ )
|
|
|
+ .await?;
|
|
|
+
|
|
|
+ batch.commit().await?;
|
|
|
+
|
|
|
+ // The transaction is persisted and now it is time to broadcast it to any possible listener
|
|
|
self.brodcaster.process(transaction.clone());
|
|
|
+
|
|
|
Ok(transaction)
|
|
|
}
|
|
|
|
|
@@ -211,9 +345,9 @@ where
|
|
|
) -> Result<Transaction, Error> {
|
|
|
let (change_transaction, payments) = self.select_payments_from_accounts(from).await?;
|
|
|
if let Some(change_tx) = change_transaction {
|
|
|
- self.persist(change_tx).await?;
|
|
|
+ self.store(change_tx).await?;
|
|
|
}
|
|
|
- self.persist(Transaction::new(reference, status, Type::Transaction, payments, to).await?)
|
|
|
+ self.store(Transaction::new(reference, status, Type::Transaction, payments, to).await?)
|
|
|
.await
|
|
|
}
|
|
|
|
|
@@ -241,7 +375,7 @@ where
|
|
|
tags: Vec<Tag>,
|
|
|
reference: String,
|
|
|
) -> Result<Transaction, Error> {
|
|
|
- self.persist(Transaction::new_external_deposit(
|
|
|
+ self.store(Transaction::new_external_deposit(
|
|
|
reference,
|
|
|
status,
|
|
|
tags,
|
|
@@ -267,9 +401,9 @@ where
|
|
|
.select_payments_from_accounts(vec![(account.clone(), amount)])
|
|
|
.await?;
|
|
|
for change_tx in change_transactions.into_iter() {
|
|
|
- self.persist(change_tx).await?;
|
|
|
+ self.store(change_tx).await?;
|
|
|
}
|
|
|
- self.persist(Transaction::new_external_withdrawal(
|
|
|
+ self.store(Transaction::new_external_withdrawal(
|
|
|
reference, status, payments,
|
|
|
)?)
|
|
|
.await
|
|
@@ -319,7 +453,7 @@ where
|
|
|
limit: 1,
|
|
|
..Default::default()
|
|
|
};
|
|
|
- self.persist(
|
|
|
+ self.store(
|
|
|
self.config
|
|
|
.storage
|
|
|
.find(filter)
|
|
@@ -344,14 +478,15 @@ where
|
|
|
limit: 1,
|
|
|
..Default::default()
|
|
|
};
|
|
|
- Ok(self
|
|
|
- .config
|
|
|
- .storage
|
|
|
- .find(filter)
|
|
|
- .await?
|
|
|
- .pop()
|
|
|
- .ok_or(Error::TxNotFound)?
|
|
|
- .change_status(&self.config, new_status, reason)
|
|
|
- .await?)
|
|
|
+ self.store(
|
|
|
+ self.config
|
|
|
+ .storage
|
|
|
+ .find(filter)
|
|
|
+ .await?
|
|
|
+ .pop()
|
|
|
+ .ok_or(Error::TxNotFound)?
|
|
|
+ .change_status(&self.config, new_status, reason)?,
|
|
|
+ )
|
|
|
+ .await
|
|
|
}
|
|
|
}
|