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
//! Rivens 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::{Riven, RivenAttribute};
use super::ApiResponse;
impl<S: AuthState> Client<S> {
/// Fetch all riven-compatible weapons directly from the API.
///
/// This always makes a network request. Consider using [`get_rivens`](Self::get_rivens)
/// with a cache for better performance.
///
/// # Caching Recommendation
///
/// This endpoint returns ~300 weapons and the list rarely changes
/// (only when new weapons 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 rivens = client.fetch_rivens().await?;
/// println!("Found {} riven weapons", rivens.len());
/// Ok(())
/// }
/// ```
pub async fn fetch_rivens(&self) -> Result<Vec<Riven>> {
self.wait_for_rate_limit().await;
let response = self
.http
.get(format!("{}/riven/weapons", 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 rivens",
error_response,
));
}
return Err(Error::api(
status,
format!("Failed to fetch rivens: {}", body),
));
}
let body = response.text().await.map_err(Error::Network)?;
let api_response: ApiResponse<Vec<Riven>> =
serde_json::from_str(&body).map_err(|e| Error::parse_with_body(e.to_string(), body))?;
Ok(api_response.data)
}
/// Get all riven-compatible weapons, 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_rivens`](Self::fetch_rivens)).
///
/// # 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 rivens = client.get_rivens(Some(&mut cache)).await?;
///
/// // Second call uses cache
/// let rivens = client.get_rivens(Some(&mut cache)).await?;
///
/// Ok(())
/// }
/// ```
pub async fn get_rivens(&self, cache: Option<&mut ApiCache>) -> Result<Vec<Riven>> {
match cache {
Some(c) => {
if let Some(rivens) = c.get_rivens() {
return Ok(rivens.to_vec());
}
let rivens = self.fetch_rivens().await?;
c.set_rivens(rivens.clone());
Ok(rivens)
}
None => self.fetch_rivens().await,
}
}
/// Get rivens 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 rivens = client.get_rivens_with_ttl(
/// Some(&mut cache),
/// Duration::from_secs(24 * 60 * 60),
/// ).await?;
///
/// Ok(())
/// }
/// ```
pub async fn get_rivens_with_ttl(
&self,
cache: Option<&mut ApiCache>,
max_age: Duration,
) -> Result<Vec<Riven>> {
if let Some(c) = cache {
c.invalidate_rivens_if_older_than(max_age);
self.get_rivens(Some(c)).await
} else {
self.fetch_rivens().await
}
}
/// Get a single riven weapon by slug.
///
/// # Example
///
/// ```no_run
/// use wf_market::Client;
///
/// async fn example() -> wf_market::Result<()> {
/// let client = Client::builder().build()?;
/// let riven = client.get_riven("braton").await?;
///
/// println!("{}: disposition {} (tier {})",
/// riven.name(),
/// riven.disposition,
/// riven.disposition_tier()
/// );
/// Ok(())
/// }
/// ```
pub async fn get_riven(&self, slug: &str) -> Result<Riven> {
self.wait_for_rate_limit().await;
let response = self
.http
.get(format!("{}/riven/weapon/{}", 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!(
"Riven weapon 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 riven weapon: {}", slug),
error_response,
));
}
return Err(Error::api(
status,
format!("Failed to fetch riven weapon {}: {}", slug, body),
));
}
let body = response.text().await.map_err(Error::Network)?;
let api_response: ApiResponse<Riven> =
serde_json::from_str(&body).map_err(|e| Error::parse_with_body(e.to_string(), body))?;
Ok(api_response.data)
}
/// Get all riven attributes/stats.
///
/// Returns all possible attributes that can appear on riven mods.
///
/// # Example
///
/// ```no_run
/// use wf_market::Client;
///
/// async fn example() -> wf_market::Result<()> {
/// let client = Client::builder().build()?;
/// let attributes = client.get_riven_attributes().await?;
///
/// for attr in &attributes {
/// println!("{}: {} / -{}", attr.name(), attr.prefix, attr.suffix);
/// if attr.is_inverted() {
/// println!(" (inverted - positive is bad)");
/// }
/// }
/// Ok(())
/// }
/// ```
pub async fn get_riven_attributes(&self) -> Result<Vec<RivenAttribute>> {
self.wait_for_rate_limit().await;
let response = self
.http
.get(format!("{}/riven/attributes", 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 riven attributes",
error_response,
));
}
return Err(Error::api(
status,
format!("Failed to fetch riven attributes: {}", body),
));
}
let body = response.text().await.map_err(Error::Network)?;
let api_response: ApiResponse<Vec<RivenAttribute>> =
serde_json::from_str(&body).map_err(|e| Error::parse_with_body(e.to_string(), body))?;
Ok(api_response.data)
}
}