mint_nut04.rs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393
  1. use std::collections::HashSet;
  2. use cdk_common::Id;
  3. use tracing::instrument;
  4. use uuid::Uuid;
  5. use super::{
  6. nut04, CurrencyUnit, Mint, MintQuote, MintQuoteBolt11Request, MintQuoteBolt11Response,
  7. NotificationPayload, PaymentMethod, PublicKey,
  8. };
  9. use crate::nuts::MintQuoteState;
  10. use crate::types::LnKey;
  11. use crate::util::unix_time;
  12. use crate::{Amount, Error};
  13. impl Mint {
  14. /// Checks that minting is enabled, request is supported unit and within range
  15. async fn check_mint_request_acceptable(
  16. &self,
  17. amount: Amount,
  18. unit: &CurrencyUnit,
  19. ) -> Result<(), Error> {
  20. let mint_info = self.localstore.get_mint_info().await?;
  21. let nut04 = &mint_info.nuts.nut04;
  22. if nut04.disabled {
  23. return Err(Error::MintingDisabled);
  24. }
  25. match nut04.get_settings(unit, &PaymentMethod::Bolt11) {
  26. Some(settings) => {
  27. if settings
  28. .max_amount
  29. .map_or(false, |max_amount| amount > max_amount)
  30. {
  31. return Err(Error::AmountOutofLimitRange(
  32. settings.min_amount.unwrap_or_default(),
  33. settings.max_amount.unwrap_or_default(),
  34. amount,
  35. ));
  36. }
  37. if settings
  38. .min_amount
  39. .map_or(false, |min_amount| amount < min_amount)
  40. {
  41. return Err(Error::AmountOutofLimitRange(
  42. settings.min_amount.unwrap_or_default(),
  43. settings.max_amount.unwrap_or_default(),
  44. amount,
  45. ));
  46. }
  47. }
  48. None => {
  49. return Err(Error::UnsupportedUnit);
  50. }
  51. }
  52. Ok(())
  53. }
  54. /// Create new mint bolt11 quote
  55. #[instrument(skip_all)]
  56. pub async fn get_mint_bolt11_quote(
  57. &self,
  58. mint_quote_request: MintQuoteBolt11Request,
  59. ) -> Result<MintQuoteBolt11Response<Uuid>, Error> {
  60. let MintQuoteBolt11Request {
  61. amount,
  62. unit,
  63. description,
  64. pubkey,
  65. } = mint_quote_request;
  66. self.check_mint_request_acceptable(amount, &unit).await?;
  67. let ln = self
  68. .ln
  69. .get(&LnKey::new(unit.clone(), PaymentMethod::Bolt11))
  70. .ok_or_else(|| {
  71. tracing::info!("Bolt11 mint request for unsupported unit");
  72. Error::UnsupportedUnit
  73. })?;
  74. let mint_ttl = self.localstore.get_quote_ttl().await?.mint_ttl;
  75. let quote_expiry = unix_time() + mint_ttl;
  76. if description.is_some() && !ln.get_settings().invoice_description {
  77. tracing::error!("Backend does not support invoice description");
  78. return Err(Error::InvoiceDescriptionUnsupported);
  79. }
  80. let create_invoice_response = ln
  81. .create_invoice(
  82. amount,
  83. &unit,
  84. description.unwrap_or("".to_string()),
  85. quote_expiry,
  86. )
  87. .await
  88. .map_err(|err| {
  89. tracing::error!("Could not create invoice: {}", err);
  90. Error::InvalidPaymentRequest
  91. })?;
  92. let quote = MintQuote::new(
  93. create_invoice_response.request.to_string(),
  94. unit.clone(),
  95. amount,
  96. create_invoice_response.expiry.unwrap_or(0),
  97. create_invoice_response.request_lookup_id.clone(),
  98. pubkey,
  99. );
  100. tracing::debug!(
  101. "New mint quote {} for {} {} with request id {}",
  102. quote.id,
  103. amount,
  104. unit,
  105. create_invoice_response.request_lookup_id,
  106. );
  107. self.localstore.add_mint_quote(quote.clone()).await?;
  108. let quote: MintQuoteBolt11Response<Uuid> = quote.into();
  109. self.pubsub_manager
  110. .broadcast(NotificationPayload::MintQuoteBolt11Response(quote.clone()));
  111. Ok(quote)
  112. }
  113. /// Check mint quote
  114. #[instrument(skip(self))]
  115. pub async fn check_mint_quote(
  116. &self,
  117. quote_id: &Uuid,
  118. ) -> Result<MintQuoteBolt11Response<Uuid>, Error> {
  119. let quote = self
  120. .localstore
  121. .get_mint_quote(quote_id)
  122. .await?
  123. .ok_or(Error::UnknownQuote)?;
  124. // Since the pending state is not part of the NUT it should not be part of the
  125. // response. In practice the wallet should not be checking the state of
  126. // a quote while waiting for the mint response.
  127. let state = match quote.state {
  128. MintQuoteState::Pending => MintQuoteState::Paid,
  129. s => s,
  130. };
  131. Ok(MintQuoteBolt11Response {
  132. quote: quote.id,
  133. request: quote.request,
  134. state,
  135. expiry: Some(quote.expiry),
  136. pubkey: quote.pubkey,
  137. })
  138. }
  139. /// Update mint quote
  140. #[instrument(skip_all)]
  141. pub async fn update_mint_quote(&self, quote: MintQuote) -> Result<(), Error> {
  142. self.localstore.add_mint_quote(quote).await?;
  143. Ok(())
  144. }
  145. /// Get mint quotes
  146. #[instrument(skip_all)]
  147. pub async fn mint_quotes(&self) -> Result<Vec<MintQuote>, Error> {
  148. let quotes = self.localstore.get_mint_quotes().await?;
  149. Ok(quotes)
  150. }
  151. /// Get pending mint quotes
  152. #[instrument(skip_all)]
  153. pub async fn get_pending_mint_quotes(&self) -> Result<Vec<MintQuote>, Error> {
  154. let mint_quotes = self.localstore.get_mint_quotes().await?;
  155. Ok(mint_quotes
  156. .into_iter()
  157. .filter(|p| p.state == MintQuoteState::Pending)
  158. .collect())
  159. }
  160. /// Get pending mint quotes
  161. #[instrument(skip_all)]
  162. pub async fn get_unpaid_mint_quotes(&self) -> Result<Vec<MintQuote>, Error> {
  163. let mint_quotes = self.localstore.get_mint_quotes().await?;
  164. Ok(mint_quotes
  165. .into_iter()
  166. .filter(|p| p.state == MintQuoteState::Unpaid)
  167. .collect())
  168. }
  169. /// Remove mint quote
  170. #[instrument(skip_all)]
  171. pub async fn remove_mint_quote(&self, quote_id: &Uuid) -> Result<(), Error> {
  172. self.localstore.remove_mint_quote(quote_id).await?;
  173. Ok(())
  174. }
  175. /// Flag mint quote as paid
  176. #[instrument(skip_all)]
  177. pub async fn pay_mint_quote_for_request_id(
  178. &self,
  179. request_lookup_id: &str,
  180. ) -> Result<(), Error> {
  181. if let Ok(Some(mint_quote)) = self
  182. .localstore
  183. .get_mint_quote_by_request_lookup_id(request_lookup_id)
  184. .await
  185. {
  186. tracing::debug!(
  187. "Received payment notification for mint quote {}",
  188. mint_quote.id
  189. );
  190. if mint_quote.state != MintQuoteState::Issued
  191. && mint_quote.state != MintQuoteState::Paid
  192. {
  193. let unix_time = unix_time();
  194. if mint_quote.expiry < unix_time {
  195. tracing::warn!(
  196. "Mint quote {} paid at {} expired at {}, leaving current state",
  197. mint_quote.id,
  198. mint_quote.expiry,
  199. unix_time,
  200. );
  201. return Err(Error::ExpiredQuote(mint_quote.expiry, unix_time));
  202. }
  203. tracing::debug!(
  204. "Marking quote {} paid by lookup id {}",
  205. mint_quote.id,
  206. request_lookup_id
  207. );
  208. self.localstore
  209. .update_mint_quote_state(&mint_quote.id, MintQuoteState::Paid)
  210. .await?;
  211. } else {
  212. tracing::debug!(
  213. "{} Quote already {} continuing",
  214. mint_quote.id,
  215. mint_quote.state
  216. );
  217. }
  218. self.pubsub_manager
  219. .mint_quote_bolt11_status(mint_quote, MintQuoteState::Paid);
  220. }
  221. Ok(())
  222. }
  223. /// Process mint request
  224. #[instrument(skip_all)]
  225. pub async fn process_mint_request(
  226. &self,
  227. mint_request: nut04::MintBolt11Request<Uuid>,
  228. ) -> Result<nut04::MintBolt11Response, Error> {
  229. let mint_quote =
  230. if let Some(mint_quote) = self.localstore.get_mint_quote(&mint_request.quote).await? {
  231. mint_quote
  232. } else {
  233. return Err(Error::UnknownQuote);
  234. };
  235. let state = self
  236. .localstore
  237. .update_mint_quote_state(&mint_request.quote, MintQuoteState::Pending)
  238. .await?;
  239. match state {
  240. MintQuoteState::Unpaid => {
  241. let _state = self
  242. .localstore
  243. .update_mint_quote_state(&mint_request.quote, MintQuoteState::Unpaid)
  244. .await?;
  245. return Err(Error::UnpaidQuote);
  246. }
  247. MintQuoteState::Pending => {
  248. return Err(Error::PendingQuote);
  249. }
  250. MintQuoteState::Issued => {
  251. let _state = self
  252. .localstore
  253. .update_mint_quote_state(&mint_request.quote, MintQuoteState::Issued)
  254. .await?;
  255. return Err(Error::IssuedQuote);
  256. }
  257. MintQuoteState::Paid => (),
  258. }
  259. // If the there is a public key provoided in mint quote request
  260. // verify the signature is provided for the mint request
  261. if let Some(pubkey) = mint_quote.pubkey {
  262. mint_request.verify_signature(pubkey)?;
  263. }
  264. // We check the the total value of blinded messages == mint quote
  265. if mint_request.total_amount()? != mint_quote.amount {
  266. return Err(Error::TransactionUnbalanced(
  267. mint_quote.amount.into(),
  268. mint_request.total_amount()?.into(),
  269. 0,
  270. ));
  271. }
  272. let keyset_ids: HashSet<Id> = mint_request.outputs.iter().map(|b| b.keyset_id).collect();
  273. let mut keyset_units = HashSet::new();
  274. for keyset_id in keyset_ids {
  275. let keyset = self.keyset(&keyset_id).await?.ok_or(Error::UnknownKeySet)?;
  276. keyset_units.insert(keyset.unit);
  277. }
  278. if keyset_units.len() != 1 {
  279. tracing::debug!("Client attempted to mint with outputs of multiple units");
  280. return Err(Error::UnsupportedUnit);
  281. }
  282. if keyset_units.iter().next().expect("Checked len above") != &mint_quote.unit {
  283. tracing::debug!("Client attempted to mint with unit not in quote");
  284. return Err(Error::UnsupportedUnit);
  285. }
  286. let blinded_messages: Vec<PublicKey> = mint_request
  287. .outputs
  288. .iter()
  289. .map(|b| b.blinded_secret)
  290. .collect();
  291. if self
  292. .localstore
  293. .get_blind_signatures(&blinded_messages)
  294. .await?
  295. .iter()
  296. .flatten()
  297. .next()
  298. .is_some()
  299. {
  300. tracing::info!("Output has already been signed",);
  301. tracing::info!(
  302. "Mint {} did not succeed returning quote to Paid state",
  303. mint_request.quote
  304. );
  305. self.localstore
  306. .update_mint_quote_state(&mint_request.quote, MintQuoteState::Paid)
  307. .await?;
  308. return Err(Error::BlindedMessageAlreadySigned);
  309. }
  310. let mut blind_signatures = Vec::with_capacity(mint_request.outputs.len());
  311. for blinded_message in mint_request.outputs.iter() {
  312. let blind_signature = self.blind_sign(blinded_message).await?;
  313. blind_signatures.push(blind_signature);
  314. }
  315. self.localstore
  316. .add_blind_signatures(
  317. &mint_request
  318. .outputs
  319. .iter()
  320. .map(|p| p.blinded_secret)
  321. .collect::<Vec<PublicKey>>(),
  322. &blind_signatures,
  323. Some(mint_request.quote),
  324. )
  325. .await?;
  326. self.localstore
  327. .update_mint_quote_state(&mint_request.quote, MintQuoteState::Issued)
  328. .await?;
  329. self.pubsub_manager
  330. .mint_quote_bolt11_status(mint_quote, MintQuoteState::Issued);
  331. Ok(nut04::MintBolt11Response {
  332. signatures: blind_signatures,
  333. })
  334. }
  335. }