error.rs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547
  1. //! Errors
  2. use std::fmt;
  3. use cashu::{CurrencyUnit, PaymentMethod};
  4. use serde::{Deserialize, Deserializer, Serialize, Serializer};
  5. use serde_json::Value;
  6. use thiserror::Error;
  7. use crate::nuts::Id;
  8. use crate::util::hex;
  9. #[cfg(feature = "wallet")]
  10. use crate::wallet::WalletKey;
  11. use crate::Amount;
  12. /// CDK Error
  13. #[derive(Debug, Error)]
  14. pub enum Error {
  15. /// Mint does not have a key for amount
  16. #[error("No Key for Amount")]
  17. AmountKey,
  18. /// Keyset is not known
  19. #[error("Keyset id not known: `{0}`")]
  20. KeysetUnknown(Id),
  21. /// Unsupported unit
  22. #[error("Unit unsupported")]
  23. UnsupportedUnit,
  24. /// Payment failed
  25. #[error("Payment failed")]
  26. PaymentFailed,
  27. /// Payment pending
  28. #[error("Payment pending")]
  29. PaymentPending,
  30. /// Invoice already paid
  31. #[error("Request already paid")]
  32. RequestAlreadyPaid,
  33. /// Invalid payment request
  34. #[error("Invalid payment request")]
  35. InvalidPaymentRequest,
  36. /// Bolt11 invoice does not have amount
  37. #[error("Invoice Amount undefined")]
  38. InvoiceAmountUndefined,
  39. /// Split Values must be less then or equal to amount
  40. #[error("Split Values must be less then or equal to amount")]
  41. SplitValuesGreater,
  42. /// Amount overflow
  43. #[error("Amount Overflow")]
  44. AmountOverflow,
  45. /// Witness missing or invalid
  46. #[error("Signature missing or invalid")]
  47. SignatureMissingOrInvalid,
  48. /// Amountless Invoice Not supported
  49. #[error("Amount Less Invoice is not allowed")]
  50. AmountLessNotAllowed,
  51. /// Multi-Part Internal Melt Quotes are not supported
  52. #[error("Multi-Part Internal Melt Quotes are not supported")]
  53. InternalMultiPartMeltQuote,
  54. /// Multi-Part Payment not supported for unit and method
  55. #[error("Multi-Part payment is not supported for unit `{0}` and method `{1}`")]
  56. MppUnitMethodNotSupported(CurrencyUnit, PaymentMethod),
  57. // Mint Errors
  58. /// Minting is disabled
  59. #[error("Minting is disabled")]
  60. MintingDisabled,
  61. /// Quote is not known
  62. #[error("Unknown quote")]
  63. UnknownQuote,
  64. /// Quote is expired
  65. #[error("Expired quote: Expired: `{0}`, Time: `{1}`")]
  66. ExpiredQuote(u64, u64),
  67. /// Amount is outside of allowed range
  68. #[error("Amount must be between `{0}` and `{1}` is `{2}`")]
  69. AmountOutofLimitRange(Amount, Amount, Amount),
  70. /// Quote is not paiud
  71. #[error("Quote not paid")]
  72. UnpaidQuote,
  73. /// Quote is pending
  74. #[error("Quote pending")]
  75. PendingQuote,
  76. /// ecash already issued for quote
  77. #[error("Quote already issued")]
  78. IssuedQuote,
  79. /// Quote has already been paid
  80. #[error("Quote is already paid")]
  81. PaidQuote,
  82. /// Payment state is unknown
  83. #[error("Payment state is unknown")]
  84. UnknownPaymentState,
  85. /// Melting is disabled
  86. #[error("Minting is disabled")]
  87. MeltingDisabled,
  88. /// Unknown Keyset
  89. #[error("Unknown Keyset")]
  90. UnknownKeySet,
  91. /// BlindedMessage is already signed
  92. #[error("Blinded Message is already signed")]
  93. BlindedMessageAlreadySigned,
  94. /// Inactive Keyset
  95. #[error("Inactive Keyset")]
  96. InactiveKeyset,
  97. /// Transaction unbalanced
  98. #[error("Inputs: `{0}`, Outputs: `{1}`, Expected Fee: `{2}`")]
  99. TransactionUnbalanced(u64, u64, u64),
  100. /// Duplicate proofs provided
  101. #[error("Duplicate proofs")]
  102. DuplicateProofs,
  103. /// Multiple units provided
  104. #[error("Cannot have multiple units")]
  105. MultipleUnits,
  106. /// Sig all cannot be used in melt
  107. #[error("Sig all cannot be used in melt")]
  108. SigAllUsedInMelt,
  109. /// Token is already spent
  110. #[error("Token Already Spent")]
  111. TokenAlreadySpent,
  112. /// Token is already pending
  113. #[error("Token Pending")]
  114. TokenPending,
  115. /// Internal Error
  116. #[error("Internal Error")]
  117. Internal,
  118. // Wallet Errors
  119. /// P2PK spending conditions not met
  120. #[error("P2PK condition not met `{0}`")]
  121. P2PKConditionsNotMet(String),
  122. /// Spending Locktime not provided
  123. #[error("Spending condition locktime not provided")]
  124. LocktimeNotProvided,
  125. /// Invalid Spending Conditions
  126. #[error("Invalid spending conditions: `{0}`")]
  127. InvalidSpendConditions(String),
  128. /// Incorrect Wallet
  129. #[error("Incorrect wallet: `{0}`")]
  130. IncorrectWallet(String),
  131. /// Unknown Wallet
  132. #[error("Unknown wallet: `{0}`")]
  133. #[cfg(feature = "wallet")]
  134. UnknownWallet(WalletKey),
  135. /// Max Fee Ecxeded
  136. #[error("Max fee exceeded")]
  137. MaxFeeExceeded,
  138. /// Url path segments could not be joined
  139. #[error("Url path segments could not be joined")]
  140. UrlPathSegments,
  141. /// Unknown error response
  142. #[error("Unknown error response: `{0}`")]
  143. UnknownErrorResponse(String),
  144. /// Invalid DLEQ proof
  145. #[error("Could not verify DLEQ proof")]
  146. CouldNotVerifyDleq,
  147. /// Incorrect Mint
  148. /// Token does not match wallet mint
  149. #[error("Token does not match wallet mint")]
  150. IncorrectMint,
  151. /// Receive can only be used with tokens from single mint
  152. #[error("Multiple mint tokens not supported by receive. Please deconstruct the token and use receive with_proof")]
  153. MultiMintTokenNotSupported,
  154. /// Preimage not provided
  155. #[error("Preimage not provided")]
  156. PreimageNotProvided,
  157. /// Insufficient Funds
  158. #[error("Insufficient funds")]
  159. InsufficientFunds,
  160. /// No active keyset
  161. #[error("No active keyset")]
  162. NoActiveKeyset,
  163. /// Incorrect quote amount
  164. #[error("Incorrect quote amount")]
  165. IncorrectQuoteAmount,
  166. /// Invoice Description not supported
  167. #[error("Invoice Description not supported")]
  168. InvoiceDescriptionUnsupported,
  169. /// Custom Error
  170. #[error("`{0}`")]
  171. Custom(String),
  172. // External Error conversions
  173. /// Parse invoice error
  174. #[error(transparent)]
  175. Invoice(#[from] lightning_invoice::ParseOrSemanticError),
  176. /// Bip32 error
  177. #[error(transparent)]
  178. Bip32(#[from] bitcoin::bip32::Error),
  179. /// Parse int error
  180. #[error(transparent)]
  181. ParseInt(#[from] std::num::ParseIntError),
  182. /// Parse 9rl Error
  183. #[error(transparent)]
  184. UrlParseError(#[from] url::ParseError),
  185. /// Utf8 parse error
  186. #[error(transparent)]
  187. Utf8ParseError(#[from] std::string::FromUtf8Error),
  188. /// Serde Json error
  189. #[error(transparent)]
  190. SerdeJsonError(#[from] serde_json::Error),
  191. /// Base64 error
  192. #[error(transparent)]
  193. Base64Error(#[from] bitcoin::base64::DecodeError),
  194. /// From hex error
  195. #[error(transparent)]
  196. HexError(#[from] hex::Error),
  197. /// Http transport error
  198. #[error("Http transport error: {0}")]
  199. HttpError(String),
  200. // Crate error conversions
  201. /// Cashu Url Error
  202. #[error(transparent)]
  203. CashuUrl(#[from] crate::mint_url::Error),
  204. /// Secret error
  205. #[error(transparent)]
  206. Secret(#[from] crate::secret::Error),
  207. /// Amount Error
  208. #[error(transparent)]
  209. AmountError(#[from] crate::amount::Error),
  210. /// DHKE Error
  211. #[error(transparent)]
  212. DHKE(#[from] crate::dhke::Error),
  213. /// NUT00 Error
  214. #[error(transparent)]
  215. NUT00(#[from] crate::nuts::nut00::Error),
  216. /// Nut01 error
  217. #[error(transparent)]
  218. NUT01(#[from] crate::nuts::nut01::Error),
  219. /// NUT02 error
  220. #[error(transparent)]
  221. NUT02(#[from] crate::nuts::nut02::Error),
  222. /// NUT03 error
  223. #[error(transparent)]
  224. NUT03(#[from] crate::nuts::nut03::Error),
  225. /// NUT04 error
  226. #[error(transparent)]
  227. NUT04(#[from] crate::nuts::nut04::Error),
  228. /// NUT05 error
  229. #[error(transparent)]
  230. NUT05(#[from] crate::nuts::nut05::Error),
  231. /// NUT11 Error
  232. #[error(transparent)]
  233. NUT11(#[from] crate::nuts::nut11::Error),
  234. /// NUT12 Error
  235. #[error(transparent)]
  236. NUT12(#[from] crate::nuts::nut12::Error),
  237. /// NUT13 Error
  238. #[error(transparent)]
  239. #[cfg(feature = "wallet")]
  240. NUT13(#[from] crate::nuts::nut13::Error),
  241. /// NUT14 Error
  242. #[error(transparent)]
  243. NUT14(#[from] crate::nuts::nut14::Error),
  244. /// NUT18 Error
  245. #[error(transparent)]
  246. NUT18(#[from] crate::nuts::nut18::Error),
  247. /// NUT20 Error
  248. #[error(transparent)]
  249. NUT20(#[from] crate::nuts::nut20::Error),
  250. /// Database Error
  251. #[error(transparent)]
  252. Database(#[from] crate::database::Error),
  253. /// Lightning Error
  254. #[error(transparent)]
  255. #[cfg(feature = "mint")]
  256. Lightning(#[from] crate::lightning::Error),
  257. }
  258. /// CDK Error Response
  259. ///
  260. /// See NUT definition in [00](https://github.com/cashubtc/nuts/blob/main/00.md)
  261. #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
  262. #[cfg_attr(feature = "swagger", derive(utoipa::ToSchema))]
  263. pub struct ErrorResponse {
  264. /// Error Code
  265. pub code: ErrorCode,
  266. /// Human readable Text
  267. pub error: Option<String>,
  268. /// Longer human readable description
  269. pub detail: Option<String>,
  270. }
  271. impl fmt::Display for ErrorResponse {
  272. fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
  273. write!(
  274. f,
  275. "code: {}, error: {}, detail: {}",
  276. self.code,
  277. self.error.clone().unwrap_or_default(),
  278. self.detail.clone().unwrap_or_default()
  279. )
  280. }
  281. }
  282. impl ErrorResponse {
  283. /// Create new [`ErrorResponse`]
  284. pub fn new(code: ErrorCode, error: Option<String>, detail: Option<String>) -> Self {
  285. Self {
  286. code,
  287. error,
  288. detail,
  289. }
  290. }
  291. /// Error response from json
  292. pub fn from_json(json: &str) -> Result<Self, serde_json::Error> {
  293. let value: Value = serde_json::from_str(json)?;
  294. Self::from_value(value)
  295. }
  296. /// Error response from json Value
  297. pub fn from_value(value: Value) -> Result<Self, serde_json::Error> {
  298. match serde_json::from_value::<ErrorResponse>(value.clone()) {
  299. Ok(res) => Ok(res),
  300. Err(_) => Ok(Self {
  301. code: ErrorCode::Unknown(999),
  302. error: Some(value.to_string()),
  303. detail: None,
  304. }),
  305. }
  306. }
  307. }
  308. impl From<Error> for ErrorResponse {
  309. fn from(err: Error) -> ErrorResponse {
  310. match err {
  311. Error::TokenAlreadySpent => ErrorResponse {
  312. code: ErrorCode::TokenAlreadySpent,
  313. error: Some(err.to_string()),
  314. detail: None,
  315. },
  316. Error::UnsupportedUnit => ErrorResponse {
  317. code: ErrorCode::UnsupportedUnit,
  318. error: Some(err.to_string()),
  319. detail: None,
  320. },
  321. Error::PaymentFailed => ErrorResponse {
  322. code: ErrorCode::LightningError,
  323. error: Some(err.to_string()),
  324. detail: None,
  325. },
  326. Error::RequestAlreadyPaid => ErrorResponse {
  327. code: ErrorCode::InvoiceAlreadyPaid,
  328. error: Some("Invoice already paid.".to_string()),
  329. detail: None,
  330. },
  331. Error::TransactionUnbalanced(inputs_total, outputs_total, fee_expected) => {
  332. ErrorResponse {
  333. code: ErrorCode::TransactionUnbalanced,
  334. error: Some(format!(
  335. "Inputs: {}, Outputs: {}, expected_fee: {}",
  336. inputs_total, outputs_total, fee_expected,
  337. )),
  338. detail: Some("Transaction inputs should equal outputs less fee".to_string()),
  339. }
  340. }
  341. Error::MintingDisabled => ErrorResponse {
  342. code: ErrorCode::MintingDisabled,
  343. error: Some(err.to_string()),
  344. detail: None,
  345. },
  346. Error::BlindedMessageAlreadySigned => ErrorResponse {
  347. code: ErrorCode::BlindedMessageAlreadySigned,
  348. error: Some(err.to_string()),
  349. detail: None,
  350. },
  351. Error::InsufficientFunds => ErrorResponse {
  352. code: ErrorCode::TransactionUnbalanced,
  353. error: Some(err.to_string()),
  354. detail: None,
  355. },
  356. Error::AmountOutofLimitRange(_min, _max, _amount) => ErrorResponse {
  357. code: ErrorCode::AmountOutofLimitRange,
  358. error: Some(err.to_string()),
  359. detail: None,
  360. },
  361. Error::ExpiredQuote(_, _) => ErrorResponse {
  362. code: ErrorCode::QuoteExpired,
  363. error: Some(err.to_string()),
  364. detail: None,
  365. },
  366. Error::PendingQuote => ErrorResponse {
  367. code: ErrorCode::QuotePending,
  368. error: Some(err.to_string()),
  369. detail: None,
  370. },
  371. Error::TokenPending => ErrorResponse {
  372. code: ErrorCode::TokenPending,
  373. error: Some(err.to_string()),
  374. detail: None,
  375. },
  376. Error::NUT20(err) => ErrorResponse {
  377. code: ErrorCode::WitnessMissingOrInvalid,
  378. error: Some(err.to_string()),
  379. detail: None,
  380. },
  381. _ => ErrorResponse {
  382. code: ErrorCode::Unknown(9999),
  383. error: Some(err.to_string()),
  384. detail: None,
  385. },
  386. }
  387. }
  388. }
  389. impl From<ErrorResponse> for Error {
  390. fn from(err: ErrorResponse) -> Error {
  391. match err.code {
  392. ErrorCode::TokenAlreadySpent => Self::TokenAlreadySpent,
  393. ErrorCode::QuoteNotPaid => Self::UnpaidQuote,
  394. ErrorCode::QuotePending => Self::PendingQuote,
  395. ErrorCode::QuoteExpired => Self::ExpiredQuote(0, 0),
  396. ErrorCode::KeysetNotFound => Self::UnknownKeySet,
  397. ErrorCode::KeysetInactive => Self::InactiveKeyset,
  398. ErrorCode::BlindedMessageAlreadySigned => Self::BlindedMessageAlreadySigned,
  399. ErrorCode::UnsupportedUnit => Self::UnsupportedUnit,
  400. ErrorCode::TransactionUnbalanced => Self::TransactionUnbalanced(0, 0, 0),
  401. ErrorCode::MintingDisabled => Self::MintingDisabled,
  402. ErrorCode::InvoiceAlreadyPaid => Self::RequestAlreadyPaid,
  403. ErrorCode::TokenNotVerified => Self::DHKE(crate::dhke::Error::TokenNotVerified),
  404. ErrorCode::LightningError => Self::PaymentFailed,
  405. ErrorCode::AmountOutofLimitRange => {
  406. Self::AmountOutofLimitRange(Amount::default(), Amount::default(), Amount::default())
  407. }
  408. ErrorCode::TokenPending => Self::TokenPending,
  409. ErrorCode::WitnessMissingOrInvalid => Self::SignatureMissingOrInvalid,
  410. _ => Self::UnknownErrorResponse(err.to_string()),
  411. }
  412. }
  413. }
  414. /// Possible Error Codes
  415. #[derive(Debug, Clone, Copy, Hash, PartialEq, Eq)]
  416. #[cfg_attr(feature = "swagger", derive(utoipa::ToSchema))]
  417. pub enum ErrorCode {
  418. /// Token is already spent
  419. TokenAlreadySpent,
  420. /// Token Pending
  421. TokenPending,
  422. /// Quote is not paid
  423. QuoteNotPaid,
  424. /// Quote is not expired
  425. QuoteExpired,
  426. /// Quote Pending
  427. QuotePending,
  428. /// Keyset is not found
  429. KeysetNotFound,
  430. /// Keyset inactive
  431. KeysetInactive,
  432. /// Blinded Message Already signed
  433. BlindedMessageAlreadySigned,
  434. /// Unsupported unit
  435. UnsupportedUnit,
  436. /// Token already issed for quote
  437. TokensAlreadyIssued,
  438. /// Minting Disabled
  439. MintingDisabled,
  440. /// Invoice Already Paid
  441. InvoiceAlreadyPaid,
  442. /// Token Not Verified
  443. TokenNotVerified,
  444. /// Lightning Error
  445. LightningError,
  446. /// Unbalanced Error
  447. TransactionUnbalanced,
  448. /// Amount outside of allowed range
  449. AmountOutofLimitRange,
  450. /// Witness missing or invalid
  451. WitnessMissingOrInvalid,
  452. /// Unknown error code
  453. Unknown(u16),
  454. }
  455. impl ErrorCode {
  456. /// Error code from u16
  457. pub fn from_code(code: u16) -> Self {
  458. match code {
  459. 10002 => Self::BlindedMessageAlreadySigned,
  460. 10003 => Self::TokenNotVerified,
  461. 11001 => Self::TokenAlreadySpent,
  462. 11002 => Self::TransactionUnbalanced,
  463. 11005 => Self::UnsupportedUnit,
  464. 11006 => Self::AmountOutofLimitRange,
  465. 11007 => Self::TokenPending,
  466. 12001 => Self::KeysetNotFound,
  467. 12002 => Self::KeysetInactive,
  468. 20000 => Self::LightningError,
  469. 20001 => Self::QuoteNotPaid,
  470. 20002 => Self::TokensAlreadyIssued,
  471. 20003 => Self::MintingDisabled,
  472. 20005 => Self::QuotePending,
  473. 20006 => Self::InvoiceAlreadyPaid,
  474. 20007 => Self::QuoteExpired,
  475. 20008 => Self::WitnessMissingOrInvalid,
  476. _ => Self::Unknown(code),
  477. }
  478. }
  479. /// Error code to u16
  480. pub fn to_code(&self) -> u16 {
  481. match self {
  482. Self::BlindedMessageAlreadySigned => 10002,
  483. Self::TokenNotVerified => 10003,
  484. Self::TokenAlreadySpent => 11001,
  485. Self::TransactionUnbalanced => 11002,
  486. Self::UnsupportedUnit => 11005,
  487. Self::AmountOutofLimitRange => 11006,
  488. Self::TokenPending => 11007,
  489. Self::KeysetNotFound => 12001,
  490. Self::KeysetInactive => 12002,
  491. Self::LightningError => 20000,
  492. Self::QuoteNotPaid => 20001,
  493. Self::TokensAlreadyIssued => 20002,
  494. Self::MintingDisabled => 20003,
  495. Self::QuotePending => 20005,
  496. Self::InvoiceAlreadyPaid => 20006,
  497. Self::QuoteExpired => 20007,
  498. Self::WitnessMissingOrInvalid => 20008,
  499. Self::Unknown(code) => *code,
  500. }
  501. }
  502. }
  503. impl Serialize for ErrorCode {
  504. fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
  505. where
  506. S: Serializer,
  507. {
  508. serializer.serialize_u16(self.to_code())
  509. }
  510. }
  511. impl<'de> Deserialize<'de> for ErrorCode {
  512. fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
  513. where
  514. D: Deserializer<'de>,
  515. {
  516. let code = u16::deserialize(deserializer)?;
  517. Ok(ErrorCode::from_code(code))
  518. }
  519. }
  520. impl fmt::Display for ErrorCode {
  521. fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
  522. write!(f, "{}", self.to_code())
  523. }
  524. }