lib.rs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. //! Axum server for Mint
  2. #![warn(missing_docs)]
  3. #![warn(rustdoc::bare_urls)]
  4. use std::sync::Arc;
  5. use anyhow::Result;
  6. use axum::routing::{get, post};
  7. use axum::Router;
  8. use cache::HttpCache;
  9. use cdk::mint::Mint;
  10. use router_handlers::*;
  11. pub mod cache;
  12. mod router_handlers;
  13. mod ws;
  14. #[cfg(feature = "swagger")]
  15. mod swagger_imports {
  16. pub use cdk::amount::Amount;
  17. pub use cdk::error::{ErrorCode, ErrorResponse};
  18. pub use cdk::nuts::nut00::{
  19. BlindSignature, BlindedMessage, CurrencyUnit, PaymentMethod, Proof, Witness,
  20. };
  21. pub use cdk::nuts::nut01::{Keys, KeysResponse, PublicKey, SecretKey};
  22. pub use cdk::nuts::nut02::{KeySet, KeySetInfo, KeysetResponse};
  23. pub use cdk::nuts::nut03::{SwapRequest, SwapResponse};
  24. pub use cdk::nuts::nut04::{
  25. MintBolt11Request, MintBolt11Response, MintMethodSettings, MintQuoteBolt11Request,
  26. MintQuoteBolt11Response,
  27. };
  28. pub use cdk::nuts::nut05::{
  29. MeltBolt11Request, MeltMethodSettings, MeltQuoteBolt11Request, MeltQuoteBolt11Response,
  30. };
  31. pub use cdk::nuts::nut06::{ContactInfo, MintInfo, MintVersion, Nuts, SupportedSettings};
  32. pub use cdk::nuts::nut07::{CheckStateRequest, CheckStateResponse, ProofState, State};
  33. pub use cdk::nuts::nut09::{RestoreRequest, RestoreResponse};
  34. pub use cdk::nuts::nut11::P2PKWitness;
  35. pub use cdk::nuts::nut12::{BlindSignatureDleq, ProofDleq};
  36. pub use cdk::nuts::nut14::HTLCWitness;
  37. pub use cdk::nuts::nut15::{Mpp, MppMethodSettings};
  38. pub use cdk::nuts::{nut04, nut05, nut15, MeltQuoteState, MintQuoteState};
  39. }
  40. #[cfg(feature = "swagger")]
  41. use swagger_imports::*;
  42. #[cfg(feature = "swagger")]
  43. use uuid::Uuid;
  44. /// CDK Mint State
  45. #[derive(Clone)]
  46. pub struct MintState {
  47. mint: Arc<Mint>,
  48. cache: Arc<cache::HttpCache>,
  49. }
  50. #[cfg(feature = "swagger")]
  51. #[derive(utoipa::OpenApi)]
  52. #[openapi(
  53. components(schemas(
  54. Amount,
  55. BlindedMessage,
  56. BlindSignature,
  57. BlindSignatureDleq,
  58. CheckStateRequest,
  59. CheckStateResponse,
  60. ContactInfo,
  61. CurrencyUnit,
  62. ErrorCode,
  63. ErrorResponse,
  64. HTLCWitness,
  65. Keys,
  66. KeysResponse,
  67. KeysetResponse,
  68. KeySet,
  69. KeySetInfo,
  70. MeltBolt11Request<Uuid>,
  71. MeltQuoteBolt11Request,
  72. MeltQuoteBolt11Response<Uuid>,
  73. MeltQuoteState,
  74. MeltMethodSettings,
  75. MintBolt11Request<Uuid>,
  76. MintBolt11Response,
  77. MintInfo,
  78. MintQuoteBolt11Request,
  79. MintQuoteBolt11Response<Uuid>,
  80. MintQuoteState,
  81. MintMethodSettings,
  82. MintVersion,
  83. Mpp,
  84. MppMethodSettings,
  85. Nuts,
  86. P2PKWitness,
  87. PaymentMethod,
  88. Proof,
  89. ProofDleq,
  90. ProofState,
  91. PublicKey,
  92. RestoreRequest,
  93. RestoreResponse,
  94. SecretKey,
  95. State,
  96. SupportedSettings,
  97. SwapRequest,
  98. SwapResponse,
  99. Witness,
  100. nut04::Settings,
  101. nut05::Settings,
  102. nut15::Settings
  103. )),
  104. info(description = "Cashu CDK mint APIs", title = "cdk-mintd",),
  105. paths(
  106. get_keys,
  107. get_keyset_pubkeys,
  108. get_keysets,
  109. get_mint_info,
  110. post_mint_bolt11_quote,
  111. get_check_mint_bolt11_quote,
  112. post_mint_bolt11,
  113. post_melt_bolt11_quote,
  114. get_check_melt_bolt11_quote,
  115. post_melt_bolt11,
  116. post_swap,
  117. post_check,
  118. post_restore
  119. )
  120. )]
  121. /// OpenAPI spec for the mint's v1 APIs
  122. pub struct ApiDocV1;
  123. /// Create mint [`Router`] with required endpoints for cashu mint with the default cache
  124. pub async fn create_mint_router(mint: Arc<Mint>) -> Result<Router> {
  125. create_mint_router_with_custom_cache(mint, Default::default()).await
  126. }
  127. /// Create mint [`Router`] with required endpoints for cashu mint with a custom
  128. /// backend for cache
  129. pub async fn create_mint_router_with_custom_cache(
  130. mint: Arc<Mint>,
  131. cache: HttpCache,
  132. ) -> Result<Router> {
  133. let state = MintState {
  134. mint,
  135. cache: Arc::new(cache),
  136. };
  137. let v1_router = Router::new()
  138. .route("/keys", get(get_keys))
  139. .route("/keysets", get(get_keysets))
  140. .route("/keys/:keyset_id", get(get_keyset_pubkeys))
  141. .route("/swap", post(cache_post_swap))
  142. .route("/mint/quote/bolt11", post(post_mint_bolt11_quote))
  143. .route(
  144. "/mint/quote/bolt11/:quote_id",
  145. get(get_check_mint_bolt11_quote),
  146. )
  147. .route("/mint/bolt11", post(cache_post_mint_bolt11))
  148. .route("/melt/quote/bolt11", post(post_melt_bolt11_quote))
  149. .route("/ws", get(ws_handler))
  150. .route(
  151. "/melt/quote/bolt11/:quote_id",
  152. get(get_check_melt_bolt11_quote),
  153. )
  154. .route("/melt/bolt11", post(cache_post_melt_bolt11))
  155. .route("/checkstate", post(post_check))
  156. .route("/info", get(get_mint_info))
  157. .route("/restore", post(post_restore));
  158. let mint_router = Router::new().nest("/v1", v1_router).with_state(state);
  159. Ok(mint_router)
  160. }