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
use super::super::utils::http_get;
use crate::error::Result;
use std::collections::BTreeMap;

const BASE_URL: &str = "https://api.kraken.com";

/// The WebSocket client for Kraken.
///
/// Kraken has only Spot market.
///
/// * REST API doc: <https://docs.kraken.com/rest/>
/// * Trading at: <https://trade.kraken.com/>
/// * Rate Limits: <https://docs.kraken.com/rest/#section/Rate-Limits/REST-API-Rate-Limits>
///   * 15 requests per 45 seconds
pub struct KrakenSpotRestClient {
    _api_key: Option<String>,
    _api_secret: Option<String>,
}

impl KrakenSpotRestClient {
    pub fn new(api_key: Option<String>, api_secret: Option<String>) -> Self {
        KrakenSpotRestClient { _api_key: api_key, _api_secret: api_secret }
    }

    /// Get most recent trades.
    ///
    /// If `since` is provided, return trade data since given id (exclusive).
    ///
    /// For example: <https://api.kraken.com/0/public/Trades?pair=XXBTZUSD&since=1609893937598797338>
    #[allow(non_snake_case)]
    pub fn fetch_trades(symbol: &str, since: Option<String>) -> Result<String> {
        if symbol.contains('/') {
            // websocket and RESTful API have different symbol format
            // XBT/USD -> XBTUSD
            let stripped = symbol.replace('/', "");
            gen_api!(format!("/0/public/Trades?pair={}", &stripped), since)
        } else {
            gen_api!(format!("/0/public/Trades?pair={symbol}"), since)
        }
    }

    /// Get a Level2 snapshot of orderbook.
    ///
    /// Top 500 bids and asks are returned.
    ///
    /// For example: <https://api.kraken.com/0/public/Depth?pair=XXBTZUSD&count=500>
    pub fn fetch_l2_snapshot(symbol: &str) -> Result<String> {
        if symbol.contains('/') {
            // websocket and RESTful API have different symbol format
            // XBT/USD -> XBTUSD
            let stripped = symbol.replace('/', "");
            gen_api!(format!("/0/public/Depth?pair={stripped}&count=500"))
        } else {
            gen_api!(format!("/0/public/Depth?pair={symbol}&count=500"))
        }
    }
}