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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
//! [Kraken](https://www.kraken.com) HTTP client.
//!
//!
//! ## How to use akkorokamui
//!
//! Add `akkorokamui` to the list of your dependencies:
//!
//! ```toml
//! akkorokamui = "0.2"
//! ```
//!
//! ## Examples
//!
//! ### Create a client without credentials (server time)
//!
//! There are two possible ways to construct a client: with or without credentials,
//! but be aware that without credentials you will only have access to the public
//! APIs.
//!
//! According to the [Kraken APIs documentation](https://www.kraken.com/features/api#general-usage),
//! all the HTTP responses will contain two fields:
//!
//! ```json
//! error = array of error messages
//! result = result of API call (may not be present if errors occur)
//! ```
//!
//! The `ResponseValue` type is the most general type of response that can be
//! returned by the client and it mirrors the above description, where the `result`,
//! if present, will be encoded in a
//! [serde_json::Value](https://docs.serde.rs/serde_json/value/enum.Value.html) enum.
//!
//! ```no_run
//! use akkorokamui::{api, client, Client, ResponseValue};
//! use anyhow::Result;
//! use std::convert::TryInto;
//!
//! fn main() -> Result<()> {
//!    let user_agent = "<product>/<product-version>";
//!    let client: Client = client::with_user_agent(user_agent).try_into()?;
//!
//!    let api = api::public::time();
//!    let resp: ResponseValue = client.send(api)?;
//!    println!("{:?}", resp);
//!
//!    Ok(())
//! }
//! ```
//!
//! ### Extract fields from a generic response (server time `unixtime`)
//!
//! You can extract any field from the JSON response using the `serde_json::Value`
//! available methods.
//!
//! ```no_run
//! use akkorokamui::{api, client, Client, ResponseValue};
//! use anyhow::Result;
//! use std::convert::TryInto;
//!
//! fn main() -> Result<()> {
//!    let user_agent = "<product>/<product-version>";
//!    let client: Client = client::with_user_agent(user_agent).try_into()?;
//!
//!    let api = api::public::time();
//!    let resp: ResponseValue = client.send(api)?;
//!    println!("{:?}", resp);
//!
//!    if let Some(result) = resp.result {
//!        let time = result.get("unixtime").and_then(|t| t.as_u64());
//!        println!("Time: {:?}", time);
//!    }
//!
//!    Ok(())
//! }
//! ```
//!
//! ### Deserialize a response into a user defined type (server time `unixtime`)
//!
//! The `ResponseValue` allows not to worry too much on the JSON structure returned
//! by the Kraken APIs, while not being tied too much on the types defined in this
//! library. But if you want to exploit the type safety of your user defined types
//! you can do so by defining your own `Response<T>`.
//!
//! ```no_run
//! use akkorokamui::{api, client, Client, Response};
//! use anyhow::{bail, Result};
//! use serde::Deserialize;
//! use std::convert::TryInto;
//!
//! fn main() -> Result<()> {
//!    let user_agent = "<product>/<product-version>";
//!    let client: Client = client::with_user_agent(user_agent).try_into()?;
//!
//!    #[derive(Debug, Deserialize)]
//!    struct Time {
//!        unixtime: u64,
//!    }
//!
//!    let api = api::public::time();
//!    let resp: Response<Time> = client.send(api)?;
//!    println!("{:?}", resp);
//!
//!    if let Some(result) = resp.result {
//!        println!("Time: {}", result.unixtime);
//!    } else {
//!       bail!("Cannot get server time: {:?}", resp.error);
//!    }
//!
//!    Ok(())
//! }
//! ```
//!
//! ### Specify API parameters (recent trades)
//!
//! The API builder allows to specify any key-value pair as new parameter via the
//! method `.with(key, value)`, which can be chained for as many parameters are
//! needed:
//!
//! ```no_run
//! use akkorokamui::{api, client, Asset, Client, Response};
//! use anyhow::{bail, Result};
//! use serde::Deserialize;
//! use std::{
//!     collections::HashMap,
//!     convert::TryInto,
//!     time::{Duration, SystemTime, UNIX_EPOCH},
//! };
//!
//! fn main() -> Result<()> {
//!    let user_agent = "<product>/<product-version>";
//!    let client: Client = client::with_user_agent(user_agent).try_into()?;
//!
//!    #[derive(Debug, Deserialize)]
//!    struct Trade {
//!        price: String,
//!        volume: String,
//!        time: f32,
//!        buy_sell: String,
//!        market_limit: String,
//!        miscellaneous: String,
//!    }
//!
//!    #[derive(Debug, Deserialize)]
//!    struct Trades {
//!        #[serde(flatten)]
//!        asset_pair_trades: HashMap<String, Vec<Trade>>,
//!        last: String,
//!    }
//!
//!    let since = Duration::from_secs(10);
//!    let since = match SystemTime::now().checked_sub(since) {
//!        Some(since) => since.duration_since(UNIX_EPOCH)?.as_secs(),
//!        _ => bail!("invalid duration"),
//!    };
//!
//!    // NOTE: the asset pair name may need to use the X and Z prefix depending
//!    // on the Kraken classification system, where X stands for cryptocurrency
//!    // based assets while Z is for fiat based assets. You can build a map of
//!    // pair alternative name to asset pair effective name by querying all the
//!    // AssetPairs from the homonymous API.
//!    let asset_pair = Asset::XBT.pair(Asset::EUR);
//!    let api = api::public::trades()
//!        .with("pair", &asset_pair)
//!        .with("since", since);
//!
//!    let resp: Response<Trades> = client.send(api)?;
//!    println!("{:?}", resp);
//!
//!    if let Some(result) = resp.result {
//!        if let Some(trades) = result.asset_pair_trades.get(&asset_pair) {
//!            for trade in trades {
//!                println!("price at {}: {}", trade.time, trade.price);
//!            }
//!        }
//!   } else {
//!      bail!("Cannot get trades: {:?}", resp.error);
//!   }
//!
//!    Ok(())
//! }
//! ```
//!
//! ### Client credentials and private APIs (account balance)
//!
//! In order to use private APIs you need to own a pair of keys: the public API key
//! as well as your private key (refer to the
//! [Kraken support page](https://support.kraken.com/hc/en-us/articles/360000919966-How-to-generate-an-API-key-pair)
//! to learn how to generate these keys).
//!
//! The keys must be stored in a single file, where the first line contains the
//! public API key and the second line contains the private key.
//!
//! ```no_run
//! use akkorokamui::{api, client, Asset, Client, Credentials, Response};
//! use anyhow::{bail, Result};
//! use std::{collections::HashMap, convert::TryInto};
//!
//! type Currency = String;
//! type Amount = String;
//! type Balance = HashMap<Currency, Amount>;
//!
//! fn main() -> Result<()> {
//!     let keys_path = "kraken.key";
//!     let credentials = Credentials::read(keys_path)?;
//!     let user_agent = "<product>/<product-version>";
//!
//!     let client: Client = client::with_user_agent(user_agent)
//!         .with_credentials(credentials)
//!         .try_into()?;
//!
//!     let api = api::private::balance();
//!     let resp: Response<Balance> = client.send(api)?;
//!     println!("{:?}", resp);
//!
//!     if let Some(result) = resp.result {
//!         println!("USD: {:?}", result.get(&Asset::USD.with_prefix()));
//!     } else {
//!         bail!("Cannot get balance: {:?}", resp.error);
//!     }
//!
//!     Ok(())
//! }
//! ```
//!
//! ### Add a new order
//!
//! ```no_run
//! use akkorokamui::{
//!     api, client, Asset, Client, Credentials, Order, OrderType, Response,
//!     ResponseValue,
//! };
//! use anyhow::{bail, Result};
//! use serde::Deserialize;
//! use std::collections::HashMap;
//! use std::convert::TryInto;
//!
//! fn main() -> Result<()> {
//!    let keys_path = "kraken.key";
//!    let credentials = Credentials::read(keys_path)?;
//!
//!    let user_agent = "<product>/<product-version>";
//!    let client: Client = client::with_user_agent(user_agent)
//!        .with_credentials(credentials)
//!        .try_into()?;
//!
//!    let asset_pairs = get_asset_pairs(&client)?;
//!    let pair = Asset::XRP.pair(Asset::GBP);
//!    let xrp_gbp = if let Some(name) = asset_pairs.get(&pair) {
//!        name
//!    } else {
//!        bail!("{} asset pair name not found", pair)
//!    };
//!
//!    let api = api::private::add_order()
//!        // validate only, do not actually place any order
//!        .with("validate", true)
//!        .with("pair", &xrp_gbp)
//!        .with("type", Order::Buy)
//!        .with("ordertype", OrderType::TakeProfitLimit)
//!        // take profit price trigger
//!        .with("price", 0.19)
//!        // limit price
//!        .with("price2", 0.191)
//!        .with("volume", 30)
//!        // prefer fee in quote currency
//!        .with("oflags", "fciq");
//!
//!    let resp: ResponseValue = client.send(api)?;
//!    println!("{:?}", resp);
//!
//!    Ok(())
//! }
//!
//! fn get_asset_pairs(client: &Client) -> Result<HashMap<String, String>> {
//!    #[derive(Debug, Deserialize)]
//!    struct AssetPair {
//!        altname: String,
//!    }
//!
//!    type AssetPairs = HashMap<String, AssetPair>;
//!
//!    let api = api::public::asset_pairs();
//!    let resp: Response<AssetPairs> = client.send(api)?;
//!
//!    if let Some(result) = resp.result {
//!        Ok(result.into_iter().map(|(k, v)| (v.altname, k)).collect())
//!    } else {
//!       bail!("Cannot get asset pairs: {:?}", resp.error);
//!    }
//! }
//! ```

pub use api::{Api, Response, ResponseValue};
pub use assets::Asset;
pub use auth::Credentials;
pub use client::Client;
pub use error::Error;
pub use order::{Order, OrderType};

pub mod api;
pub mod client;

mod assets;
mod auth;
mod error;
mod order;

/// Crate Result type.
type Result<T> = std::result::Result<T, Error>;

/// Kraken REST API domain.
const KRAKEN_DOMAIN: &str = "https://api.kraken.com";

#[cfg(test)]
mod tests {
    use super::*;
    use anyhow::Result;
    use client::Client;

    #[test]
    fn server_time() -> Result<()> {
        let client = Client::default();

        let api = api::public::time();
        println!("{}", api);

        let resp: ResponseValue = client.send(api)?;
        println!("{:?}", resp);
        assert!(resp.error.is_empty());
        assert!(resp.result.is_some());

        Ok(())
    }

    #[test]
    fn assets_info() -> Result<()> {
        let client = Client::default();
        let assets = [Asset::XBT, Asset::EUR, Asset::ETH];

        let asset = assets
            .iter()
            .map(|a| a.with_prefix())
            .collect::<Vec<String>>()
            .join(",");
        let api = api::public::assets().with("asset", asset);
        println!("{}", api);

        let resp: ResponseValue = client.send(api)?;
        println!("{:?}", resp);
        assert!(resp.error.is_empty());
        assert!(resp.result.is_some());

        Ok(())
    }

    #[test]
    fn asset_pairs() -> Result<()> {
        let client = Client::default();

        let asset_pair = Asset::XBT.pair(Asset::EUR);
        let api = api::public::asset_pairs().with("pair", &asset_pair);
        println!("{}", api);

        let resp: ResponseValue = client.send(api)?;
        println!("{:?}", resp);
        assert!(resp.error.is_empty());
        assert!(resp.result.is_some());

        Ok(())
    }

    #[test]
    fn ticker_info() -> Result<()> {
        let client = Client::default();

        let asset_pair = Asset::XBT.pair(Asset::EUR);
        let api = api::public::ticker().with("pair", &asset_pair);
        println!("{}", api);

        let resp: ResponseValue = client.send(api)?;
        println!("{:?}", resp);
        assert!(resp.error.is_empty());
        assert!(resp.result.is_some());

        Ok(())
    }

    #[test]
    fn ohlc() -> Result<()> {
        let client = Client::default();

        let asset_pair = Asset::XBT.pair(Asset::GBP);
        let api = api::public::ohlc().with("pair", &asset_pair);
        println!("{}", api);

        let resp: ResponseValue = client.send(api)?;
        println!("{:?}", resp);
        assert!(resp.error.is_empty());
        assert!(resp.result.is_some());

        Ok(())
    }

    #[test]
    fn depth() -> Result<()> {
        let client = Client::default();

        let asset_pair = Asset::XBT.pair(Asset::GBP);
        let api = api::public::depth()
            .with("pair", &asset_pair)
            .with("count", 2);
        println!("{}", api);

        let resp: ResponseValue = client.send(api)?;
        println!("{:?}", resp);
        assert!(resp.error.is_empty());
        assert!(resp.result.is_some());

        Ok(())
    }

    #[test]
    fn trades() -> Result<()> {
        let client = Client::default();

        let asset_pair = Asset::XBT.pair(Asset::USD);
        let api = api::public::trades().with("pair", &asset_pair);
        println!("{}", api);

        let resp: ResponseValue = client.send(api)?;
        println!("{:?}", resp);
        assert!(resp.error.is_empty());
        assert!(resp.result.is_some());

        Ok(())
    }

    #[test]
    fn spread() -> Result<()> {
        let client = Client::default();

        let asset_pair = Asset::XBT.pair(Asset::USD);
        let api = api::public::spread().with("pair", &asset_pair);
        println!("{}", api);

        let resp: ResponseValue = client.send(api)?;
        println!("{:?}", resp);
        assert!(resp.error.is_empty());
        assert!(resp.result.is_some());

        Ok(())
    }
}