1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
use super::types::ListAccountTradesResponse;
use crate::errors::{ProtocolError, Result};
use crate::graphql::list_account_trades;
use crate::types::{AccountTradeSide, BuyOrSell, Trade};
use chrono::{DateTime, Utc};
use std::str::FromStr;
use bigdecimal::BigDecimal;
use crate::protocol::traits::TryFromState;
use crate::protocol::state::State;
use std::sync::Arc;
use tokio::sync::RwLock;
use async_trait::async_trait;
#[async_trait]
impl TryFromState<list_account_trades::ResponseData> for ListAccountTradesResponse {
async fn from(response: list_account_trades::ResponseData, _state: Arc<RwLock<State>>) -> Result<ListAccountTradesResponse> {
let mut trades = Vec::new();
for trade_data in response.list_account_trades.trades {
let market = trade_data.market.name.clone();
let taker_fee = BigDecimal::from_str(&trade_data.taker_fee.amount)?;
let maker_fee = BigDecimal::from_str(&trade_data.maker_fee.amount)?;
let amount = BigDecimal::from_str(&trade_data.amount.amount)?;
let maker_recieved = BigDecimal::from_str(&trade_data.maker_received.amount)?;
let taker_recieved = BigDecimal::from_str(&trade_data.taker_received.amount)?;
let limit_price = BigDecimal::from_str(&trade_data.limit_price.amount)?;
trades.push(Trade {
market,
amount,
taker_fee,
maker_fee,
maker_recieved,
taker_recieved,
taker_order_id: trade_data.taker_order_id.clone(),
maker_order_id: trade_data.maker_order_id.clone(),
account_side: trade_data.account_side.into(),
id: trade_data.id,
executed_at: DateTime::<Utc>::from_str(&trade_data.executed_at)
.map_err(|_| ProtocolError("Could not convert value to DateTime"))?,
limit_price,
direction: trade_data.direction.into(),
})
}
Ok(ListAccountTradesResponse {
trades,
next_page: response.list_account_trades.next.clone(),
})
}
}
impl From<list_account_trades::Direction> for BuyOrSell {
fn from(response: list_account_trades::Direction) -> Self {
match response {
list_account_trades::Direction::BUY => Self::Buy,
list_account_trades::Direction::SELL => Self::Sell,
_ => panic!("Unexpected value in BuyOrSell enum"),
}
}
}
impl From<list_account_trades::AccountTradeSide> for AccountTradeSide {
fn from(trade_side: list_account_trades::AccountTradeSide) -> Self {
match trade_side {
list_account_trades::AccountTradeSide::MAKER => AccountTradeSide::Maker,
list_account_trades::AccountTradeSide::TAKER => AccountTradeSide::Taker,
list_account_trades::AccountTradeSide::NONE => AccountTradeSide::None,
_ => panic!("Unsupported value in AccountTradeSide"),
}
}
}