mod.rs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. //! Specific Subscription for the cdk crate
  2. use serde::de::DeserializeOwned;
  3. use serde::{Deserialize, Serialize};
  4. use uuid::Uuid;
  5. use super::PublicKey;
  6. use crate::nuts::{
  7. CurrencyUnit, MeltQuoteBolt11Response, MintQuoteBolt11Response, PaymentMethod, ProofState,
  8. };
  9. pub mod ws;
  10. /// Subscription Parameter according to the standard
  11. #[derive(Debug, Clone, Serialize, Eq, PartialEq, Hash, Deserialize)]
  12. #[serde(bound = "I: DeserializeOwned + Serialize")]
  13. pub struct Params<I> {
  14. /// Kind
  15. pub kind: Kind,
  16. /// Filters
  17. pub filters: Vec<String>,
  18. /// Subscription Id
  19. #[serde(rename = "subId")]
  20. pub id: I,
  21. }
  22. /// Check state Settings
  23. #[derive(Debug, Default, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
  24. pub struct SupportedSettings {
  25. /// Supported methods
  26. pub supported: Vec<SupportedMethods>,
  27. }
  28. /// Supported WS Methods
  29. #[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
  30. pub struct SupportedMethods {
  31. /// Payment Method
  32. pub method: PaymentMethod,
  33. /// Unit
  34. pub unit: CurrencyUnit,
  35. /// Command
  36. pub commands: Vec<String>,
  37. }
  38. impl SupportedMethods {
  39. /// Create [`SupportedMethods`]
  40. pub fn new(method: PaymentMethod, unit: CurrencyUnit) -> Self {
  41. Self {
  42. method,
  43. unit,
  44. commands: Vec::new(),
  45. }
  46. }
  47. }
  48. impl Default for SupportedMethods {
  49. fn default() -> Self {
  50. SupportedMethods {
  51. method: PaymentMethod::Bolt11,
  52. unit: CurrencyUnit::Sat,
  53. commands: vec![
  54. "bolt11_mint_quote".to_owned(),
  55. "bolt11_melt_quote".to_owned(),
  56. "proof_state".to_owned(),
  57. ],
  58. }
  59. }
  60. }
  61. #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
  62. #[serde(bound = "T: Serialize + DeserializeOwned")]
  63. #[serde(untagged)]
  64. /// Subscription response
  65. pub enum NotificationPayload<T> {
  66. /// Proof State
  67. ProofState(ProofState),
  68. /// Melt Quote Bolt11 Response
  69. MeltQuoteBolt11Response(MeltQuoteBolt11Response<T>),
  70. /// Mint Quote Bolt11 Response
  71. MintQuoteBolt11Response(MintQuoteBolt11Response<T>),
  72. }
  73. impl<T> From<ProofState> for NotificationPayload<T> {
  74. fn from(proof_state: ProofState) -> NotificationPayload<T> {
  75. NotificationPayload::ProofState(proof_state)
  76. }
  77. }
  78. impl<T> From<MeltQuoteBolt11Response<T>> for NotificationPayload<T> {
  79. fn from(melt_quote: MeltQuoteBolt11Response<T>) -> NotificationPayload<T> {
  80. NotificationPayload::MeltQuoteBolt11Response(melt_quote)
  81. }
  82. }
  83. impl<T> From<MintQuoteBolt11Response<T>> for NotificationPayload<T> {
  84. fn from(mint_quote: MintQuoteBolt11Response<T>) -> NotificationPayload<T> {
  85. NotificationPayload::MintQuoteBolt11Response(mint_quote)
  86. }
  87. }
  88. #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
  89. /// A parsed notification
  90. pub enum Notification {
  91. /// ProofState id is a Pubkey
  92. ProofState(PublicKey),
  93. /// MeltQuote id is an Uuid
  94. MeltQuoteBolt11(Uuid),
  95. /// MintQuote id is an Uuid
  96. MintQuoteBolt11(Uuid),
  97. }
  98. /// Kind
  99. #[derive(Debug, Clone, Copy, Eq, Ord, PartialOrd, PartialEq, Hash, Serialize, Deserialize)]
  100. #[serde(rename_all = "snake_case")]
  101. pub enum Kind {
  102. /// Bolt 11 Melt Quote
  103. Bolt11MeltQuote,
  104. /// Bolt 11 Mint Quote
  105. Bolt11MintQuote,
  106. /// Proof State
  107. ProofState,
  108. }
  109. impl<I> AsRef<I> for Params<I> {
  110. fn as_ref(&self) -> &I {
  111. &self.id
  112. }
  113. }
  114. /// Parsing error
  115. #[derive(thiserror::Error, Debug)]
  116. pub enum Error {
  117. #[error("Uuid Error: {0}")]
  118. /// Uuid Error
  119. Uuid(#[from] uuid::Error),
  120. #[error("PublicKey Error: {0}")]
  121. /// PublicKey Error
  122. PublicKey(#[from] crate::nuts::nut01::Error),
  123. }