get.rs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. use crate::Context;
  2. use axum::{
  3. extract::{Path, State},
  4. http::StatusCode,
  5. Json,
  6. };
  7. use verax::{AnyId, Filter, Type};
  8. /// TODO: Implement the http caching
  9. pub async fn handler(
  10. Path(id): Path<AnyId>,
  11. State(ctx): State<Context>,
  12. ) -> Result<Json<Vec<verax::Transaction>>, (StatusCode, String)> {
  13. let (_cache_for_ever, filter) = match id {
  14. AnyId::Account(account_id) => (
  15. false,
  16. Filter {
  17. from: vec![account_id],
  18. typ: vec![Type::Deposit, Type::Withdrawal, Type::Transaction],
  19. ..Default::default()
  20. },
  21. ),
  22. AnyId::Revision(rev_id) => (
  23. true,
  24. Filter {
  25. revisions: vec![rev_id],
  26. limit: 1,
  27. ..Default::default()
  28. },
  29. ),
  30. AnyId::Transaction(transaction_id) => (
  31. false,
  32. Filter {
  33. ids: vec![transaction_id],
  34. limit: 1,
  35. ..Default::default()
  36. },
  37. ),
  38. AnyId::Payment(payment_id) => {
  39. let _ = ctx.ledger.get_payment_info(&payment_id).await;
  40. todo!()
  41. }
  42. };
  43. ctx.ledger
  44. .get_transactions(filter)
  45. .await
  46. .map(Json)
  47. /*
  48. .map(|results| {
  49. /// REVISIT LATER TO IMPLEMENT THE CACHE
  50. let json_response = if limit == 1 {
  51. serde_json::to_value(&results[0])
  52. } else {
  53. serde_json::to_value(&results)
  54. }
  55. .unwrap();
  56. if cache_for_ever {
  57. HttpResponse::Ok()
  58. .header(
  59. "Cache-Control",
  60. "public, max-age=31536000, s-maxage=31536000, immutable",
  61. )
  62. .header("Vary", "Accept-Encoding")
  63. .json(json_response)
  64. } else {
  65. HttpResponse::Ok().json(json_response)
  66. }
  67. json_response
  68. })
  69. */
  70. .map_err(|err| {
  71. (
  72. StatusCode::BAD_REQUEST,
  73. serde_json::to_string(&err).unwrap_or_default(),
  74. )
  75. })
  76. }