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
use crate::config::Config;
use crate::errors::AriError;
use base64::prelude::BASE64_STANDARD;
use base64::Engine;
use serde::de::DeserializeOwned;
use serde::Serialize;
use std::fmt::Display;
/// Represents the ARI client.
///
/// This struct holds the configuration and HTTP client for making requests to the ARI API.
#[derive(Debug)]
pub struct Client {
/// Configuration for the ARI client.
pub(crate) config: Config,
/// HTTP client for making requests.
pub(crate) client: reqwest::Client,
}
impl Client {
/// Creates a new client with the given configuration and HTTP client.
///
/// # Arguments
///
/// * `config` - The configuration for the ARI client.
/// * `client` - The HTTP client for making requests.
///
/// # Returns
///
/// A new instance of `Client`.
pub fn build(config: Config, client: reqwest::Client) -> Self {
Client { config, client }
}
/// Creates a new client with the given configuration.
///
/// # Arguments
///
/// * `config` - The configuration for the ARI client.
///
/// # Returns
///
/// A new instance of `Client`.
pub fn with_config(config: Config) -> Self {
Client {
config,
client: reqwest::Client::builder()
.connect_timeout(std::time::Duration::from_secs(5))
.http2_keep_alive_interval(Some(std::time::Duration::from_secs(5)))
.http2_keep_alive_while_idle(true)
.build()
.unwrap(),
}
}
/// Sets the HTTP client for making requests.
///
/// # Arguments
///
/// * `client` - The HTTP client to use.
///
/// # Returns
///
/// The updated `Client` instance.
pub fn with_client(mut self, client: reqwest::Client) -> Self {
self.client = client;
self
}
/// Returns an instance of the `Applications` API.
pub fn applications(&self) -> crate::apis::applications::Applications {
crate::apis::applications::Applications::new(self)
}
/// Returns an instance of the `Asterisk` API.
pub fn asterisk(&self) -> crate::apis::asterisk::Asterisk {
crate::apis::asterisk::Asterisk::new(self)
}
/// Returns an instance of the `Endpoints` API.
pub fn endpoints(&self) -> crate::apis::endpoints::Endpoints {
crate::apis::endpoints::Endpoints::new(self)
}
/// Returns an instance of the `Channels` API.
pub fn channels(&self) -> crate::apis::channels::Channels {
crate::apis::channels::Channels::new(self)
}
/// Returns an instance of the `Bridges` API.
pub fn bridges(&self) -> crate::apis::bridges::Bridges {
crate::apis::bridges::Bridges::new(self)
}
/// Returns an instance of the `Recordings` API.
pub fn recordings(&self) -> crate::apis::recordings::Recordings {
crate::apis::recordings::Recordings::new(self)
}
/// Returns an instance of the `Sounds` API.
pub fn sounds(&self) -> crate::apis::sounds::Sounds {
crate::apis::sounds::Sounds::new(self)
}
/// Returns an instance of the `Playbacks` API.
pub fn playbacks(&self) -> crate::apis::playbacks::Playbacks {
crate::apis::playbacks::Playbacks::new(self)
}
/// Returns an instance of the `DeviceStats` API.
pub fn device_stats(&self) -> crate::apis::device_stats::DeviceStats {
crate::apis::device_stats::DeviceStats::new(self)
}
/// Returns an instance of the `Mailboxes` API.
pub fn mailboxes(&self) -> crate::apis::mailboxes::Mailboxes {
crate::apis::mailboxes::Mailboxes::new(self)
}
/// Returns an instance of the `Events` API.
pub fn events(&self) -> crate::apis::events::Events {
crate::apis::events::Events::new(self)
}
/// Makes a GET request to the specified path and deserializes the response body.
///
/// # Arguments
///
/// * `path` - The path for the GET request.
///
/// # Returns
///
/// A `Result` containing the deserialized response body or an `AriError`.
pub(crate) async fn get<O>(&self, path: &str) -> Result<O, AriError>
where
O: DeserializeOwned,
{
let request_maker = || async {
self.client
.get(self.url(path))
.headers(self.headers())
.build()
.map_err(|e| AriError::Internal(e.to_string()))
};
self.execute(request_maker).await
}
/// Makes a GET request to the specified path with the given query and deserializes the response body.
///
/// # Arguments
///
/// * `path` - The path for the GET request.
/// * `query` - The query parameters for the GET request.
///
/// # Returns
///
/// A `Result` containing the deserialized response body or an `AriError`.
pub(crate) async fn get_with_query<Q, O>(&self, path: &str, query: &Q) -> Result<O, AriError>
where
O: DeserializeOwned,
Q: Serialize + ?Sized,
{
let request_maker = || async {
self.client
.get(self.url(path))
.query(query)
.headers(self.headers())
.build()
.map_err(|e| AriError::Internal(e.to_string()))
};
self.execute(request_maker).await
}
/// Makes a DELETE request to the specified path and deserializes the response body.
///
/// # Arguments
///
/// * `path` - The path for the DELETE request.
///
/// # Returns
///
/// A `Result` containing the deserialized response body or an `AriError`.
pub(crate) async fn delete<O>(&self, path: &str) -> Result<O, AriError>
where
O: DeserializeOwned,
{
let request_maker = || async {
self.client
.delete(self.url(path))
.headers(self.headers())
.build()
.map_err(|e| AriError::Internal(e.to_string()))
};
self.execute(request_maker).await
}
/// Makes a DELETE request to the specified path with the given query and deserializes the response body.
///
/// # Arguments
///
/// * `path` - The path for the DELETE request.
/// * `query` - The query parameters for the DELETE request.
///
/// # Returns
///
/// A `Result` containing the deserialized response body or an `AriError`.
pub(crate) async fn delete_with_query<O, Q>(&self, path: &str, query: &Q) -> Result<O, AriError>
where
O: DeserializeOwned,
Q: Serialize + ?Sized,
{
let request_maker = || async {
self.client
.delete(self.url(path))
.query(query)
.headers(self.headers())
.build()
.map_err(|e| AriError::Internal(e.to_string()))
};
self.execute(request_maker).await
}
/// Makes a POST request to the specified path with the given request body and deserializes the response body.
///
/// # Arguments
///
/// * `path` - The path for the POST request.
/// * `request` - The request body for the POST request.
///
/// # Returns
///
/// A `Result` containing the deserialized response body or an `AriError`.
pub(crate) async fn post<I, O>(&self, path: &str, request: I) -> Result<O, AriError>
where
I: Serialize,
O: DeserializeOwned,
{
let request_maker = || async {
let mut req = self.client.post(self.url(path)).headers(self.headers());
if !serde_json::to_value(&request)?.is_null() {
req = req.json(&request);
}
req.build().map_err(|e| AriError::Internal(e.to_string()))
};
self.execute(request_maker).await
}
/// Makes a POST request to the specified path with the given request body and query parameters, and deserializes the response body.
///
/// # Arguments
///
/// * `path` - The path for the POST request.
/// * `request` - The request body for the POST request.
/// * `query` - The query parameters for the POST request.
///
/// # Returns
///
/// A `Result` containing the deserialized response body or an `AriError`.
pub(crate) async fn post_with_query<I, Q, O>(
&self,
path: &str,
request: I,
query: &Q,
) -> Result<O, AriError>
where
I: Serialize,
O: DeserializeOwned,
Q: Serialize + ?Sized,
{
let request_maker = || async {
let mut req = self
.client
.post(self.url(path))
.query(query)
.headers(self.headers());
if !serde_json::to_value(&request)?.is_null() {
req = req.json(&request);
}
req.build().map_err(|e| AriError::Internal(e.to_string()))
};
self.execute(request_maker).await
}
/// Makes a PUT request to the specified path with the given request body and query parameters, and deserializes the response body.
///
/// # Arguments
///
/// * `path` - The path for the PUT request.
/// * `request` - The request body for the PUT request.
/// * `query` - The query parameters for the PUT request.
///
/// # Returns
///
/// A `Result` containing the deserialized response body or an `AriError`.
pub(crate) async fn put_with_query<I, O, Q>(
&self,
path: &str,
request: I,
query: &Q,
) -> Result<O, AriError>
where
I: Serialize,
O: DeserializeOwned,
Q: Serialize + ?Sized,
{
let request_maker = || async {
let mut req = self
.client
.put(self.url(path))
.query(query)
.headers(self.headers());
if !serde_json::to_value(&request)?.is_null() {
req = req.json(&request);
}
req.build().map_err(|e| AriError::Internal(e.to_string()))
};
self.execute(request_maker).await
}
/// Makes a PUT request to the specified path with the given request body and deserializes the response body.
///
/// # Arguments
///
/// * `path` - The path for the PUT request.
/// * `request` - The request body for the PUT request.
///
/// # Returns
///
/// A `Result` containing the deserialized response body or an `AriError`.
pub(crate) async fn put<I, O>(&self, path: &str, request: I) -> Result<O, AriError>
where
I: Serialize,
O: DeserializeOwned,
{
let request_maker = || async {
let mut req = self.client.put(self.url(path)).headers(self.headers());
if !serde_json::to_value(&request)?.is_null() {
req = req.json(&request);
}
req.build().map_err(|e| AriError::Internal(e.to_string()))
};
self.execute(request_maker).await
}
/// Constructs the full URL for the given path.
///
/// # Arguments
///
/// * `path` - The path to append to the base URL.
///
/// # Returns
///
/// The full URL as a string.
pub(crate) fn url(&self, path: impl Into<String> + Display) -> String {
format!("{}/ari{}", self.config.api_base, path)
}
/// Constructs the headers for the HTTP requests.
///
/// # Returns
///
/// A `HeaderMap` containing the necessary headers.
pub(crate) fn headers(&self) -> reqwest::header::HeaderMap {
let mut headers = reqwest::header::HeaderMap::new();
headers.insert(
reqwest::header::CONTENT_TYPE,
"application/json".parse().unwrap(),
);
headers.insert(
reqwest::header::AUTHORIZATION,
format!(
"Basic {}",
BASE64_STANDARD
.encode(format!("{}:{}", self.config.username, self.config.password))
)
.parse()
.unwrap(),
);
headers
}
/// Executes an HTTP request and retries on rate limit.
///
/// # Arguments
///
/// * `request_maker` - A closure that creates the request.
///
/// # Returns
///
/// A `Result` containing the deserialized response body or an `AriError`.
///
/// The `request_maker` serves one purpose: to be able to create the request again
/// to retry the API call after getting rate limited. `request_maker` is async because
/// `reqwest::multipart::Form` is created by async calls to read files for uploads.
async fn execute<O, M, Fut>(&self, request_maker: M) -> Result<O, AriError>
where
O: DeserializeOwned,
M: Fn() -> Fut,
Fut: core::future::Future<Output = Result<reqwest::Request, AriError>>,
{
let response = self
.client
.execute(request_maker().await?)
.await
.map_err(|e| AriError::Internal(e.to_string()))?;
match response.error_for_status_ref() {
Ok(_) => {
let body = response
.text()
.await
.map_err(|e| AriError::Internal(e.to_string()))?;
if body.is_empty() {
return Ok(serde_json::from_str("null")?);
}
Ok(serde_json::from_str(&body)?)
}
Err(e) => Err(AriError::Http {
raw: e,
body: response.text().await.unwrap_or_default(),
}),
}
}
}