You've already forked AstralRinth
forked from didirus/AstralRinth
* wip: muralpay integration * Basic Mural Pay API bindings * Fix clippy * use dotenvy in muralpay example * Refactor payout creation code * wip: muralpay payout requests * Mural Pay payouts work * Fix clippy * add mural pay fees API * Work on payout fee API * Fees API for more payment methods * Fix CI * Temporarily disable Venmo and PayPal methods from frontend * wip: counterparties * Start on counterparties and payment methods API * Mural Pay multiple methods when fetching * Don't send supported_countries to frontend * Add countries to muralpay fiat methods * Compile fix * Add exchange rate info to fees endpoint * Add fees to premium Tremendous options * Add delivery email field to Tremendous payouts * Add Tremendous product category to payout methods * Add bank details API to muralpay * Fix CI * Fix CI * Remove prepaid visa, compute fees properly for Tremendous methods * Add more details to Tremendous errors * Add fees to Mural * Payout history route and bank details * Re-add legacy PayPal/Venmo options for US * move the mural bank details route * Add utoipa support to payout endpoints * address some PR comments * add CORS to new utoipa routes * Immediately approve mural payouts * Add currency support to Tremendous payouts * Currency forex * add forex to tremendous fee request * Add Mural balance to bank balance info * Add more Tremendous currencies support * Transaction payouts available use the correct date * Address my own review comment * Address PR comments * Change Mural withdrawal limit to 3k * maybe fix tremendous gift cards * Change how Mural minimum withdrawals are calculated * Tweak min/max withdrawal values --------- Co-authored-by: Calum H. <contact@cal.engineer> Co-authored-by: Alejandro González <me@alegon.dev>
237 lines
6.5 KiB
Rust
237 lines
6.5 KiB
Rust
use std::str::FromStr;
|
|
|
|
use chrono::{DateTime, Utc};
|
|
use derive_more::{Deref, Display};
|
|
use rust_decimal::Decimal;
|
|
use secrecy::ExposeSecret;
|
|
use serde::{Deserialize, Serialize};
|
|
use uuid::Uuid;
|
|
|
|
use crate::{
|
|
Blockchain, FiatAmount, MuralError, MuralPay, TokenAmount, WalletDetails,
|
|
util::RequestExt,
|
|
};
|
|
|
|
impl MuralPay {
|
|
pub async fn get_all_accounts(&self) -> Result<Vec<Account>, MuralError> {
|
|
self.http_get(|base| format!("{base}/api/accounts"))
|
|
.send_mural()
|
|
.await
|
|
}
|
|
|
|
pub async fn get_account(
|
|
&self,
|
|
id: AccountId,
|
|
) -> Result<Account, MuralError> {
|
|
self.http_get(|base| format!("{base}/api/accounts/{id}"))
|
|
.send_mural()
|
|
.await
|
|
}
|
|
|
|
pub async fn create_account(
|
|
&self,
|
|
name: impl AsRef<str>,
|
|
description: Option<impl AsRef<str>>,
|
|
) -> Result<Account, MuralError> {
|
|
#[derive(Debug, Serialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
struct Body<'a> {
|
|
name: &'a str,
|
|
description: Option<&'a str>,
|
|
}
|
|
|
|
let body = Body {
|
|
name: name.as_ref(),
|
|
description: description.as_ref().map(|x| x.as_ref()),
|
|
};
|
|
|
|
self.http
|
|
.post(format!("{}/api/accounts", self.api_url))
|
|
.bearer_auth(self.api_key.expose_secret())
|
|
.json(&body)
|
|
.send_mural()
|
|
.await
|
|
}
|
|
}
|
|
|
|
#[derive(
|
|
Debug,
|
|
Display,
|
|
Clone,
|
|
Copy,
|
|
PartialEq,
|
|
Eq,
|
|
Hash,
|
|
Deref,
|
|
Serialize,
|
|
Deserialize,
|
|
)]
|
|
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
|
|
#[display("{}", _0.hyphenated())]
|
|
pub struct AccountId(pub Uuid);
|
|
|
|
impl FromStr for AccountId {
|
|
type Err = <Uuid as FromStr>::Err;
|
|
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
s.parse::<Uuid>().map(Self)
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct Account {
|
|
pub id: AccountId,
|
|
pub name: String,
|
|
pub description: Option<String>,
|
|
pub created_at: DateTime<Utc>,
|
|
pub updated_at: DateTime<Utc>,
|
|
pub is_api_enabled: bool,
|
|
pub status: AccountStatus,
|
|
pub account_details: Option<AccountDetails>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
|
|
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
|
|
pub enum AccountStatus {
|
|
Initializing,
|
|
Active,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct AccountDetails {
|
|
pub wallet_details: WalletDetails,
|
|
pub balances: Vec<TokenAmount>,
|
|
pub payin_methods: Vec<PayinMethod>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct PayinMethod {
|
|
pub status: PayinMethodStatus,
|
|
pub supported_destination_tokens: Vec<DestinationToken>,
|
|
pub payin_rail_details: PayinRailDetails,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
|
|
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
|
|
pub enum PayinMethodStatus {
|
|
Activated,
|
|
Deactivated,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct DestinationToken {
|
|
pub fees: Fees,
|
|
pub token: Token,
|
|
pub transaction_minimum: Option<FiatAmount>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct Fees {
|
|
#[serde(with = "rust_decimal::serde::float")]
|
|
pub variable_fee_percentage: Decimal,
|
|
pub fixed_transaction_fee: Option<FiatAmount>,
|
|
#[serde(with = "rust_decimal::serde::float_option", default)]
|
|
pub developer_fee_percentage: Option<Decimal>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct Token {
|
|
pub symbol: String,
|
|
pub blockchain: Blockchain,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
|
|
#[serde(tag = "type", rename_all = "camelCase")]
|
|
pub enum PayinRailDetails {
|
|
#[serde(rename_all = "camelCase")]
|
|
Usd {
|
|
currency: UsdCurrency,
|
|
payin_rails: Vec<String>,
|
|
bank_beneficiary_name: String,
|
|
bank_beneficiary_address: String,
|
|
bank_name: String,
|
|
bank_address: String,
|
|
bank_routing_number: String,
|
|
bank_account_number: String,
|
|
},
|
|
#[serde(rename_all = "camelCase")]
|
|
Eur {
|
|
currency: EurCurrency,
|
|
payin_rail: EurPayinRail,
|
|
bank_name: String,
|
|
bank_address: String,
|
|
account_holder_name: String,
|
|
iban: String,
|
|
bic: String,
|
|
},
|
|
#[serde(rename_all = "camelCase")]
|
|
Cop {
|
|
currency: CopCurrency,
|
|
payin_rail: CopPayinRail,
|
|
},
|
|
#[serde(rename_all = "camelCase")]
|
|
BlockchainDeposit {
|
|
deposit_token: DepositToken,
|
|
sender_address: Option<String>,
|
|
destination_address: String,
|
|
},
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
|
|
#[serde(rename_all = "SCREAMING-KEBAB-CASE")]
|
|
pub enum UsdCurrency {
|
|
Usd,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
|
|
#[serde(rename_all = "SCREAMING-KEBAB-CASE")]
|
|
pub enum EurCurrency {
|
|
Eur,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
|
|
#[serde(rename_all = "SCREAMING-KEBAB-CASE")]
|
|
pub enum EurPayinRail {
|
|
Sepa,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
|
|
#[serde(rename_all = "SCREAMING-KEBAB-CASE")]
|
|
pub enum CopCurrency {
|
|
Cop,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
|
|
#[serde(rename_all = "SCREAMING-KEBAB-CASE")]
|
|
pub enum CopPayinRail {
|
|
Pse,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
|
|
#[serde(tag = "type", rename_all = "snake_case")]
|
|
pub enum DepositToken {
|
|
#[serde(rename_all = "camelCase")]
|
|
UsdtTron { contract_address: String },
|
|
}
|