You've already forked AstralRinth
* Taplo and typos in CI * Clean up Cargo.toml files * Fix CI * Fix CI * Run typos in CI * Loosen typos a bit * Fix typos * Fix taplo * Switch to Tombi * Fix Tombi errors * Remove unused typos config * Tombi fmt * Remove extraneous cargo fmt * fix typos
135 lines
2.9 KiB
Rust
135 lines
2.9 KiB
Rust
#![doc = include_str!("../README.md")]
|
|
|
|
mod account;
|
|
mod error;
|
|
mod organization;
|
|
mod payout;
|
|
mod util;
|
|
|
|
pub use {account::*, error::*, organization::*, payout::*};
|
|
|
|
use rust_decimal::Decimal;
|
|
use secrecy::SecretString;
|
|
use serde::{Deserialize, Serialize};
|
|
use std::ops::Deref;
|
|
use uuid::Uuid;
|
|
|
|
pub const API_URL: &str = "https://api.muralpay.com";
|
|
pub const SANDBOX_API_URL: &str = "https://api-staging.muralpay.com";
|
|
|
|
#[derive(Debug)]
|
|
pub struct MuralPay {
|
|
pub http: reqwest::Client,
|
|
pub api_url: String,
|
|
pub api_key: SecretString,
|
|
pub transfer_api_key: Option<SecretString>,
|
|
}
|
|
|
|
impl MuralPay {
|
|
pub fn new(
|
|
api_url: impl Into<String>,
|
|
api_key: impl Into<SecretString>,
|
|
transfer_api_key: Option<impl Into<SecretString>>,
|
|
) -> Self {
|
|
Self {
|
|
http: reqwest::Client::new(),
|
|
api_url: api_url.into(),
|
|
api_key: api_key.into(),
|
|
transfer_api_key: transfer_api_key.map(Into::into),
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
|
|
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
|
|
pub enum Blockchain {
|
|
Ethereum,
|
|
Polygon,
|
|
Base,
|
|
Celo,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
|
|
#[serde(rename_all = "SCREAMING-KEBAB-CASE")]
|
|
pub enum CurrencyCode {
|
|
Usd,
|
|
Cop,
|
|
Ars,
|
|
Eur,
|
|
Mxn,
|
|
Brl,
|
|
Clp,
|
|
Pen,
|
|
Bob,
|
|
Crc,
|
|
Zar,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
|
|
#[serde(rename_all = "kebab-case")]
|
|
pub enum FiatAndRailCode {
|
|
Usd,
|
|
Cop,
|
|
Ars,
|
|
Eur,
|
|
Mxn,
|
|
Brl,
|
|
Clp,
|
|
Pen,
|
|
Bob,
|
|
Crc,
|
|
Zar,
|
|
UsdPeru,
|
|
UsdChina,
|
|
UsdPanama,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct WalletDetails {
|
|
pub blockchain: Blockchain,
|
|
pub wallet_address: String,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct TokenAmount {
|
|
pub token_amount: Decimal,
|
|
pub token_symbol: String,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct FiatAmount {
|
|
pub fiat_amount: Decimal,
|
|
pub fiat_currency_code: CurrencyCode,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Default)]
|
|
pub struct SearchParams<Id> {
|
|
pub limit: Option<u64>,
|
|
pub next_id: Option<Id>,
|
|
}
|
|
|
|
impl<Id: Deref<Target = Uuid> + Clone> SearchParams<Id> {
|
|
pub fn to_query(&self) -> Vec<(&'static str, String)> {
|
|
[
|
|
self.limit.map(|limit| ("limit", limit.to_string())),
|
|
self.next_id
|
|
.clone()
|
|
.map(|id| ("nextId", id.hyphenated().to_string())),
|
|
]
|
|
.into_iter()
|
|
.flatten()
|
|
.collect()
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct SearchResponse<Id, T> {
|
|
pub total: u64,
|
|
pub next_id: Option<Id>,
|
|
pub results: Vec<T>,
|
|
}
|