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
use anyhow::{bail, Result};
use serde::Deserialize;
pub(crate) enum ResponseType {
HistoricalDaily,
HistoricalInterval,
Current,
Company,
}
pub(crate) enum Response {
HistoricalDaily(HistoricalDaily),
HistoricalInterval(HistoricalInterval),
Current(Current),
Company(Company),
}
impl ResponseType {
pub fn deserialize(&self, body: &[u8]) -> Result<Response> {
match self {
ResponseType::HistoricalDaily => match serde_json::from_slice(body) {
Ok(deser) => Ok(Response::HistoricalDaily(deser)),
Err(e) => bail!(e),
},
ResponseType::HistoricalInterval => match serde_json::from_slice(body) {
Ok(deser) => Ok(Response::HistoricalInterval(deser)),
Err(e) => bail!(e),
},
ResponseType::Current => match serde_json::from_slice(body) {
Ok(deser) => Ok(Response::Current(deser)),
Err(e) => bail!(e),
},
ResponseType::Company => match serde_json::from_slice(body) {
Ok(deser) => Ok(Response::Company(deser)),
Err(e) => bail!(e),
},
}
}
}
#[serde(rename_all = "camelCase")]
#[derive(Debug, Deserialize, Clone)]
pub struct HistoricalDaily {
pub symbol: String,
#[serde(rename = "historical")]
pub prices: Vec<Price>,
}
#[serde(rename_all = "camelCase", transparent)]
#[derive(Debug, Deserialize, Clone)]
pub struct HistoricalInterval {
pub prices: Vec<Price>,
}
#[serde(rename_all = "camelCase")]
#[derive(Debug, Deserialize, Clone)]
pub struct Price {
pub date: String,
pub open: f32,
pub high: f32,
pub low: f32,
pub close: f32,
pub volume: f64,
}
#[serde(rename_all = "camelCase")]
#[derive(Debug, Deserialize, Clone)]
pub struct Current {
pub symbol: String,
pub price: f32,
}
#[serde(rename_all = "camelCase")]
#[derive(Debug, Deserialize, Clone)]
pub struct Company {
pub symbol: String,
pub profile: CompanyProfile,
}
#[serde(rename_all = "camelCase")]
#[derive(Debug, Deserialize, Clone)]
pub struct CompanyProfile {
pub price: f32,
pub beta: Option<String>,
pub vol_avg: String,
pub mkt_cap: String,
pub company_name: String,
pub description: String,
}