-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathclient.rs
More file actions
587 lines (538 loc) · 17.7 KB
/
client.rs
File metadata and controls
587 lines (538 loc) · 17.7 KB
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
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
#![allow(clippy::missing_errors_doc)]
//! A client to do all sorts of things with the API
use reqwest::StatusCode;
use super::{
Queryable,
TimedEvent,
error::Error,
language::Language,
models::items::Item,
utils::{
Change,
CrossDiff,
},
};
/// The client that acts as a convenient way to query models.
///
/// ## Example
/// ```rust
/// use warframe::worldstate::{
/// Client,
/// Error,
/// queryable::{
/// Cetus,
/// Fissure,
/// },
/// };
///
/// #[tokio::main]
/// async fn main() -> Result<(), Error> {
/// let client = Client::new();
///
/// let cetus: Cetus = client.fetch::<Cetus>().await?;
/// let fissures: Vec<Fissure> = client.fetch::<Fissure>().await?;
///
/// Ok(())
/// }
/// ```
///
/// Check the [queryable](crate::worldstate::queryable) module for all queryable types.
#[derive(Default, Debug, Clone)]
pub struct Client {
session: reqwest::Client,
}
impl Client {
/// Creates a new [Client].
#[must_use]
pub fn new() -> Self {
Self::default()
}
}
// impl FETCH
impl Client {
/// Fetches an instance of a specified model.
///
/// # Example
/// ```rust,no_run
/// use warframe::worldstate::{
/// Client,
/// Error,
/// queryable::{
/// Cetus,
/// Fissure,
/// },
/// };
///
/// #[tokio::main]
/// async fn main() -> Result<(), Error> {
/// let client = Client::new();
///
/// let cetus: Cetus = client.fetch::<Cetus>().await?;
/// let fissures: Vec<Fissure> = client.fetch::<Fissure>().await?;
///
/// Ok(())
/// }
/// ```
pub async fn fetch<T>(&self) -> Result<T::Return, Error>
where
T: Queryable,
{
<T as Queryable>::query(&self.session).await
}
/// Fetches an instance of a specified model in a supplied Language.
///
/// # Examples
///
/// ```rust,no_run
/// use warframe::worldstate::{
/// Client,
/// Error,
/// Language,
/// queryable::{
/// Cetus,
/// Fissure,
/// },
/// };
///
/// #[tokio::main]
/// async fn main() -> Result<(), Error> {
/// let client = Client::new();
///
/// let cetus: Cetus = client.fetch_using_lang::<Cetus>(Language::ZH).await?;
/// let fissures: Vec<Fissure> = client.fetch_using_lang::<Fissure>(Language::ZH).await?;
///
/// Ok(())
/// }
/// ```
pub async fn fetch_using_lang<T>(&self, language: Language) -> Result<T::Return, Error>
where
T: Queryable,
{
T::query_with_language(&self.session, language).await
}
/// Queries an item by its name and returns the closest matching item.
///
/// # Examples
///
/// ```rust,no_run
/// use warframe::worldstate::{
/// Client,
/// Error,
/// items::{
/// Item,
/// weapon::Weapon,
/// },
/// };
///
/// #[tokio::main]
/// async fn main() -> Result<(), Error> {
/// let client = Client::new();
///
/// let weapon = client.query_item("Acceltra Prime").await?;
///
/// assert!(match weapon {
/// Some(Item::Weapon(weapon)) => matches!(*weapon, Weapon::Rifle(_)),
/// _ => false,
/// });
///
/// Ok(())
/// }
/// ```
pub async fn query_item(&self, query: &str) -> Result<Option<Item>, Error> {
self.query_by_url(format!(
"https://api.warframestat.us/items/{}/?language=en",
urlencoding::encode(query),
))
.await
}
/// Queries an item by its name and returns the closest matching item.
///
/// # Examples
///
/// ```rust,no_run
/// use warframe::worldstate::{
/// Client,
/// Error,
/// Language,
/// items::Item,
/// };
///
/// #[tokio::main]
/// async fn main() -> Result<(), Error> {
/// let client = Client::new();
///
/// let nano_spores = client
/// .query_item_using_lang("Nanosporen", Language::DE)
/// .await?;
///
/// assert!(matches!(nano_spores, Some(Item::Misc(_))));
///
/// Ok(())
/// }
/// ```
pub async fn query_item_using_lang(
&self,
query: &str,
language: Language,
) -> Result<Option<Item>, Error> {
self.query_by_url(format!(
"https://api.warframestat.us/items/{}/?language={}",
urlencoding::encode(query),
language
))
.await
}
async fn query_by_url(&self, url: String) -> Result<Option<Item>, Error> {
let response = self.session.get(url).send().await?;
if response.status() == StatusCode::NOT_FOUND {
return Ok(None);
}
let json = response.text().await?;
let item = serde_json::from_str::<Item>(&json)?;
Ok(Some(item))
}
/// Asynchronous method that continuously fetches updates for a given type `T` and invokes a
/// callback function.
///
/// # Arguments
///
/// - `callback`: A function that implements the `ListenerCallback` trait and is called with the
/// previous and new values of `T`.
///
/// # Generic Constraints
///
/// - `T`: Must implement the `Queryable` and `TimedEvent` traits.
/// - `Callback`: Must implement the `ListenerCallback` trait with a lifetime parameter `'any`
/// and type parameter `T`.
///
/// # Returns
///
/// - `Result<(), Error>`: Returns `Ok(())` if the operation is successful, otherwise returns an
/// `Error`.
///
/// # Example
///
/// ```rust
/// use std::error::Error;
///
/// use warframe::worldstate::{
/// Client,
/// queryable::Cetus,
/// };
///
/// async fn on_cetus_update(before: &Cetus, after: &Cetus) {
/// println!("BEFORE : {before:?}");
/// println!("AFTER : {after:?}");
/// }
///
/// #[tokio::main]
/// async fn main() -> Result<(), Box<dyn Error>> {
/// let client = Client::new();
///
/// client.call_on_update(on_cetus_update); // don't forget to start it as a bg task (or .await it)s
/// Ok(())
/// }
/// ```
#[allow(clippy::missing_panics_doc)]
pub async fn call_on_update<T, Callback>(&self, callback: Callback) -> Result<(), Error>
where
T: TimedEvent + Queryable<Return = T>,
for<'a, 'b> Callback: AsyncFn(&'a T, &'b T),
{
tracing::debug!("{} (LISTENER) :: Started", std::any::type_name::<T>());
let mut item = self.fetch::<T>().await?;
loop {
if item.expiry() <= chrono::offset::Utc::now() {
tracing::debug!(
listener = %std::any::type_name::<T>(),
"(LISTENER) Fetching new possible update"
);
tokio::time::sleep(std::time::Duration::from_secs(30)).await;
let new_item = self.fetch::<T>().await?;
if item.expiry() >= new_item.expiry() {
continue;
}
callback(&item, &new_item).await;
item = new_item;
}
let time_to_sleep = item.expiry() - chrono::offset::Utc::now();
tracing::debug!(
listener = %std::any::type_name::<T>(),
sleep_duration = %time_to_sleep.num_seconds(),
"(LISTENER) Sleeping"
);
tokio::time::sleep(time_to_sleep.to_std().unwrap()).await;
}
}
/// Asynchronous method that continuously fetches updates for a given type `T` and invokes a
/// callback function.
///
/// # Arguments
///
/// - `callback`: A function that implements the `ListenerCallback` trait and is called with the
/// previous and new values of `T`.
///
/// # Generic Constraints
///
/// - `T`: Must implement the `Queryable`, `TimedEvent` and `PartialEq` traits.
/// - `Callback`: Must implement the `ListenerCallback` trait with a lifetime parameter `'any`
/// and type parameter `T`.
///
/// # Returns
///
/// - `Result<(), Error>`: Returns `Ok(())` if the operation is successful, otherwise returns an
/// `Error`.
///
/// # Example
///
/// ```rust
/// use std::error::Error;
///
/// use warframe::worldstate::{
/// Client,
/// Change,
/// queryable::Fissure,
/// };
///
/// /// This function will be called once a fissure updates.
/// /// This will send a request to the corresponding endpoint once every 30s
/// /// and compare the results for changes.
/// async fn on_fissure_update(fissure: &Fissure, change: Change) {
/// match change {
/// Change::Added => println!("Fissure ADDED : {fissure:?}"),
/// Change::Removed => println!("Fissure REMOVED : {fissure:?}"),
/// }
/// }
///
/// #[tokio::main]
/// async fn main() -> Result<(), Box<dyn Error>> {
/// // initialize a client (included in the prelude)
/// let client = Client::new();
///
/// // Pass the function to the handler
/// // (will return a Future)
/// client.call_on_nested_update(on_fissure_update); // don't forget to start it as a bg task (or .await it)
/// Ok(())
/// }
/// ```
#[allow(clippy::missing_panics_doc)]
#[allow(clippy::missing_errors_doc)]
pub async fn call_on_nested_update<T, Callback>(&self, callback: Callback) -> Result<(), Error>
where
T: TimedEvent + Queryable<Return = Vec<T>> + PartialEq,
for<'any> Callback: AsyncFn(&'any T, Change),
{
tracing::debug!(
listener = %std::any::type_name::<Vec<T>>(),
"(LISTENER) Started"
);
let mut items = self.fetch::<T>().await?;
loop {
tokio::time::sleep(std::time::Duration::from_secs(30)).await;
tracing::debug!(
listener = %std::any::type_name::<Vec<T>>(),
"(LISTENER) Fetching new possible state"
);
let new_items = self.fetch::<T>().await?;
let diff = CrossDiff::new(&items, &new_items);
let removed_items = diff.removed();
let added_items = diff.added();
if !removed_items.is_empty() || !added_items.is_empty() {
tracing::debug!(
listener = %std::any::type_name::<Vec<T>>(),
"(LISTENER) Found changes, proceeding to call callback with every change"
);
for (item, change) in removed_items.into_iter().chain(added_items) {
// call callback fn
callback(item, change).await;
}
items = new_items;
}
}
}
/// Asynchronous method that calls a callback function with state on update.
///
/// # Arguments
///
/// - `callback`: A callback function that takes the current item, the new item, and the state
/// as arguments.
/// - `state`: The state object that will be passed to the callback function.
///
/// # Generic Parameters
///
/// - `S`: The type of the state object. It must be `Sized`, `Send`, `Sync`, and `Clone`.
/// - `T`: Must implement the `Queryable` and `TimedEvent` traits.
/// - `Callback`: The type of the callback function. It must implement the
/// `StatefulListenerCallback` trait with the item type `T` and the state type `S`.
///
/// # Returns
///
/// This method returns a `Result` indicating whether the operation was successful or an
/// `Error` occurred. The result is `Ok(())` if the operation was successful.
///
/// # Examples
///
/// ```rust
/// use std::{error::Error, sync::Arc};
///
/// use warframe::worldstate::{Client, queryable::Cetus};
///
/// // Define some state
/// #[derive(Debug)]
/// struct MyState {
/// _num: i32,
/// _s: String,
/// }
///
/// async fn on_cetus_update(state: Arc<MyState>, before: &Cetus, after: &Cetus) {
/// println!("STATE : {state:?}");
/// println!("BEFORE : {before:?}");
/// println!("AFTER : {after:?}");
/// }
///
/// #[tokio::main]
/// async fn main() -> Result<(), Box<dyn Error>> {
/// let client = Client::new();
///
/// // Note that the state will be cloned into the handler, so Arc is preferred
/// let state = Arc::new(MyState {
/// _num: 69,
/// _s: "My ginormous ass".into(),
/// });
///
/// client
/// .call_on_update_with_state(on_cetus_update, state); // don't forget to start it as a bg task (or .await it)
/// Ok(())
/// }
/// ```
#[allow(clippy::missing_panics_doc)]
pub async fn call_on_update_with_state<S, T, Callback>(
&self,
callback: Callback,
state: S,
) -> Result<(), Error>
where
S: Sized + Send + Sync + Clone,
T: TimedEvent + Queryable<Return = T>,
for<'a, 'b> Callback: AsyncFn(S, &'a T, &'b T),
{
let mut item = self.fetch::<T>().await?;
loop {
if item.expiry() <= chrono::offset::Utc::now() {
tracing::debug!(
listener = %std::any::type_name::<T>(),
"(LISTENER) Fetching new possible state"
);
tokio::time::sleep(std::time::Duration::from_secs(30)).await;
let new_item = self.fetch::<T>().await?;
if item.expiry() >= new_item.expiry() {
continue;
}
callback(state.clone(), &item, &new_item).await;
item = new_item;
}
let time_to_sleep = item.expiry() - chrono::offset::Utc::now();
tracing::debug!(
listener = %std::any::type_name::<T>(),
sleep_duration = %time_to_sleep.num_seconds(),
"(LISTENER) Sleeping"
);
tokio::time::sleep(time_to_sleep.to_std().unwrap()).await;
}
}
/// Asynchronous method that calls a callback function on nested updates with a given state.
///
/// # Arguments
///
/// * `callback` - The callback function to be called on each change.
/// * `state` - The state to be passed to the callback function.
///
/// # Generic Constraints
///
/// * `S` - The type of the state, which must be `Sized`, `Send`, `Sync`, and `Clone`.
/// * `T` - Must implement the `Queryable`, `TimedEvent` and `PartialEq` traits.
/// * `Callback` - The type of the callback function, which must implement the
/// `StatefulNestedListenerCallback` trait.
///
/// # Returns
///
/// Returns `Ok(())` if the callback function is successfully called on each change, or an
/// `Error` if an error occurs.
///
/// # Example
///
/// ```rust
/// use std::{error::Error, sync::Arc};
///
/// use warframe::worldstate::{Change, Client, queryable::Fissure};
///
/// // Define some state
/// #[derive(Debug)]
/// struct MyState {
/// _num: i32,
/// _s: String,
/// }
///
/// async fn on_fissure_update(state: Arc<MyState>, fissure: &Fissure, change: Change) {
/// println!("STATE : {state:?}");
/// match change {
/// Change::Added => println!("FISSURE ADDED : {fissure:?}"),
/// Change::Removed => println!("FISSURE REMOVED : {fissure:?}"),
/// }
/// }
///
/// #[tokio::main]
/// async fn main() -> Result<(), Box<dyn Error>> {
/// let client = Client::new();
///
/// // Note that the state will be cloned into the handler, so Arc is preferred
/// let state = Arc::new(MyState {
/// _num: 69,
/// _s: "My ginormous ass".into(),
/// });
///
/// client
/// .call_on_nested_update_with_state(on_fissure_update, state); // don't forget to start it as a bg task (or .await it)
/// Ok(())
/// }
/// ```
#[allow(clippy::missing_panics_doc)]
pub async fn call_on_nested_update_with_state<S, T, Callback>(
&self,
callback: Callback,
state: S,
) -> Result<(), Error>
where
S: Sized + Send + Sync + Clone,
T: Queryable<Return = Vec<T>> + TimedEvent + PartialEq,
for<'any> Callback: AsyncFn(S, &'any T, Change),
{
tracing::debug!(
listener = %std::any::type_name::<Vec<T>>(),
"(LISTENER) Started"
);
let mut items = self.fetch::<T>().await?;
loop {
tokio::time::sleep(std::time::Duration::from_secs(30)).await;
tracing::debug!(
listener = %std::any::type_name::<Vec<T>>(),
"(LISTENER) Fetching new possible state"
);
let new_items = self.fetch::<T>().await?;
let diff = CrossDiff::new(&items, &new_items);
let removed_items = diff.removed();
let added_items = diff.added();
if !removed_items.is_empty() || !added_items.is_empty() {
tracing::debug!(
listener = %std::any::type_name::<Vec<T>>(),
"(LISTENER) Found changes, proceeding to call callback with every change"
);
for (item, change) in removed_items.into_iter().chain(added_items) {
// call callback fn
callback(state.clone(), item, change).await;
}
items = new_items;
}
}
}
}