nut19.rs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //! NUT-19: Cached Responses
  2. //!
  3. //! <https://github.com/cashubtc/nuts/blob/main/19.md>
  4. use serde::{Deserialize, Serialize};
  5. /// Mint settings
  6. #[derive(Debug, Clone, PartialEq, Eq, Hash, Default, Serialize, Deserialize)]
  7. #[cfg_attr(feature = "swagger", derive(utoipa::ToSchema))]
  8. pub struct Settings {
  9. /// Number of seconds the responses are cached for
  10. pub ttl: Option<u64>,
  11. /// Cached endpoints
  12. pub cached_endpoints: Vec<CachedEndpoint>,
  13. }
  14. /// List of the methods and paths for which caching is enabled
  15. #[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
  16. pub struct CachedEndpoint {
  17. /// HTTP Method
  18. pub method: Method,
  19. /// Route path
  20. pub path: Path,
  21. }
  22. impl CachedEndpoint {
  23. /// Create [`CachedEndpoint`]
  24. pub fn new(method: Method, path: Path) -> Self {
  25. Self { method, path }
  26. }
  27. }
  28. /// HTTP method
  29. #[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
  30. #[serde(rename_all = "UPPERCASE")]
  31. pub enum Method {
  32. /// Get
  33. Get,
  34. /// POST
  35. Post,
  36. }
  37. /// Route path
  38. #[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
  39. pub enum Path {
  40. /// Bolt11 Mint
  41. #[serde(rename = "/v1/mint/bolt11")]
  42. MintBolt11,
  43. /// Bolt11 Melt
  44. #[serde(rename = "/v1/melt/bolt11")]
  45. MeltBolt11,
  46. /// Swap
  47. #[serde(rename = "/v1/swap")]
  48. Swap,
  49. }