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
|
//! Base HTTP client for makima API.
use reqwest::Client;
use serde::{de::DeserializeOwned, Serialize};
use std::time::Duration;
use thiserror::Error;
/// API client errors.
#[derive(Error, Debug)]
pub enum ApiError {
#[error("HTTP request failed: {0}")]
Request(#[from] reqwest::Error),
#[error("API error (HTTP {status}): {message}")]
Api { status: u16, message: String },
#[error("Failed to parse response: {0}")]
Parse(String),
}
/// Maximum number of retry attempts for failed requests.
const MAX_RETRIES: u32 = 3;
/// Initial backoff delay in milliseconds.
const INITIAL_BACKOFF_MS: u64 = 100;
/// HTTP client for makima API.
pub struct ApiClient {
client: Client,
base_url: String,
api_key: String,
}
impl ApiClient {
/// Create a new API client.
pub fn new(base_url: String, api_key: String) -> Result<Self, ApiError> {
let client = Client::builder()
.build()?;
Ok(Self {
client,
base_url: base_url.trim_end_matches('/').to_string(),
api_key,
})
}
/// Make a GET request with retry.
pub async fn get<T: DeserializeOwned>(&self, path: &str) -> Result<T, ApiError> {
let url = format!("{}{}", self.base_url, path);
let mut last_error = None;
for attempt in 0..MAX_RETRIES {
if attempt > 0 {
tokio::time::sleep(Self::backoff_delay(attempt - 1)).await;
}
let result = self.client
.get(&url)
// Send both headers - server will try tool key first, then API key
.header("X-Makima-Tool-Key", &self.api_key)
.header("X-Makima-API-Key", &self.api_key)
.send()
.await;
match result {
Ok(response) => {
match self.handle_response(response).await {
Ok(value) => return Ok(value),
Err(e) if Self::is_retryable(&e) && attempt < MAX_RETRIES - 1 => {
last_error = Some(e);
continue;
}
Err(e) => return Err(e),
}
}
Err(e) => {
let error = ApiError::Request(e);
if Self::is_retryable(&error) && attempt < MAX_RETRIES - 1 {
last_error = Some(error);
continue;
}
return Err(error);
}
}
}
Err(last_error.unwrap())
}
/// Make a POST request with JSON body and retry.
pub async fn post<T: DeserializeOwned, B: Serialize>(
&self,
path: &str,
body: &B,
) -> Result<T, ApiError> {
let url = format!("{}{}", self.base_url, path);
let mut last_error = None;
for attempt in 0..MAX_RETRIES {
if attempt > 0 {
tokio::time::sleep(Self::backoff_delay(attempt - 1)).await;
}
let result = self.client
.post(&url)
// Send both headers - server will try tool key first, then API key
.header("X-Makima-Tool-Key", &self.api_key)
.header("X-Makima-API-Key", &self.api_key)
.header("Content-Type", "application/json")
.json(body)
.send()
.await;
match result {
Ok(response) => {
match self.handle_response(response).await {
Ok(value) => return Ok(value),
Err(e) if Self::is_retryable(&e) && attempt < MAX_RETRIES - 1 => {
last_error = Some(e);
continue;
}
Err(e) => return Err(e),
}
}
Err(e) => {
let error = ApiError::Request(e);
if Self::is_retryable(&error) && attempt < MAX_RETRIES - 1 {
last_error = Some(error);
continue;
}
return Err(error);
}
}
}
Err(last_error.unwrap())
}
/// Make a POST request without body and retry.
pub async fn post_empty<T: DeserializeOwned>(&self, path: &str) -> Result<T, ApiError> {
let url = format!("{}{}", self.base_url, path);
let mut last_error = None;
for attempt in 0..MAX_RETRIES {
if attempt > 0 {
tokio::time::sleep(Self::backoff_delay(attempt - 1)).await;
}
let result = self.client
.post(&url)
// Send both headers - server will try tool key first, then API key
.header("X-Makima-Tool-Key", &self.api_key)
.header("X-Makima-API-Key", &self.api_key)
.send()
.await;
match result {
Ok(response) => {
match self.handle_response(response).await {
Ok(value) => return Ok(value),
Err(e) if Self::is_retryable(&e) && attempt < MAX_RETRIES - 1 => {
last_error = Some(e);
continue;
}
Err(e) => return Err(e),
}
}
Err(e) => {
let error = ApiError::Request(e);
if Self::is_retryable(&error) && attempt < MAX_RETRIES - 1 {
last_error = Some(error);
continue;
}
return Err(error);
}
}
}
Err(last_error.unwrap())
}
/// Make a PUT request with JSON body and retry.
pub async fn put<T: DeserializeOwned, B: Serialize>(
&self,
path: &str,
body: &B,
) -> Result<T, ApiError> {
let url = format!("{}{}", self.base_url, path);
let mut last_error = None;
for attempt in 0..MAX_RETRIES {
if attempt > 0 {
tokio::time::sleep(Self::backoff_delay(attempt - 1)).await;
}
let result = self.client
.put(&url)
// Send both headers - server will try tool key first, then API key
.header("X-Makima-Tool-Key", &self.api_key)
.header("X-Makima-API-Key", &self.api_key)
.header("Content-Type", "application/json")
.json(body)
.send()
.await;
match result {
Ok(response) => {
match self.handle_response(response).await {
Ok(value) => return Ok(value),
Err(e) if Self::is_retryable(&e) && attempt < MAX_RETRIES - 1 => {
last_error = Some(e);
continue;
}
Err(e) => return Err(e),
}
}
Err(e) => {
let error = ApiError::Request(e);
if Self::is_retryable(&error) && attempt < MAX_RETRIES - 1 {
last_error = Some(error);
continue;
}
return Err(error);
}
}
}
Err(last_error.unwrap())
}
/// Make a DELETE request with retry.
pub async fn delete(&self, path: &str) -> Result<(), ApiError> {
let url = format!("{}{}", self.base_url, path);
let mut last_error = None;
for attempt in 0..MAX_RETRIES {
if attempt > 0 {
tokio::time::sleep(Self::backoff_delay(attempt - 1)).await;
}
let result = self.client
.delete(&url)
.header("X-Makima-Tool-Key", &self.api_key)
.header("X-Makima-API-Key", &self.api_key)
.send()
.await;
match result {
Ok(response) => {
let status = response.status();
if !status.is_success() {
let body = response.text().await.unwrap_or_default();
let error = ApiError::Api {
status: status.as_u16(),
message: body,
};
if Self::is_retryable(&error) && attempt < MAX_RETRIES - 1 {
last_error = Some(error);
continue;
}
return Err(error);
}
return Ok(());
}
Err(e) => {
let error = ApiError::Request(e);
if Self::is_retryable(&error) && attempt < MAX_RETRIES - 1 {
last_error = Some(error);
continue;
}
return Err(error);
}
}
}
Err(last_error.unwrap())
}
/// Make a DELETE request with response and retry.
pub async fn delete_with_response<T: DeserializeOwned>(&self, path: &str) -> Result<T, ApiError> {
let url = format!("{}{}", self.base_url, path);
let mut last_error = None;
for attempt in 0..MAX_RETRIES {
if attempt > 0 {
tokio::time::sleep(Self::backoff_delay(attempt - 1)).await;
}
let result = self.client
.delete(&url)
.header("X-Makima-Tool-Key", &self.api_key)
.header("X-Makima-API-Key", &self.api_key)
.send()
.await;
match result {
Ok(response) => {
match self.handle_response(response).await {
Ok(value) => return Ok(value),
Err(e) if Self::is_retryable(&e) && attempt < MAX_RETRIES - 1 => {
last_error = Some(e);
continue;
}
Err(e) => return Err(e),
}
}
Err(e) => {
let error = ApiError::Request(e);
if Self::is_retryable(&error) && attempt < MAX_RETRIES - 1 {
last_error = Some(error);
continue;
}
return Err(error);
}
}
}
Err(last_error.unwrap())
}
/// Handle API response.
async fn handle_response<T: DeserializeOwned>(
&self,
response: reqwest::Response,
) -> Result<T, ApiError> {
let status = response.status();
let status_code = status.as_u16();
if !status.is_success() {
let body = response.text().await.unwrap_or_default();
return Err(ApiError::Api {
status: status_code,
message: body,
});
}
let body = response.text().await?;
// Handle empty responses
if body.is_empty() || body == "null" {
// Try to parse empty/null as the target type
serde_json::from_str::<T>("null")
.or_else(|_| serde_json::from_str::<T>("{}"))
.map_err(|e| ApiError::Parse(e.to_string()))
} else {
serde_json::from_str::<T>(&body)
.map_err(|e| ApiError::Parse(format!("{}: {}", e, body)))
}
}
/// Check if an error is retryable (connection errors or 5xx server errors).
fn is_retryable(error: &ApiError) -> bool {
match error {
ApiError::Request(e) => {
// Retry on connection errors, timeouts, etc.
e.is_connect() || e.is_timeout() || e.is_request()
}
ApiError::Api { status, .. } => {
// Retry on 5xx server errors
*status >= 500
}
ApiError::Parse(_) => false,
}
}
/// Calculate backoff delay for a given attempt (exponential backoff).
fn backoff_delay(attempt: u32) -> Duration {
Duration::from_millis(INITIAL_BACKOFF_MS * 2u64.pow(attempt))
}
}
|