|
@@ -4,7 +4,7 @@ use actix_web::{
|
|
|
error::InternalError, get, middleware::Logger, post, web, App, HttpResponse, HttpServer,
|
|
|
Responder,
|
|
|
};
|
|
|
-use ledger_utxo::{AccountId, AssetDefinition, AssetManager, Status, TransactionId};
|
|
|
+use ledger_utxo::{AccountId, AnyId, AssetDefinition, AssetManager, Status, TransactionId};
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
use serde_json::json;
|
|
|
|
|
@@ -45,16 +45,53 @@ pub struct Transaction {
|
|
|
pub status: Status,
|
|
|
}
|
|
|
|
|
|
+#[derive(Deserialize)]
|
|
|
+pub struct UpdateTransaction {
|
|
|
+ pub status: Status,
|
|
|
+ pub memo: String,
|
|
|
+}
|
|
|
+
|
|
|
+impl UpdateTransaction {
|
|
|
+ pub async fn to_ledger_transaction(
|
|
|
+ self,
|
|
|
+ id: &TransactionId,
|
|
|
+ ledger: &Ledger,
|
|
|
+ ) -> Result<ledger_utxo::Transaction, ledger_utxo::Error> {
|
|
|
+ ledger._inner.change_status(id, self.status).await
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
impl Transaction {
|
|
|
pub async fn to_ledger_transaction(
|
|
|
self,
|
|
|
ledger: &Ledger,
|
|
|
) -> Result<ledger_utxo::Transaction, ledger_utxo::Error> {
|
|
|
- todo!()
|
|
|
- /*ledger
|
|
|
- ._inner
|
|
|
- .new_transaction(self.memo, self.status, from, to)
|
|
|
- .await*/
|
|
|
+ let from = self
|
|
|
+ .debit
|
|
|
+ .into_iter()
|
|
|
+ .map(|x| {
|
|
|
+ ledger
|
|
|
+ ._inner
|
|
|
+ .parse_amount(&x.asset, &x.amount)
|
|
|
+ .map(|amount| (x.account, amount))
|
|
|
+ })
|
|
|
+ .collect::<Result<Vec<_>, _>>()?;
|
|
|
+
|
|
|
+ let to = self
|
|
|
+ .credit
|
|
|
+ .into_iter()
|
|
|
+ .map(|x| {
|
|
|
+ ledger
|
|
|
+ ._inner
|
|
|
+ .parse_amount(&x.asset, &x.amount)
|
|
|
+ .map(|amount| (x.account, amount))
|
|
|
+ })
|
|
|
+ .collect::<Result<Vec<_>, _>>()?;
|
|
|
+
|
|
|
+ ledger
|
|
|
+ ._inner
|
|
|
+ .new_transaction(self.memo, self.status, from, to)
|
|
|
+ .await
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -95,21 +132,24 @@ async fn get_balance(info: web::Path<AccountId>, ledger: web::Data<Ledger>) -> i
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-#[get("/tx/{id}")]
|
|
|
-async fn get_transaction(
|
|
|
- info: web::Path<TransactionId>,
|
|
|
- ledger: web::Data<Ledger>,
|
|
|
-) -> impl Responder {
|
|
|
- // Retrieve an item by ID from a database or another data source.
|
|
|
- // For this example, we'll return a hardcoded item.
|
|
|
-
|
|
|
- let tx = ledger._inner.get_transaction(&info.0).await;
|
|
|
- println!("{:?}", tx);
|
|
|
+#[get("/{id}")]
|
|
|
+async fn get_info(info: web::Path<AnyId>, ledger: web::Data<Ledger>) -> impl Responder {
|
|
|
+ let result = match info.0 {
|
|
|
+ AnyId::Account(account_id) => ledger
|
|
|
+ ._inner
|
|
|
+ .get_transactions(&account_id, None)
|
|
|
+ .await
|
|
|
+ .map(|transactions| HttpResponse::Ok().json(transactions)),
|
|
|
+ AnyId::Transaction(transaction_id) => ledger
|
|
|
+ ._inner
|
|
|
+ .get_transaction(&transaction_id)
|
|
|
+ .await
|
|
|
+ .map(|tx| HttpResponse::Ok().json(tx)),
|
|
|
+ };
|
|
|
|
|
|
- if let Ok(tx) = tx {
|
|
|
- HttpResponse::Ok().json(tx)
|
|
|
- } else {
|
|
|
- HttpResponse::BadRequest().json(json!({"error": "not found"}))
|
|
|
+ match result {
|
|
|
+ Ok(x) => x,
|
|
|
+ Err(err) => HttpResponse::InternalServerError().json(err),
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -132,12 +172,25 @@ async fn create_transaction(
|
|
|
item: web::Json<Transaction>,
|
|
|
ledger: web::Data<Ledger>,
|
|
|
) -> impl Responder {
|
|
|
- if let Ok(tx) = item.into_inner().to_ledger_transaction(&ledger).await {
|
|
|
- // Insert the item into a database or another data source.
|
|
|
- // For this example, we'll just echo the received item.
|
|
|
- HttpResponse::Created().json(tx)
|
|
|
- } else {
|
|
|
- HttpResponse::Created().json(json!({"test": "true"}))
|
|
|
+ match item.into_inner().to_ledger_transaction(&ledger).await {
|
|
|
+ Ok(tx) => HttpResponse::Accepted().json(tx),
|
|
|
+ Err(err) => HttpResponse::Created().json(err),
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+#[post("/{id}")]
|
|
|
+async fn update_status(
|
|
|
+ info: web::Path<TransactionId>,
|
|
|
+ item: web::Json<UpdateTransaction>,
|
|
|
+ ledger: web::Data<Ledger>,
|
|
|
+) -> impl Responder {
|
|
|
+ match item
|
|
|
+ .into_inner()
|
|
|
+ .to_ledger_transaction(&info.0, &ledger)
|
|
|
+ .await
|
|
|
+ {
|
|
|
+ Ok(tx) => HttpResponse::Accepted().json(tx),
|
|
|
+ Err(err) => HttpResponse::Created().json(err),
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -181,9 +234,10 @@ async fn main() -> std::io::Result<()> {
|
|
|
.into()
|
|
|
}))
|
|
|
.service(get_balance)
|
|
|
- .service(get_transaction)
|
|
|
+ .service(get_info)
|
|
|
.service(deposit)
|
|
|
.service(create_transaction)
|
|
|
+ .service(update_status)
|
|
|
})
|
|
|
.bind("127.0.0.1:8080")?
|
|
|
.run()
|