|
@@ -4,7 +4,7 @@ use crate::{
|
|
|
payment::PaymentTo,
|
|
|
storage::{self, Batch, Storage},
|
|
|
transaction::*,
|
|
|
- AccountId, Amount, Asset, PaymentFrom, RevisionId, Status,
|
|
|
+ AccountId, Amount, Asset, PaymentFrom, RevId, Status, TxId,
|
|
|
};
|
|
|
use chrono::{serde::ts_milliseconds, DateTime, Utc};
|
|
|
use serde::{Deserialize, Serialize};
|
|
@@ -25,7 +25,7 @@ use std::collections::HashMap;
|
|
|
pub struct Revision {
|
|
|
#[serde(rename = "_prev_rev")]
|
|
|
/// Any previous transaction that this transaction is replacing.
|
|
|
- previous: Option<RevisionId>,
|
|
|
+ previous: Option<RevId>,
|
|
|
/// A human-readable description of the transaction changes.
|
|
|
changelog: String,
|
|
|
spends: Vec<PaymentFrom>,
|
|
@@ -43,23 +43,24 @@ pub struct Revision {
|
|
|
}
|
|
|
|
|
|
impl Revision {
|
|
|
- pub fn calculate_id(&self) -> Result<RevisionId, Error> {
|
|
|
+ /// Calculates a revision ID
|
|
|
+ pub fn calculate_rev_id(&self) -> Result<RevId, Error> {
|
|
|
let mut hasher = Sha256::new();
|
|
|
let bytes = bincode::serialize(self)?;
|
|
|
hasher.update(bytes);
|
|
|
- Ok(RevisionId::new(hasher.finalize().into()))
|
|
|
+ Ok(RevId::new(hasher.finalize().into()))
|
|
|
}
|
|
|
|
|
|
/// The transaction fingerprint is a hash of the properties that are not allowed to be updated
|
|
|
/// in a transaction.
|
|
|
- pub fn transaction_fingerprint(&self) -> Result<RevisionId, Error> {
|
|
|
+ pub fn calculate_id(&self) -> Result<TxId, Error> {
|
|
|
let mut hasher = Sha256::new();
|
|
|
hasher.update(&bincode::serialize(&self.spends)?);
|
|
|
hasher.update(&bincode::serialize(&self.creates)?);
|
|
|
hasher.update(&self.typ.to_string());
|
|
|
hasher.update(&self.reference);
|
|
|
hasher.update(&self.created_at.timestamp_millis().to_string());
|
|
|
- Ok(RevisionId::new(hasher.finalize().into()))
|
|
|
+ Ok(TxId::new(hasher.finalize().into()))
|
|
|
}
|
|
|
|
|
|
/// Validates the transaction input and output (debit and credit)
|
|
@@ -159,16 +160,16 @@ impl Revision {
|
|
|
#[derive(Debug, Clone, Serialize)]
|
|
|
pub struct Transaction {
|
|
|
#[serde(rename = "_id")]
|
|
|
- /// The RevisionId is the RevisionID of the first revision of the transaction.
|
|
|
- pub id: RevisionId,
|
|
|
+ /// The TxId is the TxId of the first revision of the transaction.
|
|
|
+ pub id: TxId,
|
|
|
|
|
|
#[serde(rename = "_rev")]
|
|
|
/// Current Revision ID.
|
|
|
- pub revision_id: RevisionId,
|
|
|
+ pub revision_id: RevId,
|
|
|
|
|
|
#[serde(rename = "_latest_rev")]
|
|
|
/// Latest revision of this transaction
|
|
|
- pub lastest_revision: RevisionId,
|
|
|
+ pub lastest_revision: RevId,
|
|
|
|
|
|
/// The transaction inner details
|
|
|
#[serde(flatten)]
|
|
@@ -203,7 +204,6 @@ impl Transaction {
|
|
|
updated_at: Utc::now(),
|
|
|
},
|
|
|
None,
|
|
|
- None,
|
|
|
)
|
|
|
}
|
|
|
|
|
@@ -229,7 +229,6 @@ impl Transaction {
|
|
|
updated_at: Utc::now(),
|
|
|
},
|
|
|
None,
|
|
|
- None,
|
|
|
)
|
|
|
}
|
|
|
|
|
@@ -265,22 +264,19 @@ impl Transaction {
|
|
|
updated_at: Utc::now(),
|
|
|
},
|
|
|
None,
|
|
|
- None,
|
|
|
)
|
|
|
}
|
|
|
|
|
|
/// Creates a new transaction object from a given revision
|
|
|
pub fn from_revision(
|
|
|
revision: Revision,
|
|
|
- first_revision: Option<RevisionId>,
|
|
|
- lastest_revision: Option<RevisionId>,
|
|
|
+ lastest_revision: Option<RevId>,
|
|
|
) -> Result<Self, Error> {
|
|
|
- let revision_id = revision.calculate_id()?;
|
|
|
- let first_revision = first_revision.unwrap_or_else(|| revision_id.clone());
|
|
|
+ let revision_id = revision.calculate_rev_id()?;
|
|
|
let lastest_revision = lastest_revision.unwrap_or_else(|| revision_id.clone());
|
|
|
|
|
|
Ok(Transaction {
|
|
|
- id: first_revision,
|
|
|
+ id: revision.calculate_id()?,
|
|
|
revision_id,
|
|
|
lastest_revision,
|
|
|
inner: revision,
|
|
@@ -293,7 +289,7 @@ impl Transaction {
|
|
|
}
|
|
|
|
|
|
/// Returns the previous revision of this transaction, if any
|
|
|
- pub fn previous(&self) -> Option<RevisionId> {
|
|
|
+ pub fn previous(&self) -> Option<RevId> {
|
|
|
self.inner.previous.clone()
|
|
|
}
|
|
|
|
|
@@ -345,22 +341,18 @@ impl Transaction {
|
|
|
inner.updated_at = Utc::now();
|
|
|
inner.previous = Some(self.revision_id);
|
|
|
inner.status = new_status;
|
|
|
- let mut x: Transaction = Transaction::from_revision(inner, Some(self.id), None)?;
|
|
|
+ let mut x: Transaction = Transaction::from_revision(inner, None)?;
|
|
|
x.persist(config).await?;
|
|
|
Ok(x)
|
|
|
}
|
|
|
|
|
|
/// Validates the transaction before storing
|
|
|
pub(crate) fn validate(&self) -> Result<(), Error> {
|
|
|
- let calculated_revision_id = self.inner.calculate_id()?;
|
|
|
-
|
|
|
- if self.revision_id != calculated_revision_id
|
|
|
- || (self.inner.previous.is_none() && self.id != calculated_revision_id)
|
|
|
- {
|
|
|
- return Err(Error::InvalidRevisionId(
|
|
|
- self.id.clone(),
|
|
|
- calculated_revision_id,
|
|
|
- ));
|
|
|
+ let calculated_revision_id = self.inner.calculate_rev_id()?;
|
|
|
+ let calculated_tx_id = self.inner.calculate_id()?;
|
|
|
+
|
|
|
+ if self.revision_id != calculated_revision_id || self.id != calculated_tx_id {
|
|
|
+ return Err(Error::InvalidTxId(self.id.clone(), calculated_tx_id));
|
|
|
}
|
|
|
|
|
|
self.inner.validate()
|
|
@@ -377,7 +369,7 @@ impl Transaction {
|
|
|
}
|
|
|
|
|
|
/// Returns the transaction ID
|
|
|
- pub fn id(&self) -> &RevisionId {
|
|
|
+ pub fn id(&self) -> &TxId {
|
|
|
&self.id
|
|
|
}
|
|
|
|
|
@@ -422,8 +414,7 @@ impl Transaction {
|
|
|
let current_transaction = batch.get_and_lock_transaction(&self.id).await?;
|
|
|
|
|
|
if config.status.is_final(¤t_transaction.inner.status)
|
|
|
- || self.inner.transaction_fingerprint()?
|
|
|
- != current_transaction.inner.transaction_fingerprint()?
|
|
|
+ || self.inner.calculate_id()? != current_transaction.inner.calculate_id()?
|
|
|
|| *previous_id != current_transaction.lastest_revision
|
|
|
{
|
|
|
return Err(Error::TransactionUpdatesNotAllowed);
|