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
use futures_util::future;
use reqwest::blocking::Client;
use serde::Deserialize;
use serde_with::{serde_as, VecSkipError};
use std::collections::HashMap;
use thiserror::Error;
use chrono::NaiveDateTime;
#[derive(Debug, Error)]
pub enum ApiError {
#[error(transparent)]
NetworkError(#[from] reqwest::Error),
#[error("Cannot parse the response")]
DeserializeFailed,
}
type BundleMap = HashMap<String, Bundle>;
#[serde_as]
#[derive(Debug, Deserialize)]
pub struct Bundle {
pub gamekey: String,
pub created: NaiveDateTime,
#[serde(rename = "product")]
pub details: BundleDetails,
#[serde(rename = "subproducts")]
#[serde_as(as = "VecSkipError<_>")]
pub products: Vec<Product>,
}
#[derive(Debug, Deserialize)]
pub struct BundleDetails {
pub machine_name: String,
pub human_name: String,
}
impl Bundle {
pub fn total_size(&self) -> u64 {
self.products.iter().map(|e| e.total_size()).sum()
}
}
#[derive(Debug, Deserialize)]
pub struct Product {
pub machine_name: String,
pub human_name: String,
#[serde(rename = "url")]
pub product_details_url: String,
pub downloads: Vec<ProductDownload>,
}
impl Product {
pub fn total_size(&self) -> u64 {
self.downloads.iter().map(|e| e.total_size()).sum()
}
pub fn formats_as_vec(&self) -> Vec<&str> {
self.downloads
.iter()
.flat_map(|d| d.formats_as_vec())
.collect::<Vec<_>>()
}
pub fn formats(&self) -> String {
self.formats_as_vec().join(", ")
}
}
#[derive(Debug, Deserialize)]
pub struct ProductDownload {
#[serde(rename = "download_struct")]
pub items: Vec<DownloadInfo>,
}
impl ProductDownload {
pub fn total_size(&self) -> u64 {
self.items.iter().map(|e| e.file_size).sum()
}
pub fn formats_as_vec(&self) -> Vec<&str> {
self.items.iter().map(|s| &s.format[..]).collect::<Vec<_>>()
}
pub fn formats(&self) -> String {
self.formats_as_vec().join(", ")
}
}
#[derive(Debug, Deserialize)]
pub struct DownloadInfo {
pub md5: String,
#[serde(rename = "name")]
pub format: String,
pub file_size: u64,
pub url: DownloadUrl,
}
#[derive(Debug, Deserialize)]
pub struct DownloadUrl {
pub web: String,
pub bittorrent: String,
}
#[derive(Debug, Deserialize)]
struct GameKey {
gamekey: String,
}
pub struct HumbleApi {
auth_key: String,
}
impl HumbleApi {
pub fn new(auth_key: &str) -> Self {
Self {
auth_key: auth_key.to_owned(),
}
}
pub fn list_bundle_keys(&self) -> Result<Vec<String>, ApiError> {
let client = Client::new();
let res = client
.get("https://www.humblebundle.com/api/v1/user/order")
.header(reqwest::header::ACCEPT, "application/json")
.header(
"cookie".to_owned(),
format!("_simpleauth_sess={}", self.auth_key),
)
.send()?
.error_for_status()?;
let game_keys = res
.json::<Vec<GameKey>>()?
.into_iter()
.map(|g| g.gamekey)
.collect();
Ok(game_keys)
}
pub fn list_bundles(&self) -> Result<Vec<Bundle>, ApiError> {
const CHUNK_SIZE: usize = 10;
let client = reqwest::Client::new();
let game_keys = self.list_bundle_keys()?;
let runtime = tokio::runtime::Builder::new_multi_thread()
.enable_all()
.build()
.expect("cannot build the tokio runtime");
let futures = game_keys
.chunks(CHUNK_SIZE)
.map(|keys| self.read_bundles_data(&client, keys));
let result: Result<Vec<Vec<Bundle>>, _> = runtime
.block_on(future::join_all(futures))
.into_iter()
.collect();
Ok(result?.into_iter().flatten().collect())
}
async fn read_bundles_data(
&self,
client: &reqwest::Client,
keys: &[String],
) -> Result<Vec<Bundle>, ApiError> {
let query_params: Vec<_> = keys.into_iter().map(|key| ("gamekeys", key)).collect();
let res = client
.get("https://www.humblebundle.com/api/v1/orders")
.header(reqwest::header::ACCEPT, "application/json")
.header(
"cookie".to_owned(),
format!("_simpleauth_sess={}", self.auth_key),
)
.query(&query_params)
.send()
.await?
.error_for_status()?;
let product_map = res.json::<BundleMap>().await?;
Ok(product_map.into_values().collect())
}
pub fn read_bundle(&self, product_key: &str) -> Result<Bundle, ApiError> {
let url = format!("https://www.humblebundle.com/api/v1/order/{}", product_key);
let client = Client::new();
let res = client
.get(url)
.header(reqwest::header::ACCEPT, "application/json")
.header(
"cookie".to_owned(),
format!("_simpleauth_sess={}", self.auth_key),
)
.send()?
.error_for_status()?;
res.json::<Bundle>()
.map_err(|_| ApiError::DeserializeFailed)
}
}