|
@@ -3,7 +3,7 @@ use crate::{
|
|
|
payment::PaymentTo,
|
|
|
status::InternalStatus,
|
|
|
storage::{Batch, ReceivedPaymentStatus, Storage},
|
|
|
- AccountId, Amount, PaymentFrom, RevId, Status, TxId,
|
|
|
+ AccountId, Amount, MaxLengthString, PaymentFrom, RevId, Status, TxId,
|
|
|
};
|
|
|
use chrono::{DateTime, TimeZone, Utc};
|
|
|
use serde::{Deserialize, Serialize};
|
|
@@ -16,6 +16,9 @@ mod typ;
|
|
|
|
|
|
pub use self::{base_tx::BaseTx, error::Error, revision::Revision, typ::Type};
|
|
|
|
|
|
+/// Tag definition
|
|
|
+pub type Tag = MaxLengthString<64>;
|
|
|
+
|
|
|
pub(crate) fn to_ts_microseconds<W: std::io::Write>(
|
|
|
dt: &DateTime<Utc>,
|
|
|
writer: &mut W,
|
|
@@ -172,7 +175,7 @@ impl Transaction {
|
|
|
pub async fn set_tags<S>(
|
|
|
self,
|
|
|
config: &Config<S>,
|
|
|
- new_tags: Vec<String>,
|
|
|
+ new_tags: Vec<Tag>,
|
|
|
reason: String,
|
|
|
) -> Result<Self, Error>
|
|
|
where
|
|
@@ -307,22 +310,24 @@ impl Transaction {
|
|
|
|
|
|
let (created_updated, spent_updated) =
|
|
|
match config.status.internal_type(&self.revision.status) {
|
|
|
- InternalStatus::Reverted => batch
|
|
|
- .update_transaction_payments(
|
|
|
- &self.id,
|
|
|
- ReceivedPaymentStatus::Failed,
|
|
|
- ReceivedPaymentStatus::Spendable,
|
|
|
- )
|
|
|
- .await
|
|
|
- .expect("foo0"),
|
|
|
- InternalStatus::Spendable => batch
|
|
|
- .update_transaction_payments(
|
|
|
- &self.id,
|
|
|
- ReceivedPaymentStatus::Spendable,
|
|
|
- ReceivedPaymentStatus::Spent,
|
|
|
- )
|
|
|
- .await
|
|
|
- .expect("foo1"),
|
|
|
+ InternalStatus::Reverted => {
|
|
|
+ batch
|
|
|
+ .update_transaction_payments(
|
|
|
+ &self.id,
|
|
|
+ ReceivedPaymentStatus::Failed,
|
|
|
+ ReceivedPaymentStatus::Spendable,
|
|
|
+ )
|
|
|
+ .await?
|
|
|
+ }
|
|
|
+ InternalStatus::Spendable => {
|
|
|
+ batch
|
|
|
+ .update_transaction_payments(
|
|
|
+ &self.id,
|
|
|
+ ReceivedPaymentStatus::Spendable,
|
|
|
+ ReceivedPaymentStatus::Spent,
|
|
|
+ )
|
|
|
+ .await?
|
|
|
+ }
|
|
|
_ => (self.creates.len(), self.spends.len()),
|
|
|
};
|
|
|
|
|
@@ -337,14 +342,15 @@ impl Transaction {
|
|
|
ReceivedPaymentStatus::Spendable,
|
|
|
ReceivedPaymentStatus::Spent,
|
|
|
)
|
|
|
- .await
|
|
|
- .expect("foo2");
|
|
|
+ .await?;
|
|
|
}
|
|
|
|
|
|
batch
|
|
|
.store_revision(&self.revision_id, &self.revision)
|
|
|
.await?;
|
|
|
|
|
|
+ batch.tag_transaction(&self.id, &self.revision.tags).await?;
|
|
|
+
|
|
|
batch
|
|
|
.update_transaction_revision(
|
|
|
&self.id,
|