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
//! Items API endpoints.
use std::time::Duration;
use crate::cache::ApiCache;
use crate::client::{AuthState, Client};
use crate::error::{ApiErrorResponse, Error, Result};
use crate::internal::BASE_URL;
use crate::models::{Item, ItemSet};
use super::ApiResponse;
impl<S: AuthState> Client<S> {
/// Fetch all tradable items directly from the API.
///
/// This always makes a network request. Consider using [`get_items`](Self::get_items)
/// with a cache for better performance.
///
/// # Caching Recommendation
///
/// This endpoint returns ~4000 items and the list rarely changes
/// (only when new items are added to the game). Consider caching
/// the result for 12-24 hours.
///
/// # Example
///
/// ```no_run
/// use wf_market::Client;
///
/// async fn example() -> wf_market::Result<()> {
/// let client = Client::builder().build()?;
/// let items = client.fetch_items().await?;
/// println!("Found {} items", items.len());
/// Ok(())
/// }
/// ```
pub async fn fetch_items(&self) -> Result<Vec<Item>> {
self.wait_for_rate_limit().await;
let response = self
.http
.get(format!("{}/items", BASE_URL))
.send()
.await
.map_err(Error::Network)?;
let status = response.status();
if !status.is_success() {
let body = response.text().await.unwrap_or_default();
if let Ok(error_response) = serde_json::from_str::<ApiErrorResponse>(&body) {
return Err(Error::api_with_response(
status,
"Failed to fetch items",
error_response,
));
}
return Err(Error::api(
status,
format!("Failed to fetch items: {}", body),
));
}
let body = response.text().await.map_err(Error::Network)?;
let api_response: ApiResponse<Vec<Item>> =
serde_json::from_str(&body).map_err(|e| Error::parse_with_body(e.to_string(), body))?;
Ok(api_response.data)
}
/// Get all tradable items, using cache if provided.
///
/// If `cache` is `Some`, uses cached data if available, otherwise
/// fetches from the API and populates the cache.
///
/// If `cache` is `None`, fetches directly from the API (equivalent
/// to [`fetch_items`](Self::fetch_items)).
///
/// # Example
///
/// ```no_run
/// use wf_market::{Client, ApiCache};
///
/// async fn example() -> wf_market::Result<()> {
/// let client = Client::builder().build()?;
/// let mut cache = ApiCache::new();
///
/// // First call fetches from API
/// let items = client.get_items(Some(&mut cache)).await?;
///
/// // Second call uses cache
/// let items = client.get_items(Some(&mut cache)).await?;
///
/// // Without cache
/// let items = client.get_items(None).await?;
///
/// Ok(())
/// }
/// ```
pub async fn get_items(&self, cache: Option<&mut ApiCache>) -> Result<Vec<Item>> {
match cache {
Some(c) => {
if let Some(items) = c.get_items() {
return Ok(items.to_vec());
}
let items = self.fetch_items().await?;
c.set_items(items.clone());
Ok(items)
}
None => self.fetch_items().await,
}
}
/// Get items with a maximum cache age (TTL).
///
/// If the cache is older than `max_age`, it will be invalidated
/// and fresh data will be fetched.
///
/// # Example
///
/// ```no_run
/// use wf_market::{Client, ApiCache};
/// use std::time::Duration;
///
/// async fn example() -> wf_market::Result<()> {
/// let client = Client::builder().build()?;
/// let mut cache = ApiCache::new();
///
/// // Refresh if cache is older than 24 hours
/// let items = client.get_items_with_ttl(
/// Some(&mut cache),
/// Duration::from_secs(24 * 60 * 60),
/// ).await?;
///
/// Ok(())
/// }
/// ```
pub async fn get_items_with_ttl(
&self,
cache: Option<&mut ApiCache>,
max_age: Duration,
) -> Result<Vec<Item>> {
if let Some(c) = cache {
c.invalidate_items_if_older_than(max_age);
self.get_items(Some(c)).await
} else {
self.fetch_items().await
}
}
/// Fetch a single item by its slug.
///
/// # Example
///
/// ```no_run
/// use wf_market::Client;
///
/// async fn example() -> wf_market::Result<()> {
/// let client = Client::builder().build()?;
/// let item = client.get_item("nikana_prime_set").await?;
/// println!("Item: {}", item.name());
/// Ok(())
/// }
/// ```
pub async fn get_item(&self, slug: &str) -> Result<Item> {
self.wait_for_rate_limit().await;
let response = self
.http
.get(format!("{}/item/{}", BASE_URL, slug))
.send()
.await
.map_err(Error::Network)?;
let status = response.status();
if status == reqwest::StatusCode::NOT_FOUND {
return Err(Error::not_found(format!("Item not found: {}", slug)));
}
if !status.is_success() {
let body = response.text().await.unwrap_or_default();
if let Ok(error_response) = serde_json::from_str::<ApiErrorResponse>(&body) {
return Err(Error::api_with_response(
status,
format!("Failed to fetch item: {}", slug),
error_response,
));
}
return Err(Error::api(
status,
format!("Failed to fetch item {}: {}", slug, body),
));
}
let body = response.text().await.map_err(Error::Network)?;
let api_response: ApiResponse<Item> =
serde_json::from_str(&body).map_err(|e| Error::parse_with_body(e.to_string(), body))?;
Ok(api_response.data)
}
/// Get all items in a set.
///
/// Returns the complete set containing all parts for items that belong to a set.
/// If the item is not part of a set, returns an array containing only that item.
///
/// # Example
///
/// ```no_run
/// use wf_market::Client;
///
/// async fn example() -> wf_market::Result<()> {
/// let client = Client::builder().build()?;
/// let set = client.get_item_set("nikana_prime_set").await?;
///
/// println!("Set contains {} items:", set.len());
/// for item in &set.items {
/// println!(" - {} ({})", item.name(), item.slug);
/// }
///
/// // Get just the parts (excluding the set itself)
/// for part in set.parts() {
/// println!("Part: {}", part.name());
/// }
/// Ok(())
/// }
/// ```
pub async fn get_item_set(&self, slug: &str) -> Result<ItemSet> {
self.wait_for_rate_limit().await;
let response = self
.http
.get(format!("{}/item/{}/set", BASE_URL, slug))
.send()
.await
.map_err(Error::Network)?;
let status = response.status();
if status == reqwest::StatusCode::NOT_FOUND {
return Err(Error::not_found(format!("Item not found: {}", slug)));
}
if !status.is_success() {
let body = response.text().await.unwrap_or_default();
if let Ok(error_response) = serde_json::from_str::<ApiErrorResponse>(&body) {
return Err(Error::api_with_response(
status,
format!("Failed to fetch item set: {}", slug),
error_response,
));
}
return Err(Error::api(
status,
format!("Failed to fetch item set {}: {}", slug, body),
));
}
let body = response.text().await.map_err(Error::Network)?;
let api_response: ApiResponse<ItemSet> =
serde_json::from_str(&body).map_err(|e| Error::parse_with_body(e.to_string(), body))?;
Ok(api_response.data)
}
}