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
use std::collections::{BTreeMap, HashMap};

use chrono::NaiveDateTime;
use serde::Deserialize;
use serde_with::{serde_as, VecSkipError};

#[derive(Debug, PartialEq)]
pub enum ClaimStatus {
    Yes,
    No,
    NotAvailable,
}

impl ToString for ClaimStatus {
    fn to_string(&self) -> String {
        match self {
            Self::Yes => "Yes",
            Self::No => "No",
            Self::NotAvailable => "-",
        }
        .to_owned()
    }
}

// ===========================================================================
// Models related to the purchased Bundles
// ===========================================================================
pub type BundleMap = HashMap<String, Bundle>;

#[serde_as]
#[derive(Debug, Deserialize)]
pub struct Bundle {
    pub gamekey: String,
    pub created: NaiveDateTime,
    pub claimed: bool,

    pub tpkd_dict: HashMap<String, serde_json::Value>,

    #[serde(rename = "product")]
    pub details: BundleDetails,

    #[serde(rename = "subproducts")]
    #[serde_as(as = "VecSkipError<_>")]
    pub products: Vec<Product>,
}

pub struct ProductKey {
    pub redeemed: bool,
    pub human_name: String,
}

impl Bundle {
    pub fn claim_status(&self) -> ClaimStatus {
        let product_keys = self.product_keys();
        let total_count = product_keys.len();
        if total_count == 0 {
            return ClaimStatus::NotAvailable;
        }

        let unused_count = product_keys.iter().filter(|k| !k.redeemed).count();
        if unused_count > 0 {
            ClaimStatus::No
        } else {
            ClaimStatus::Yes
        }
    }

    pub fn product_keys(&self) -> Vec<ProductKey> {
        let Some(tpks) = self.tpkd_dict.get("all_tpks") else {
            return vec![];
        };

        let tpks = tpks.as_array().expect("cannot read all_tpks");

        let mut result = vec![];
        for tpk in tpks {
            let redeemed = tpk["redeemed_key_val"].is_string();
            let human_name = tpk["human_name"]
                .as_str()
                .expect("expected human_name to be a string")
                .to_owned();

            result.push(ProductKey {
                redeemed,
                human_name,
            });
        }

        result
    }
}

#[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,

    /// List of associated downloads with this product.
    ///
    /// Note: Each product usually has one item here.
    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)]
pub struct GameKey {
    pub gamekey: String,
}

// ===========================================================================
// Models related to the Bundle Choices
// ===========================================================================
#[derive(Debug, Deserialize)]
pub struct HumbleChoice {
    #[serde(rename = "contentChoiceOptions")]
    pub options: ContentChoiceOptions,
}

#[derive(Debug, Deserialize)]
pub struct ContentChoiceOptions {
    #[serde(rename = "contentChoiceData")]
    pub data: ContentChoiceData,

    pub gamekey: Option<String>,

    #[serde(rename = "isActiveContent")]
    pub is_active_content: bool,

    pub title: String,
}

#[derive(Debug, Deserialize)]
pub struct ContentChoiceData {
    pub game_data: BTreeMap<String, GameData>,
}

#[derive(Debug, Deserialize)]
pub struct GameData {
    pub title: String,
    pub tpkds: Vec<Tpkd>,
}

#[derive(Debug, Deserialize)]
pub struct Tpkd {
    pub gamekey: Option<String>,
    pub human_name: String,
    pub redeemed_key_val: Option<String>,
}

impl Tpkd {
    pub fn claim_status(&self) -> ClaimStatus {
        let redeemed = self.redeemed_key_val.is_some();
        let is_active = self.gamekey.is_some();
        if is_active && redeemed {
            ClaimStatus::Yes
        } else if is_active {
            ClaimStatus::No
        } else {
            ClaimStatus::NotAvailable
        }
    }
}

#[derive(Clone, Debug)]
pub enum ChoicePeriod {
    Current,
    Date { month: String, year: u16 },
}

impl ToString for ChoicePeriod {
    fn to_string(&self) -> String {
        match self {
            Self::Current => "home".to_owned(),
            Self::Date { month, year } => format!("{}-{}", month, year),
        }
    }
}

impl TryFrom<&str> for ChoicePeriod {
    type Error = String;

    fn try_from(value: &str) -> Result<Self, Self::Error> {
        let value = value.to_lowercase();
        if value == "current" {
            return Ok(ChoicePeriod::Current);
        }

        let month_names = vec![
            "january",
            "february",
            "march",
            "april",
            "may",
            "june",
            "july",
            "august",
            "september",
            "october",
            "november",
            "december",
        ];

        let parts: Vec<_> = value.split("-").collect();
        if parts.len() != 2 {
            return Err("invalid format. expected {month name}-{year}".to_owned());
        }

        let month = parts[0];
        if !month_names.contains(&month) {
            return Err(format!("invalid month: {month}"));
        }

        let year: u16 = parts[1]
            .parse()
            .map_err(|e| format!("invalid year value: {}", e))?;

        if year < 2018 || year > 2030 {
            return Err("years out of 2018-2030 range are not supported".to_owned());
        }

        Ok(ChoicePeriod::Date {
            month: month.to_owned(),
            year,
        })
    }
}