deposit.rs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. use crate::{Context, Handler};
  2. use axum::{extract::State, http::StatusCode, Json};
  3. use serde::Deserialize;
  4. use verax::{AccountId, AnyAmount, ReplayProtection, Status, Tag};
  5. #[derive(Deserialize)]
  6. pub struct Deposit {
  7. pub account: AccountId,
  8. #[serde(flatten)]
  9. pub amount: AnyAmount,
  10. pub memo: String,
  11. pub tags: Vec<Tag>,
  12. pub status: Status,
  13. pub replay_protection: Option<ReplayProtection>,
  14. }
  15. #[async_trait::async_trait]
  16. impl Handler for Deposit {
  17. type Ok = verax::Transaction;
  18. type Err = verax::Error;
  19. async fn handle(self, ctx: &Context) -> Result<Self::Ok, Self::Err> {
  20. ctx.ledger
  21. .deposit(
  22. &self.account,
  23. self.amount.try_into()?,
  24. self.status,
  25. self.tags,
  26. self.memo,
  27. self.replay_protection,
  28. )
  29. .await
  30. }
  31. }
  32. pub async fn handler(
  33. State(ledger): State<Context>,
  34. Json(item): Json<Deposit>,
  35. ) -> Result<Json<verax::Transaction>, (StatusCode, String)> {
  36. Ok(Json(item.handle(&ledger).await.map_err(|err| {
  37. (
  38. StatusCode::BAD_REQUEST,
  39. serde_json::to_string(&err).unwrap_or_default(),
  40. )
  41. })?))
  42. }