coc-rs 0.8.4

A Rust crate wrapper around the Clash of Clans public API
Documentation
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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
#[cfg(feature = "cos")]
pub mod cos {
    use reqwest::Url;

    use crate::cos_models::*;
    use crate::util::LogicLong;
    use crate::{api::Client, credentials::Credentials, error::APIError};

    impl Client {
        const BASE_COS_URL: &'static str = "https://api.clashofstats.com";
        const COS_LOGIN_ENDPOINT: &'static str = "/login";

        const COS_PLAYERS_ENDPOINT: &'static str = "/players";
        const COS_PLAYERS_HISTORY_ENDPOINT: &'static str = "/history/clans";

        const COS_CLANS_ENDPOINT: &'static str = "/clans";
        const COS_CLANS_PAST_MEMBERS_ENDPOINT: &'static str = "/members/past";

        // Clan War Rankings
        const COS_RANKINGS_CLAN_WAR_WINS_ENDPOINT: &'static str = "/rankings/clans/war-wins";
        const COS_RANKINGS_CLAN_WAR_WIN_STREAK_ENDPOINT: &'static str =
            "/rankings/clans/war-win-streak";
        const COS_RANKINGS_CLAN_BEST_WAR_WIN_STREAK_ENDPOINT: &'static str =
            "/rankings/clans/best-war-win-streak";

        // Clan Trophy Rankings
        const COS_RANKINGS_CLAN_TROPHIES_ENDPOINT: &'static str = "/rankings/clans/trophies";
        const COS_RANKINGS_CLAN_VERSUS_TROPHIES_ENDPOINT: &'static str = "/rankings/clans/versus";

        // Player Trophy Rankings
        const COS_RANKINGS_PLAYER_TROPHIES_ENDPOINT: &'static str = "/rankings/players/trophies";
        const COS_RANKINGS_PLAYER_VERSUS_TROPHIES_ENDPOINT: &'static str =
            "/rankings/players/versus";
        const COS_RANKINGS_PLAYER_BEST_TROPHIES_ENDPOINT: &'static str =
            "/rankings/players/best-trophies";
        const COS_RANKINGS_PLAYER_BEST_VERSUS_TROPHIES_ENDPOINT: &'static str =
            "/rankings/players/best-versus";
        const COS_RANKINGS_PLAYER_LEGEND_TROPHIES: &'static str =
            "/rankings/players/legend/trophies";

        // Player War Star Rankings
        const COS_RANKINGS_PLAYER_WAR_STARS: &'static str = "/rankings/players/war-stars";
        const COS_RANKINGS_PLAYER_CWL_WAR_STARS: &'static str =
            "/rankings/players/war-league-legend";

        // Player Multiplayer Rankings
        const COS_RANKINGS_PLAYER_ATTACK_WINS: &'static str = "/rankings/players/attack-wins";
        const COS_RANKINGS_PLAYER_DEFENSE_WINS: &'static str = "/rankings/players/defense-wins";
        const COS_RANKINGS_PLAYER_VERSUS_BATTLE_WINS: &'static str =
            "/rankings/players/versus-battle-wins";
        const COS_RANKINGS_PLAYER_HEROIC_HEIST: &'static str = "/rankings/players/heroic-heist";
        const COS_RANKINGS_PLAYER_CONQUEROR: &'static str = "/rankings/players/conqueror";
        const COS_RANKINGS_PLAYER_UNBREAKABLE: &'static str = "/rankings/players/unbreakable";
        const COS_RANKINGS_PLAYER_HUMILIATOR: &'static str = "/rankings/players/humiliator";
        const COS_RANKINGS_PLAYER_UN_BUILD_IT: &'static str = "/rankings/players/un-build-it";

        // Player Social Rankings
        const COS_RANKINGS_PLAYER_GAMES_CHAMPION: &'static str = "/rankings/players/games-champion";
        const COS_RANKINGS_PLAYER_TROOPS_DONATED: &'static str = "/rankings/players/donations";
        const COS_RANKINGS_PLAYER_TROOPS_RECEIVED: &'static str =
            "/rankings/players/donations-received";
        const COS_RANKINGS_PLAYER_FRIEND_IN_NEED: &'static str =
            "/rankings/players/friends-in-need";

        // Player Single Player Rankings
        const COS_RANKINGS_PLAYER_EXP_LEVEL: &'static str = "/rankings/players/exp-level";
        const COS_RANKINGS_PLAYER_WELL_SEASONED: &'static str = "/rankings/players/well-seasoned";
        const COS_RANKINGS_PLAYER_GET_THOSE_GOBLINS: &'static str =
            "/rankings/players/get-those-goblins";
        const COS_RANKINGS_PLAYER_NICE_AND_TIDY: &'static str = "/rankings/players/nice-and-tidy";

        /// While credentials **are** passed in, only the first one will be used so ensure it's a freshly built instance
        pub async fn cos_login(&self, credentials: &Credentials) -> Result<(), APIError> {
            use serde::{Deserialize, Serialize};
            #[derive(Debug, Serialize, Deserialize)]
            struct LoginResponse {
                success: bool,
            }

            let url = format!("{}{}", Self::BASE_COS_URL, Self::COS_LOGIN_ENDPOINT);
            let body =
                serde_json::to_string(credentials.0.get(0).expect("Your credentials are empty"))
                    .unwrap();

            let _login: LoginResponse = self.parse_json(self.cos_post(url, body), true).await?;

            self.is_cos_logged_in.store(true, std::sync::atomic::Ordering::SeqCst);

            Ok(())
        }

        pub async fn cos_get_player(
            &self,
            player_tag: &str,
        ) -> Result<cos_player::Player, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player({})", player_tag);
            player_tag.parse::<LogicLong>()?.to_string();
            let url = format!(
                "{}{}/{}",
                Self::BASE_COS_URL,
                Self::COS_PLAYERS_ENDPOINT,
                urlencoding::encode(player_tag)
            );
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_history(
            &self,
            player_tag: &str,
        ) -> Result<cos_player_history::PlayerHistory, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_history({})", player_tag);
            player_tag.parse::<LogicLong>()?;
            let url = format!(
                "{}{}/{}{}",
                Self::BASE_COS_URL,
                Self::COS_PLAYERS_ENDPOINT,
                urlencoding::encode(player_tag),
                Self::COS_PLAYERS_HISTORY_ENDPOINT
            );
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_clan(&self, clan_tag: &str) -> Result<cos_clan::Clan, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_clan({})", clan_tag);
            clan_tag.parse::<LogicLong>()?;
            let url = format!(
                "{}{}/{}",
                Self::BASE_COS_URL,
                Self::COS_CLANS_ENDPOINT,
                urlencoding::encode(clan_tag)
            );
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_clan_past_members(
            &self,
            clan_tag: &str,
        ) -> Result<cos_clan_history::ClanPastMembers, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_clan_past_members({})", clan_tag);
            clan_tag.parse::<LogicLong>()?;
            let url = format!(
                "{}{}/{}{}",
                Self::BASE_COS_URL,
                Self::COS_CLANS_ENDPOINT,
                urlencoding::encode(clan_tag),
                Self::COS_CLANS_PAST_MEMBERS_ENDPOINT
            );
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_war_wins_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::ClanLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_war_wins_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_CLAN_WAR_WINS_ENDPOINT,),
                options.build_for_clan(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_war_win_streak_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::ClanLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_war_win_streak_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!(
                    "{}{}",
                    Self::BASE_COS_URL,
                    Self::COS_RANKINGS_CLAN_WAR_WIN_STREAK_ENDPOINT,
                ),
                options.build_for_clan(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_best_war_win_streak_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::ClanLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_best_war_win_streak_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!(
                    "{}{}",
                    Self::BASE_COS_URL,
                    Self::COS_RANKINGS_CLAN_BEST_WAR_WIN_STREAK_ENDPOINT,
                ),
                options.build_for_clan(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_clan_trophies_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::ClanLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_clan_trophies_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_CLAN_TROPHIES_ENDPOINT,),
                options.build_for_clan(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_clan_versus_trophies_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::ClanLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_clan_versus_trophies_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!(
                    "{}{}",
                    Self::BASE_COS_URL,
                    Self::COS_RANKINGS_CLAN_VERSUS_TROPHIES_ENDPOINT,
                ),
                options.build_for_clan(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_trophies_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_trophies_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_PLAYER_TROPHIES_ENDPOINT,),
                options.build_for_player(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_versus_trophies_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_versus_trophies_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!(
                    "{}{}",
                    Self::BASE_COS_URL,
                    Self::COS_RANKINGS_PLAYER_VERSUS_TROPHIES_ENDPOINT,
                ),
                options.build_for_player(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_best_trophies_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_best_trophies_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!(
                    "{}{}",
                    Self::BASE_COS_URL,
                    Self::COS_RANKINGS_PLAYER_BEST_TROPHIES_ENDPOINT,
                ),
                options.build_for_player(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_best_versus_trophies_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_best_versus_trophies_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!(
                    "{}{}",
                    Self::BASE_COS_URL,
                    Self::COS_RANKINGS_PLAYER_BEST_VERSUS_TROPHIES_ENDPOINT,
                ),
                options.build_for_player(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_legend_trophies_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::LegendsLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_legend_trophies_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_PLAYER_LEGEND_TROPHIES,),
                options.build_for_legends(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_war_stars_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_war_stars_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_PLAYER_WAR_STARS,),
                options.build_for_player(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_cwl_war_stars_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_cwl_war_stars_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_PLAYER_CWL_WAR_STARS,),
                options.build_for_player(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_attack_wins_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_attack_wins_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_PLAYER_ATTACK_WINS,),
                options.build_for_player(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_defense_wins_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_defense_wins_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_PLAYER_DEFENSE_WINS,),
                options.build_for_player(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_versus_battle_wins_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_versus_battle_wins_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_PLAYER_VERSUS_BATTLE_WINS,),
                options.build_for_player(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_heroic_heist_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_heroic_heist_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_PLAYER_HEROIC_HEIST,),
                options.build_for_player(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_conqueror_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_conqueror_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_PLAYER_CONQUEROR,),
                options.build_for_player(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_unbreakable_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_unbreakable_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_PLAYER_UNBREAKABLE,),
                options.build_for_player(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_humiliator_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_humiliator_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_PLAYER_HUMILIATOR,),
                options.build_for_player(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_un_build_it_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_un_build_it_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_PLAYER_UN_BUILD_IT,),
                options.build_for_builder(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_games_champion_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_games_champion_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_PLAYER_GAMES_CHAMPION,),
                options.build_for_player(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_troops_donated_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_troops_donated_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_PLAYER_TROOPS_DONATED,),
                options.build_for_player(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_troops_received_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_troops_received_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_PLAYER_TROOPS_RECEIVED,),
                options.build_for_player(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_friend_in_need_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_friend_in_need_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_PLAYER_FRIEND_IN_NEED,),
                options.build_for_player(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_exp_level_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_exp_level_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_PLAYER_EXP_LEVEL,),
                options.build_for_player(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_well_seasoned_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_well_seasoned_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_PLAYER_WELL_SEASONED,),
                options.build_for_player(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_get_those_goblins_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_get_those_goblins_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_PLAYER_GET_THOSE_GOBLINS,),
                options.build_for_player(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }

        pub async fn cos_get_player_nice_and_tidy_leaderboard(
            &self,
            options: cos_options::Options,
        ) -> Result<leaderboard::PlayerLeaderboard, APIError> {
            #[cfg(feature = "tracing")]
            tracing::trace!("cos_get_player_nice_and_tidy_leaderboard({})", options);
            let url = Url::parse_with_params(
                &format!("{}{}", Self::BASE_COS_URL, Self::COS_RANKINGS_PLAYER_NICE_AND_TIDY,),
                options.build_for_player(),
            )?;
            self.parse_json(self.cos_get(url), true).await
        }
    }
}