database.rs 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. //! CDK Database
  2. use std::collections::HashMap;
  3. use std::fmt::Debug;
  4. use async_trait::async_trait;
  5. use thiserror::Error;
  6. use uuid::Uuid;
  7. use crate::common::{LnKey, ProofInfo};
  8. use crate::mint::{self, MintKeySetInfo, MintQuote as MintMintQuote};
  9. use crate::mint_url::MintUrl;
  10. use crate::nuts::{
  11. BlindSignature, CurrencyUnit, Id, KeySetInfo, Keys, MeltBolt11Request, MeltQuoteState,
  12. MintInfo, MintQuoteState, Proof, Proofs, PublicKey, SpendingConditions, State,
  13. };
  14. use crate::wallet;
  15. use crate::wallet::MintQuote as WalletMintQuote;
  16. /// CDK_database error
  17. #[derive(Debug, Error)]
  18. pub enum Error {
  19. /// Database Error
  20. #[error(transparent)]
  21. Database(Box<dyn std::error::Error + Send + Sync>),
  22. /// DHKE error
  23. #[error(transparent)]
  24. DHKE(#[from] crate::dhke::Error),
  25. /// NUT00 Error
  26. #[error(transparent)]
  27. NUT00(#[from] crate::nuts::nut00::Error),
  28. /// NUT02 Error
  29. #[error(transparent)]
  30. NUT02(#[from] crate::nuts::nut02::Error),
  31. /// Serde Error
  32. #[error(transparent)]
  33. Serde(#[from] serde_json::Error),
  34. /// Unknown Quote
  35. #[error("Unknown Quote")]
  36. UnknownQuote,
  37. }
  38. /// Wallet Database trait
  39. #[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
  40. #[cfg_attr(not(target_arch = "wasm32"), async_trait)]
  41. pub trait WalletDatabase: Debug {
  42. /// Wallet Database Error
  43. type Err: Into<Error> + From<Error>;
  44. /// Add Mint to storage
  45. async fn add_mint(
  46. &self,
  47. mint_url: MintUrl,
  48. mint_info: Option<MintInfo>,
  49. ) -> Result<(), Self::Err>;
  50. /// Remove Mint from storage
  51. async fn remove_mint(&self, mint_url: MintUrl) -> Result<(), Self::Err>;
  52. /// Get mint from storage
  53. async fn get_mint(&self, mint_url: MintUrl) -> Result<Option<MintInfo>, Self::Err>;
  54. /// Get all mints from storage
  55. async fn get_mints(&self) -> Result<HashMap<MintUrl, Option<MintInfo>>, Self::Err>;
  56. /// Update mint url
  57. async fn update_mint_url(
  58. &self,
  59. old_mint_url: MintUrl,
  60. new_mint_url: MintUrl,
  61. ) -> Result<(), Self::Err>;
  62. /// Add mint keyset to storage
  63. async fn add_mint_keysets(
  64. &self,
  65. mint_url: MintUrl,
  66. keysets: Vec<KeySetInfo>,
  67. ) -> Result<(), Self::Err>;
  68. /// Get mint keysets for mint url
  69. async fn get_mint_keysets(
  70. &self,
  71. mint_url: MintUrl,
  72. ) -> Result<Option<Vec<KeySetInfo>>, Self::Err>;
  73. /// Get mint keyset by id
  74. async fn get_keyset_by_id(&self, keyset_id: &Id) -> Result<Option<KeySetInfo>, Self::Err>;
  75. /// Add mint quote to storage
  76. async fn add_mint_quote(&self, quote: WalletMintQuote) -> Result<(), Self::Err>;
  77. /// Get mint quote from storage
  78. async fn get_mint_quote(&self, quote_id: &str) -> Result<Option<WalletMintQuote>, Self::Err>;
  79. /// Get mint quotes from storage
  80. async fn get_mint_quotes(&self) -> Result<Vec<WalletMintQuote>, Self::Err>;
  81. /// Remove mint quote from storage
  82. async fn remove_mint_quote(&self, quote_id: &str) -> Result<(), Self::Err>;
  83. /// Add melt quote to storage
  84. async fn add_melt_quote(&self, quote: wallet::MeltQuote) -> Result<(), Self::Err>;
  85. /// Get melt quote from storage
  86. async fn get_melt_quote(&self, quote_id: &str) -> Result<Option<wallet::MeltQuote>, Self::Err>;
  87. /// Remove melt quote from storage
  88. async fn remove_melt_quote(&self, quote_id: &str) -> Result<(), Self::Err>;
  89. /// Add [`Keys`] to storage
  90. async fn add_keys(&self, keys: Keys) -> Result<(), Self::Err>;
  91. /// Get [`Keys`] from storage
  92. async fn get_keys(&self, id: &Id) -> Result<Option<Keys>, Self::Err>;
  93. /// Remove [`Keys`] from storage
  94. async fn remove_keys(&self, id: &Id) -> Result<(), Self::Err>;
  95. /// Update the proofs in storage by adding new proofs or removing proofs by
  96. /// their Y value.
  97. async fn update_proofs(
  98. &self,
  99. added: Vec<ProofInfo>,
  100. removed_ys: Vec<PublicKey>,
  101. ) -> Result<(), Self::Err>;
  102. /// Set proofs as pending in storage. Proofs are identified by their Y
  103. /// value.
  104. async fn set_pending_proofs(&self, ys: Vec<PublicKey>) -> Result<(), Self::Err>;
  105. /// Reserve proofs in storage. Proofs are identified by their Y value.
  106. async fn reserve_proofs(&self, ys: Vec<PublicKey>) -> Result<(), Self::Err>;
  107. /// Set proofs as unspent in storage. Proofs are identified by their Y
  108. /// value.
  109. async fn set_unspent_proofs(&self, ys: Vec<PublicKey>) -> Result<(), Self::Err>;
  110. /// Get proofs from storage
  111. async fn get_proofs(
  112. &self,
  113. mint_url: Option<MintUrl>,
  114. unit: Option<CurrencyUnit>,
  115. state: Option<Vec<State>>,
  116. spending_conditions: Option<Vec<SpendingConditions>>,
  117. ) -> Result<Vec<ProofInfo>, Self::Err>;
  118. /// Increment Keyset counter
  119. async fn increment_keyset_counter(&self, keyset_id: &Id, count: u32) -> Result<(), Self::Err>;
  120. /// Get current Keyset counter
  121. async fn get_keyset_counter(&self, keyset_id: &Id) -> Result<Option<u32>, Self::Err>;
  122. /// Get when nostr key was last checked
  123. async fn get_nostr_last_checked(
  124. &self,
  125. verifying_key: &PublicKey,
  126. ) -> Result<Option<u32>, Self::Err>;
  127. /// Update last checked time
  128. async fn add_nostr_last_checked(
  129. &self,
  130. verifying_key: PublicKey,
  131. last_checked: u32,
  132. ) -> Result<(), Self::Err>;
  133. }
  134. /// Mint Database trait
  135. #[async_trait]
  136. pub trait MintDatabase {
  137. /// Mint Database Error
  138. type Err: Into<Error> + From<Error>;
  139. /// Add Active Keyset
  140. async fn set_active_keyset(&self, unit: CurrencyUnit, id: Id) -> Result<(), Self::Err>;
  141. /// Get Active Keyset
  142. async fn get_active_keyset_id(&self, unit: &CurrencyUnit) -> Result<Option<Id>, Self::Err>;
  143. /// Get all Active Keyset
  144. async fn get_active_keysets(&self) -> Result<HashMap<CurrencyUnit, Id>, Self::Err>;
  145. /// Add [`MintMintQuote`]
  146. async fn add_mint_quote(&self, quote: MintMintQuote) -> Result<(), Self::Err>;
  147. /// Get [`MintMintQuote`]
  148. async fn get_mint_quote(&self, quote_id: &Uuid) -> Result<Option<MintMintQuote>, Self::Err>;
  149. /// Update state of [`MintMintQuote`]
  150. async fn update_mint_quote_state(
  151. &self,
  152. quote_id: &Uuid,
  153. state: MintQuoteState,
  154. ) -> Result<MintQuoteState, Self::Err>;
  155. /// Get all [`MintMintQuote`]s
  156. async fn get_mint_quote_by_request(
  157. &self,
  158. request: &str,
  159. ) -> Result<Option<MintMintQuote>, Self::Err>;
  160. /// Get all [`MintMintQuote`]s
  161. async fn get_mint_quote_by_request_lookup_id(
  162. &self,
  163. request_lookup_id: &str,
  164. ) -> Result<Option<MintMintQuote>, Self::Err>;
  165. /// Get Mint Quotes
  166. async fn get_mint_quotes(&self) -> Result<Vec<MintMintQuote>, Self::Err>;
  167. /// Remove [`MintMintQuote`]
  168. async fn remove_mint_quote(&self, quote_id: &Uuid) -> Result<(), Self::Err>;
  169. /// Add [`mint::MeltQuote`]
  170. async fn add_melt_quote(&self, quote: mint::MeltQuote) -> Result<(), Self::Err>;
  171. /// Get [`mint::MeltQuote`]
  172. async fn get_melt_quote(&self, quote_id: &Uuid) -> Result<Option<mint::MeltQuote>, Self::Err>;
  173. /// Update [`mint::MeltQuote`] state
  174. async fn update_melt_quote_state(
  175. &self,
  176. quote_id: &Uuid,
  177. state: MeltQuoteState,
  178. ) -> Result<MeltQuoteState, Self::Err>;
  179. /// Get all [`mint::MeltQuote`]s
  180. async fn get_melt_quotes(&self) -> Result<Vec<mint::MeltQuote>, Self::Err>;
  181. /// Remove [`mint::MeltQuote`]
  182. async fn remove_melt_quote(&self, quote_id: &Uuid) -> Result<(), Self::Err>;
  183. /// Add melt request
  184. async fn add_melt_request(
  185. &self,
  186. melt_request: MeltBolt11Request<Uuid>,
  187. ln_key: LnKey,
  188. ) -> Result<(), Self::Err>;
  189. /// Get melt request
  190. async fn get_melt_request(
  191. &self,
  192. quote_id: &Uuid,
  193. ) -> Result<Option<(MeltBolt11Request<Uuid>, LnKey)>, Self::Err>;
  194. /// Add [`MintKeySetInfo`]
  195. async fn add_keyset_info(&self, keyset: MintKeySetInfo) -> Result<(), Self::Err>;
  196. /// Get [`MintKeySetInfo`]
  197. async fn get_keyset_info(&self, id: &Id) -> Result<Option<MintKeySetInfo>, Self::Err>;
  198. /// Get [`MintKeySetInfo`]s
  199. async fn get_keyset_infos(&self) -> Result<Vec<MintKeySetInfo>, Self::Err>;
  200. /// Add spent [`Proofs`]
  201. async fn add_proofs(&self, proof: Proofs, quote_id: Option<Uuid>) -> Result<(), Self::Err>;
  202. /// Get [`Proofs`] by ys
  203. async fn get_proofs_by_ys(&self, ys: &[PublicKey]) -> Result<Vec<Option<Proof>>, Self::Err>;
  204. /// Get ys by quote id
  205. async fn get_proof_ys_by_quote_id(&self, quote_id: &Uuid) -> Result<Vec<PublicKey>, Self::Err>;
  206. /// Get [`Proofs`] state
  207. async fn get_proofs_states(&self, ys: &[PublicKey]) -> Result<Vec<Option<State>>, Self::Err>;
  208. /// Get [`Proofs`] state
  209. async fn update_proofs_states(
  210. &self,
  211. ys: &[PublicKey],
  212. proofs_state: State,
  213. ) -> Result<Vec<Option<State>>, Self::Err>;
  214. /// Get [`Proofs`] by state
  215. async fn get_proofs_by_keyset_id(
  216. &self,
  217. keyset_id: &Id,
  218. ) -> Result<(Proofs, Vec<Option<State>>), Self::Err>;
  219. /// Add [`BlindSignature`]
  220. async fn add_blind_signatures(
  221. &self,
  222. blinded_messages: &[PublicKey],
  223. blind_signatures: &[BlindSignature],
  224. quote_id: Option<Uuid>,
  225. ) -> Result<(), Self::Err>;
  226. /// Get [`BlindSignature`]s
  227. async fn get_blind_signatures(
  228. &self,
  229. blinded_messages: &[PublicKey],
  230. ) -> Result<Vec<Option<BlindSignature>>, Self::Err>;
  231. /// Get [`BlindSignature`]s for keyset_id
  232. async fn get_blind_signatures_for_keyset(
  233. &self,
  234. keyset_id: &Id,
  235. ) -> Result<Vec<BlindSignature>, Self::Err>;
  236. /// Get [`BlindSignature`]s for quote
  237. async fn get_blind_signatures_for_quote(
  238. &self,
  239. quote_id: &Uuid,
  240. ) -> Result<Vec<BlindSignature>, Self::Err>;
  241. }