kraapi 0.2.1

Asynchronous HTTP client for the Kraken Cryptocurrency Exchange
Documentation
use indexmap::map::IndexMap;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;

use super::{
    EndpointInfo, Input, KAssetPair, KrakenInput, MethodType, MutateInput, OHLCInterval, Output,
    UpdateInput,
};

/// Request builder for the Get OHLC Data endpoint
pub struct KIOHLC {
    params: IndexMap<String, String>,
}

impl KIOHLC {
    /// Constructor returning a [KrakenInput] builder for the get OHLC data endpoint.
    /// * `pair` is the asset pair to query OHLC data for
    pub fn build(pair: KAssetPair) -> Self {
        let ohlc = KIOHLC {
            params: IndexMap::new(),
        };
        ohlc.update_pair(pair)
    }

    /// Update the asset pair to query OHLC data for
    pub fn update_pair(self, pair: KAssetPair) -> Self {
        self.update_input("pair", pair.to_string())
    }

    /// Return data from the given timestamp to the current timestamp, sampling data every
    /// `interval` minutes
    pub fn with_interval(self, interval: OHLCInterval) -> Self {
        self.update_input("interval", interval.to_string())
    }

    /// Unix timestamp to query OHLC data from. The [KOOHLC] member `last` can be used as input to
    /// `since()` to query OHLC data since the last time data was requested
    pub fn since(self, id: String) -> Self {
        self.update_input("since", id)
    }
}

impl Input for KIOHLC {
    fn finish(self) -> KrakenInput {
        KrakenInput {
            info: EndpointInfo {
                methodtype: MethodType::Public,
                endpoint: String::from("OHLC"),
            },
            params: Some(self.params),
        }
    }

    fn finish_clone(self) -> (KrakenInput, Self) {
        (
            KrakenInput {
                info: EndpointInfo {
                    methodtype: MethodType::Public,
                    endpoint: String::from("OHLC"),
                },
                params: Some(self.params.clone()),
            },
            self,
        )
    }
}

impl MutateInput for KIOHLC {
    fn list_mut(&mut self) -> &mut IndexMap<String, String> {
        &mut self.params
    }
}

impl UpdateInput for KIOHLC {}

/// OHLC info data
#[derive(Deserialize, Serialize, Debug)]
pub struct KOOHLCData {
    pub timestamp: i64,
    pub open: String,
    pub high: String,
    pub low: String,
    pub close: String,
    pub vwap: String,
    pub volume: String,
    pub count: i64,
}

/// Response from the Get OHLC Data endpoint
#[derive(Deserialize, Serialize, Debug)]
pub struct KOOHLC {
    /// Map with the asset pair as the key and the pair's OHLC data as the value
    #[serde(flatten)]
    pub pair: HashMap<KAssetPair, Vec<KOOHLCData>>,
    /// ID to be used as "since" input to subsequent OHLC requests
    pub last: i64,
}

impl Output for KOOHLC {}