|
@@ -1,6 +1,6 @@
|
|
|
use crate::{
|
|
|
storage::{self, Error},
|
|
|
- Payment, PaymentId, Status, Transaction, TransactionId,
|
|
|
+ AccountId, Payment, PaymentId, Status, Transaction, TransactionId,
|
|
|
};
|
|
|
use sqlx::{Row, Sqlite, Transaction as SqlxTransaction};
|
|
|
use std::marker::PhantomData;
|
|
@@ -21,6 +21,20 @@ impl<'a> Batch<'a> {
|
|
|
|
|
|
#[async_trait::async_trait]
|
|
|
impl<'a> storage::Batch<'a> for Batch<'a> {
|
|
|
+ async fn rollback(self) -> Result<(), Error> {
|
|
|
+ self.inner
|
|
|
+ .rollback()
|
|
|
+ .await
|
|
|
+ .map_err(|e| Error::Storage(e.to_string()))
|
|
|
+ }
|
|
|
+
|
|
|
+ async fn commit(self) -> Result<(), Error> {
|
|
|
+ self.inner
|
|
|
+ .commit()
|
|
|
+ .await
|
|
|
+ .map_err(|e| Error::Storage(e.to_string()))
|
|
|
+ }
|
|
|
+
|
|
|
async fn spend_payment(
|
|
|
&mut self,
|
|
|
payment_id: &PaymentId,
|
|
@@ -85,23 +99,8 @@ impl<'a> storage::Batch<'a> for Batch<'a> {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- async fn rollback(self) -> Result<(), Error> {
|
|
|
- self.inner
|
|
|
- .rollback()
|
|
|
- .await
|
|
|
- .map_err(|e| Error::Storage(e.to_string()))
|
|
|
- }
|
|
|
-
|
|
|
- async fn commit(self) -> Result<(), Error> {
|
|
|
- self.inner
|
|
|
- .commit()
|
|
|
- .await
|
|
|
- .map_err(|e| Error::Storage(e.to_string()))
|
|
|
- }
|
|
|
-
|
|
|
- async fn store_new_payments(&mut self, payments: &[Payment]) -> Result<(), Error> {
|
|
|
- for payment in payments.iter() {
|
|
|
- sqlx::query(
|
|
|
+ async fn store_new_payment(&mut self, payment: &Payment) -> Result<(), Error> {
|
|
|
+ sqlx::query(
|
|
|
r#"
|
|
|
INSERT INTO payments("transaction_id", "position_id", "to", "cents", "asset_id", "status")
|
|
|
VALUES (?, ?, ?, ?, ?, ?)
|
|
@@ -118,22 +117,23 @@ impl<'a> storage::Batch<'a> for Batch<'a> {
|
|
|
.execute(&mut *self.inner)
|
|
|
.await
|
|
|
.map_err(|e| Error::Storage(e.to_string()))?;
|
|
|
- }
|
|
|
Ok(())
|
|
|
}
|
|
|
|
|
|
async fn store_transaction(&mut self, transaction: &Transaction) -> Result<(), Error> {
|
|
|
sqlx::query(
|
|
|
r#"
|
|
|
- INSERT INTO "transactions"("transaction_id", "status", "reference")
|
|
|
- VALUES(?, ?, ?)
|
|
|
+ INSERT INTO "transactions"("transaction_id", "status", "reference", "created_at", "updated_at")
|
|
|
+ VALUES(?, ?, ?, ?, ?)
|
|
|
ON CONFLICT("transaction_id")
|
|
|
- DO UPDATE SET "status" = excluded."status", "reference" = excluded."reference"
|
|
|
+ DO UPDATE SET "status" = excluded."status", "reference" = excluded."reference", "updated_at" = excluded."updated_at"
|
|
|
"#,
|
|
|
)
|
|
|
.bind(transaction.id().to_string())
|
|
|
.bind::<u32>(transaction.status().into())
|
|
|
.bind(transaction.reference())
|
|
|
+ .bind(transaction.created_at().timestamp())
|
|
|
+ .bind(transaction.updated_at().timestamp())
|
|
|
.execute(&mut *self.inner)
|
|
|
.await
|
|
|
.map_err(|e| Error::Storage(e.to_string()))?;
|
|
@@ -141,7 +141,7 @@ impl<'a> storage::Batch<'a> for Batch<'a> {
|
|
|
for payment in transaction.spent().iter() {
|
|
|
sqlx::query(
|
|
|
r#"
|
|
|
- INSERT INTO "transaction_payments"("transaction_id", "payment_transaction_id", "payment_position_id")
|
|
|
+ INSERT INTO "transaction_input_payments"("transaction_id", "payment_transaction_id", "payment_position_id")
|
|
|
VALUES(?, ?, ?)
|
|
|
ON CONFLICT("transaction_id", "payment_transaction_id", "payment_position_id")
|
|
|
DO NOTHING
|
|
@@ -157,4 +157,25 @@ impl<'a> storage::Batch<'a> for Batch<'a> {
|
|
|
|
|
|
Ok(())
|
|
|
}
|
|
|
+
|
|
|
+ async fn relate_account_to_transaction(
|
|
|
+ &mut self,
|
|
|
+ transaction_id: &TransactionId,
|
|
|
+ account: &AccountId,
|
|
|
+ ) -> Result<(), Error> {
|
|
|
+ sqlx::query(
|
|
|
+ r#"
|
|
|
+ INSERT INTO "transaction_accounts"("transaction_id", "account_id")
|
|
|
+ VALUES(?, ?)
|
|
|
+ ON CONFLICT("transaction_id", "account_id")
|
|
|
+ DO NOTHING
|
|
|
+ "#,
|
|
|
+ )
|
|
|
+ .bind(transaction_id.to_string())
|
|
|
+ .bind(account.to_string())
|
|
|
+ .execute(&mut *self.inner)
|
|
|
+ .await
|
|
|
+ .map_err(|e| Error::Storage(e.to_string()))?;
|
|
|
+ Ok(())
|
|
|
+ }
|
|
|
}
|