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
//! This module contains rust structs that describe the response of the tankerkoenig
//! prices API.
//!
//! The json responses are parsed with serde to strongly typed rust structs.

use serde::{Deserialize, Deserializer};
use std::collections::HashMap;

/// Response of the tankerkoenig api mapped to a rust struct with serde.
/// The struct holds information about fuel prices for a collection of stations.
#[derive(Debug, Deserialize, Serialize, PartialEq, Clone)]
pub struct PriceResponse {
    /// Request status
    pub ok: bool,
    /// Data licence
    pub license: String,
    /// Data licence
    pub data: String,
    /// Fuel prices of requested stations
    pub prices: HashMap<String, StationPrices>,
}

/// Fuel prices of a station. If one field is `Noone` the station doesn't offer the
/// fuel or it is currently not possibleto fetch the price.
#[derive(Debug, Deserialize, Serialize, PartialEq, PartialOrd, Clone)]
pub struct StationPrices {
    /// Station open or closed
    pub status: String,
    /// Price for E5
    #[serde(deserialize_with = "de_from_bool_or_number", default)]
    pub e5: Option<f64>,
    /// Price for E10
    #[serde(deserialize_with = "de_from_bool_or_number", default)]
    pub e10: Option<f64>,
    /// Price for diesel
    #[serde(deserialize_with = "de_from_bool_or_number", default)]
    pub diesel: Option<f64>,
}

fn de_from_bool_or_number<'de, D>(deserializer: D) -> Result<Option<f64>, D::Error>
where
    D: Deserializer<'de>,
{
    let parsed_value = Option::<f64>::deserialize(deserializer);
    match parsed_value {
        Ok(value) => Ok(value),
        Err(_) => Ok(None),
    }
}

#[cfg(test)]
mod test {
    use super::*;

    #[test]
    fn deserialize_station_price_response() {
        let data = std::fs::read_to_string("./test/data/prices.json").unwrap();
        let prices_response: PriceResponse = serde_json::from_str(&data).unwrap();
        assert!(prices_response.ok);
        assert_eq!(
            prices_response.license,
            "CC BY 4.0 -  https://creativecommons.tankerkoenig.de"
        );
        assert_eq!(prices_response.data, "MTS-K");
        assert_eq!(
            prices_response
                .prices
                .get("60c0eefa-d2a8-4f5c-82cc-b5244ecae955")
                .unwrap()
                .status,
            "open"
        );
        assert_eq!(
            prices_response
                .prices
                .get("60c0eefa-d2a8-4f5c-82cc-b5244ecae955")
                .unwrap()
                .e5,
            None
        );
        assert_eq!(
            prices_response
                .prices
                .get("60c0eefa-d2a8-4f5c-82cc-b5244ecae955")
                .unwrap()
                .e10,
            None
        );
        assert_eq!(
            prices_response
                .prices
                .get("60c0eefa-d2a8-4f5c-82cc-b5244ecae955")
                .unwrap()
                .diesel,
            Some(1.189)
        );
        assert_eq!(
            prices_response
                .prices
                .get("446bdcf5-9f75-47fc-9cfa-2c3d6fda1c3b")
                .unwrap()
                .status,
            "closed"
        );
        assert_eq!(
            prices_response
                .prices
                .get("446bdcf5-9f75-47fc-9cfa-2c3d6fda1c3b")
                .unwrap()
                .e5,
            None
        );
        assert_eq!(
            prices_response
                .prices
                .get("446bdcf5-9f75-47fc-9cfa-2c3d6fda1c3b")
                .unwrap()
                .e10,
            None
        );
        assert_eq!(
            prices_response
                .prices
                .get("446bdcf5-9f75-47fc-9cfa-2c3d6fda1c3b")
                .unwrap()
                .diesel,
            None
        );
        assert_eq!(
            prices_response
                .prices
                .get("4429a7d9-fb2d-4c29-8cfe-2ca90323f9f8")
                .unwrap()
                .status,
            "open"
        );
        assert_eq!(
            prices_response
                .prices
                .get("4429a7d9-fb2d-4c29-8cfe-2ca90323f9f8")
                .unwrap()
                .e5,
            Some(1.409)
        );
        assert_eq!(
            prices_response
                .prices
                .get("4429a7d9-fb2d-4c29-8cfe-2ca90323f9f8")
                .unwrap()
                .e10,
            Some(1.389)
        );
        assert_eq!(
            prices_response
                .prices
                .get("4429a7d9-fb2d-4c29-8cfe-2ca90323f9f8")
                .unwrap()
                .diesel,
            Some(1.129)
        );
        assert_eq!(
            prices_response
                .prices
                .get("44444444-4444-4444-4444-444444444444")
                .unwrap()
                .status,
            "no prices"
        );
        assert_eq!(
            prices_response
                .prices
                .get("44444444-4444-4444-4444-444444444444")
                .unwrap()
                .e5,
            None
        );
        assert_eq!(
            prices_response
                .prices
                .get("44444444-4444-4444-4444-444444444444")
                .unwrap()
                .e10,
            None
        );
        assert_eq!(
            prices_response
                .prices
                .get("44444444-4444-4444-4444-444444444444")
                .unwrap()
                .diesel,
            None
        );
        assert_eq!(
            prices_response
                .prices
                .get("55555555-4444-4444-4444-444444444444")
                .unwrap()
                .status,
            "no prices"
        );
        assert_eq!(
            prices_response
                .prices
                .get("55555555-4444-4444-4444-444444444444")
                .unwrap()
                .e5,
            None
        );
        assert_eq!(
            prices_response
                .prices
                .get("55555555-4444-4444-4444-444444444444")
                .unwrap()
                .e10,
            None
        );
        assert_eq!(
            prices_response
                .prices
                .get("55555555-4444-4444-4444-444444444444")
                .unwrap()
                .diesel,
            None
        );
    }
}