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
use indexmap::map::IndexMap;

use crate::auth::KrakenAuth;
// Structs/Enums
use super::{EndpointInfo, KrakenInput, MethodType};

// Traits
use super::{Input, InputList, InputListItem, IntoInputList, MutateInput, UpdateInput};

pub use super::KOLedgerInfo;
pub use super::KOLedgers;

/// Request builder for the Query Ledgers endpoint
pub struct KIQueryLedgers {
    params: IndexMap<String, String>,
}

impl KIQueryLedgers {
    /// Constructor returning a [KrakenInput] builder for the query ledgers endpoint.
    /// * `ledgerid` is the ledger ID to query info for
    pub fn build(ledgerid: String) -> Self {
        let ledgers = KIQueryLedgers {
            params: IndexMap::new(),
        };
        ledgers.with_item(ledgerid)
    }

    /// Constructor returning a [KrakenInput] builder for the query ledgers endpoint.
    /// * `ledgerids` is any iterable collection of ledger IDs to query info for
    pub fn build_with_list<T>(ledgerids: T) -> Self
    where
        T: IntoIterator<Item = String>,
    {
        let ledgers = KIQueryLedgers {
            params: IndexMap::new(),
        };
        ledgers.with_item_list(ledgerids)
    }

    /// Update the list of ledger IDs to query info for.
    /// Useful for templating
    pub fn update_transaction_list<T>(self, ledgerids: T) -> Self
    where
        T: IntoIterator<Item = String>,
    {
        self.update_input("id", String::from(""))
            .with_item_list(ledgerids)
    }

    fn with_nonce(self) -> Self {
        self.update_input("nonce", KrakenAuth::nonce())
    }
}

impl Input for KIQueryLedgers {
    fn finish(self) -> KrakenInput {
        KrakenInput {
            info: EndpointInfo {
                methodtype: MethodType::Private,
                endpoint: String::from("QueryLedgers"),
            },
            params: Some(self.with_nonce().params),
        }
    }

    fn finish_clone(self) -> (KrakenInput, Self) {
        let newself = self.with_nonce();
        (
            KrakenInput {
                info: EndpointInfo {
                    methodtype: MethodType::Private,
                    endpoint: String::from("QueryLedgers"),
                },
                params: Some(newself.params.clone()),
            },
            newself,
        )
    }
}

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

impl UpdateInput for KIQueryLedgers {}

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

impl InputListItem for KIQueryLedgers {
    type ListItem = String;
}

impl InputList for KIQueryLedgers {}