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>
101 lines
3.0 KiB
Rust
101 lines
3.0 KiB
Rust
use reqwest::{IntoUrl, RequestBuilder};
|
|
use secrecy::ExposeSecret;
|
|
use serde::de::DeserializeOwned;
|
|
|
|
use crate::{ApiError, MuralError, MuralPay, TransferError};
|
|
|
|
impl MuralPay {
|
|
fn http_req(
|
|
&self,
|
|
make_req: impl FnOnce() -> RequestBuilder,
|
|
) -> RequestBuilder {
|
|
make_req()
|
|
.bearer_auth(self.api_key.expose_secret())
|
|
.header("accept", "application/json")
|
|
.header("content-type", "application/json")
|
|
}
|
|
|
|
pub(crate) fn http_get<U: IntoUrl>(
|
|
&self,
|
|
make_url: impl FnOnce(&str) -> U,
|
|
) -> RequestBuilder {
|
|
self.http_req(|| self.http.get(make_url(&self.api_url)))
|
|
}
|
|
|
|
pub(crate) fn http_post<U: IntoUrl>(
|
|
&self,
|
|
make_url: impl FnOnce(&str) -> U,
|
|
) -> RequestBuilder {
|
|
self.http_req(|| self.http.post(make_url(&self.api_url)))
|
|
}
|
|
|
|
pub(crate) fn http_put<U: IntoUrl>(
|
|
&self,
|
|
make_url: impl FnOnce(&str) -> U,
|
|
) -> RequestBuilder {
|
|
self.http_req(|| self.http.put(make_url(&self.api_url)))
|
|
}
|
|
|
|
pub(crate) fn http_delete<U: IntoUrl>(
|
|
&self,
|
|
make_url: impl FnOnce(&str) -> U,
|
|
) -> RequestBuilder {
|
|
self.http_req(|| self.http.delete(make_url(&self.api_url)))
|
|
}
|
|
}
|
|
|
|
pub trait RequestExt: Sized {
|
|
fn transfer_auth(self, client: &MuralPay) -> Result<Self, TransferError>;
|
|
|
|
async fn send_mural<T: DeserializeOwned>(self) -> crate::Result<T>;
|
|
}
|
|
|
|
const HEADER_TRANSFER_API_KEY: &str = "transfer-api-key";
|
|
|
|
impl RequestExt for reqwest::RequestBuilder {
|
|
fn transfer_auth(self, client: &MuralPay) -> Result<Self, TransferError> {
|
|
let transfer_api_key = client
|
|
.transfer_api_key
|
|
.as_ref()
|
|
.ok_or(TransferError::NoTransferKey)?;
|
|
|
|
Ok(self
|
|
.header(HEADER_TRANSFER_API_KEY, transfer_api_key.expose_secret()))
|
|
}
|
|
|
|
async fn send_mural<T: DeserializeOwned>(self) -> crate::Result<T> {
|
|
let resp = self.send().await?;
|
|
let status = resp.status();
|
|
if status.is_client_error() || status.is_server_error() {
|
|
let json = resp.bytes().await?;
|
|
let err = serde_json::from_slice::<ApiError>(&json)
|
|
.map_err(|source| MuralError::DecodeError { source, json })?;
|
|
Err(MuralError::Api(err))
|
|
} else {
|
|
let json = resp.bytes().await?;
|
|
let t = serde_json::from_slice::<T>(&json)
|
|
.map_err(|source| MuralError::Decode { source, json })?;
|
|
Ok(t)
|
|
}
|
|
}
|
|
}
|
|
|
|
macro_rules! display_as_serialize {
|
|
($T:ty) => {
|
|
const _: () = {
|
|
use std::fmt;
|
|
|
|
impl fmt::Display for $T {
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
let value =
|
|
serde_json::to_value(self).map_err(|_| fmt::Error)?;
|
|
let value = value.as_str().ok_or(fmt::Error)?;
|
|
write!(f, "{value}")
|
|
}
|
|
}
|
|
};
|
|
};
|
|
}
|
|
|
|
pub(crate) use display_as_serialize;
|