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
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
use indexmap::map::IndexMap;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;

use super::{
    EndpointInfo, Input, InputList, InputListItem, IntoInputList, KAsset, KrakenInput, MethodType,
    MutateInput, Output, UpdateInput,
};

/// Request builder for the Get Asset Info endpoint
pub struct KIAssetInfo {
    params: IndexMap<String, String>,
}

impl KIAssetInfo {
    /// Constructor returning a [KrakenInput] builder for the get asset info endpoint.
    pub fn build() -> Self {
        KIAssetInfo {
            params: IndexMap::new(),
        }
    }

    /// An asset is not required for the get asset info endpoint. 
    /// This method clears a currently populated asset list.
    /// Useful for templating
    pub fn clear_asset_list(self) -> Self {
        self.update_input("asset", String::from(""))
    }

    /// Update the list of assets to query info for 
    pub fn with_asset(self, asset: KAsset) -> Self {
        self.with_item(asset)
    }

    /// Update the list of assets to query info for 
    pub fn with_asset_list<T>(self, assets: T) -> Self
    where
        T: IntoIterator<Item = KAsset>,
    {
        self.with_item_list(assets)
    }
}

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

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

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

impl IntoInputList for KIAssetInfo {
    fn list_name(&self) -> String {
        String::from("asset")
    }
}

impl InputListItem for KIAssetInfo {
    type ListItem = KAsset;
}

impl UpdateInput for KIAssetInfo {}

impl InputList for KIAssetInfo {}

/// Asset info data
#[derive(Deserialize, Serialize, Debug)]
pub struct KOAsset {
    /// alternate name
    pub altname: String,
    /// asset class
    pub aclass: String,
    /// scaling decimal places for record keeping
    pub decimals: u32,
    /// scaling decimal places for output display
    pub display_decimals: u32,
}

/// Response from the Get Asset Info endpoint
#[derive(Deserialize, Serialize, Debug)]
pub struct KOAssetInfo {
    /// Map with the asset as the key and the asset's data as the value
    #[serde(flatten)]
    pub asset: HashMap<KAsset, KOAsset>,
}

impl Output for KOAssetInfo {}