vamo 0.0.8

A rest wrapper for deboa http client.
Documentation
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
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
//! # Vamo: A High-Level HTTP Client for Deboa
//!
//! `vamo` provides an ergonomic, high-level API on top of the `deboa` HTTP client,
//! making it easier to work with RESTful APIs and other HTTP services. It offers
//! a more intuitive interface for building and sending HTTP requests while maintaining
//! full compatibility with the underlying `deboa` client.
//!
//! ## Features
//!
//! - **Fluent API**: Chainable methods for building and sending requests
//! - **Resource-Oriented**: First-class support for REST resources with the `Resource` trait
//! - **Authentication**: Built-in support for common authentication methods
//! - **Type Safety**: Strong typing for request/response bodies
//! - **Flexible**: Works with any HTTP method and content type
//! - **Async by Default**: Built on top of async/await for high performance
//!
//! ## Getting Started
//!
//! Add `vamo` and its dependencies to your `Cargo.toml`:
//!
//! ```toml
//! [dependencies]
//! vamo = { version = "0.1", path = "../vamo" }
//! deboa = { version = "0.1.0", path = ".." }
//! deboa-extras = { version = "0.1", path = "../deboa-extras" }
//! serde = { version = "1.0", features = ["derive"] }
//! tokio = { version = "1.0", features = ["full"] }
//! ```
//!
//! ## Basic Usage
//!
//! ### Making Simple Requests
//!
//! ```ignore
//! use vamo::Vamo;
//! use deboa::Result;
//! use deboa_extras::http::serde::json::JsonBody;
//!
//! #[tokio::main]
//! async fn main() -> Result<()> {
//!     // Create a new Vamo client with a base URL
//!     let mut vamo = Vamo::new("https://api.example.com")?;
//!
//!     // Make a GET request
//!     let response = vamo
//!         .get("/users/1")?
//!         .send()
//!         .await?;
//!     
//!     // Parse response as JSON
//!     let user: User = response
//!         .body_as(JsonBody)
//!         .await?;
//!     println!("User: {:?}", user);
//!
//!     // Make a POST request with JSON body
//!     let new_user = json!({
//!         "name": "John Doe",
//!         "email": "john@example.com"
//!     });
//!     
//!     let response = vamo
//!         .post("/users")?
//!         .body_as(JsonBody, &new_user)?
//!         .send()
//!         .await?;
//!     
//!     println!("Created user: {:?}", response.status());
//!     Ok(())
//! }
//! ```
//!
//! ## Working with Resources
//!
//! Vamo provides a `Resource` trait that makes it easy to work with REST resources:
//!
//! ```ignore
//! use deboa::Result;
//! use deboa_extras::http::serde::json::JsonBody;
//! use serde::{Deserialize, Serialize};
//! use vamo::{Vamo, resource::{Resource, ResourceMethod}};
//!
//! #[derive(Debug, Serialize, Deserialize)]
//! struct User {
//!     id: Option<u64>,
//!     name: String,
//!     email: String,
//! }
//!
//! impl Resource for User {
//!     // Return the resource ID as a string
//!     fn id(&self) -> String {
//!         self.id.map(|id| id.to_string()).unwrap_or_default()
//!     }
//!     
//!     // Return the base path for this resource (e.g., "users")
//!     fn name(&self) -> &str {
//!         "users"
//!     }
//!     
//!     // Specify how to serialize this resource
//!     fn body_type(&self) -> impl deboa::client::serde::RequestBody {
//!         JsonBody
//!     }
//! }
//!
//! #[tokio::main]
//! async fn main() -> Result<()> {
//!     let mut vamo = Vamo::new("https://api.example.com")?;
//!     
//!     // List all users
//!     let mut user_template = User {
//!         id: None,
//!         name: String::new(),
//!         email: String::new(),
//!     };
//!     
//!     let users: Vec<User> = vamo
//!        .load(&mut user_template)?
//!        .send()
//!        .await?
//!        .body_as(JsonBody)
//!        .await?;
//!     println!("All users: {:?}", users);
//!     
//!     // Create a new user
//!     let mut new_user = User {
//!         id: None,
//!         name: "John Doe".to_string(),
//!         email: "john@example.com".to_string(),
//!     };
//!     
//!     let created: User = vamo
//!        .create(&mut new_user)?
//!        .send()
//!        .await?
//!        .body_as(JsonBody)
//!        .await?;
//!     println!("Created user: {:?}", created);
//!     
//!     // Update a user
//!     let mut updated_user = User {
//!         id: created.id,
//!         name: "John Updated".to_string(),
//!         email: created.email,
//!     };
//!     
//!     let updated: User = vamo
//!        .update(&mut updated_user)?
//!        .send()
//!        .await?
//!        .body_as(JsonBody)
//!        .await?;
//!     println!("Updated user: {:?}", updated);
//!     
//!     // Delete a user
//!     vamo
//!       .remove(&mut updated_user)?
//!       .send()
//!       .await?;
//!     println!("User deleted");
//!     
//!     Ok(())
//! }
//! ```
//!
//! ## Authentication
//!
//! Vamo provides convenience methods for common authentication methods:
//!
//! ```ignore
//! use vamo::Vamo;
//! use deboa::Result;
//!
//! #[tokio::main]
//! async fn main() -> Result<()> {
//!     // Bearer token authentication
//!     let mut vamo = Vamo::new("https://api.example.com")?;
//!     vamo
//!       .get("/users/1")
//!       .bearer_auth("your-token-here")
//!       .send()
//!       .await?;
//!
//!     // Basic authentication
//!     let mut vamo = Vamo::new("https://api.example.com")?;
//!     vamo
//!       .get("/users/1")
//!       .basic_auth("username", "password")
//!       .send()
//!       .await?;
//!     Ok(())
//! }
//! ```
//!
//! ## Error Handling
//!
//! Vamo uses the `deboa::Result` type for error handling, which provides detailed
//! error information including:
//! - Network errors
//! - Serialization/deserialization errors
//! - HTTP protocol errors
//! - URL parsing errors
//!
//! ## Examples
//!
//! Check the `examples/` directory for more comprehensive examples of using Vamo
//! with different types of APIs and authentication methods.
//!
//! ## License
//!
//! MIT license
//!
//! ## Author
//!
//! Rogerio Pacheco <rogerio.pacheco@gmail.com>
use std::sync::Arc;

use crate::resource::{Resource, ResourceMethod};
use base64::{engine::general_purpose::STANDARD, Engine as _};
use deboa::{
    client::serde::RequestBody,
    errors::{DeboaError, RequestError},
    request::DeboaRequest,
    response::DeboaResponse,
    url::IntoUrl,
    Client, Result,
};
use http::{
    header::{self, CONTENT_TYPE, HOST},
    HeaderMap, HeaderName, HeaderValue, Method,
};
use serde::Serialize;
use url::Url;

pub mod resource;

#[cfg(test)]
mod tests;

/// A builder for HTTP requests.
pub struct Vamo {
    client: Client,
    base_url: Url,
    method: Method,
    path: String,
    headers: HeaderMap,
    body: Arc<[u8]>,
}

impl Vamo {
    /// Create a new Vamo instance.
    ///
    /// # Arguments
    ///
    /// * `url` - The base URL for the requests.
    ///
    /// # Returns
    ///
    /// * `Result<Vamo>` - The builder.
    ///
    /// # Examples
    ///
    /// ``` rust, compile_fail
    /// let mut vamo = Vamo::new("https://api.example.com")?;
    /// let response = vamo.get("/path").send().await?;
    /// ```
    ///
    /// # Panics
    ///
    /// If the URL is invalid, or headers are invalid, the function will panic.
    ///
    pub fn new<U: IntoUrl>(url: U) -> Result<Vamo> {
        let base_url = url.into_url()?;
        let mut headers = HeaderMap::new();
        let host = base_url.host_str();
        if host.is_none() {
            return Err(DeboaError::Request(RequestError::UrlParse {
                message: "Invalid URL: Missing host.".to_string(),
            }));
        }

        let host_header = HeaderValue::from_str(
            base_url
                .host_str()
                .unwrap(),
        );
        if let Err(e) = host_header {
            return Err(DeboaError::Header { message: e.to_string() });
        }

        headers.insert(HOST, host_header.unwrap());

        let content_type_header = HeaderValue::from_str("application/json");
        if let Err(e) = content_type_header {
            return Err(DeboaError::Header { message: e.to_string() });
        }

        headers.insert(CONTENT_TYPE, content_type_header.unwrap());

        Ok(Vamo {
            client: Client::default(),
            base_url,
            path: String::new(),
            method: Method::GET,
            headers,
            body: Arc::new([]),
        })
    }

    /// Set the client to be used for requests.
    ///
    /// # Arguments
    ///
    /// * `client` - The client to be used for requests.
    ///
    /// # Returns
    ///
    /// * `&mut Self` - The builder.
    #[inline]
    pub fn client(&mut self, client: Client) -> &mut Self {
        self.client = client;
        self
    }

    /// Set a header for the request.
    ///
    /// # Arguments
    ///
    /// * `key` - The header key.
    /// * `value` - The header value.
    ///
    /// # Returns
    ///
    /// * `&mut Self` - The builder.
    ///
    /// # Examples
    ///
    /// ``` rust, compile_fail
    /// let mut vamo = Vamo::new("https://api.example.com")?;
    /// let response = vamo.get("/api")
    ///    .header("Content-Type", "application/json")
    ///    .send()
    ///    .await?;
    /// ```
    #[inline]
    pub fn header(&mut self, key: HeaderName, value: &str) -> &mut Self {
        self.headers
            .insert(key, HeaderValue::from_str(value).unwrap());
        self
    }

    /// Set the body of the request.
    ///
    /// # Arguments
    ///
    /// * `body_type` - The type of the body.
    /// * `body` - The body to be set.
    ///
    /// # Returns
    ///
    /// * `Result<&mut Self>` - The builder.
    #[inline]
    pub fn body_as<T: RequestBody, B: Serialize>(
        &mut self,
        body_type: T,
        body: B,
    ) -> Result<&mut Self> {
        self.body = body_type
            .serialize(body)?
            .into();
        Ok(self)
    }

    /// Set the method of the request.
    ///
    /// # Arguments
    ///
    /// * `path` - The path of the request.
    ///
    /// # Returns
    ///
    /// * `&mut Self` - The builder.
    ///
    /// # Examples
    ///
    /// ``` rust, compile_fail
    /// let mut vamo = Vamo::new("https://api.example.com")?;
    /// let response = vamo.get("/path").send().await?;
    /// ```
    #[inline]
    pub fn get(&mut self, path: &str) -> &mut Self {
        self.path = path.to_string();
        self.method = Method::GET;
        self
    }

    /// Set the method of the request.
    ///
    /// # Arguments
    ///
    /// * `path` - The path of the request.
    ///
    /// # Returns
    ///
    /// * `&mut Self` - The builder.
    ///
    /// # Examples
    ///
    /// ``` rust, compile_fail
    /// let mut vamo = Vamo::new("https://api.example.com")?;
    /// let response = vamo.post("/path").body_as(JSON, body).send().await?;
    /// ```
    #[inline]
    pub fn post(&mut self, path: &str) -> &mut Self {
        self.path = path.to_string();
        self.method = Method::POST;
        self
    }

    /// Set the method of the request.
    ///
    /// # Arguments
    ///
    /// * `path` - The path of the request.
    ///
    /// # Returns
    ///
    /// * `&mut Self` - The builder.
    ///
    /// # Examples
    ///
    /// ``` rust, compile_fail
    /// let mut vamo = Vamo::new("https://api.example.com")?;
    /// let response = vamo.put("/path/1").body_as(JSON, body).send().await?;
    /// ```
    #[inline]
    pub fn put(&mut self, path: &str) -> &mut Self {
        self.path = path.to_string();
        self.method = Method::PUT;
        self
    }

    /// Set the method of the request.
    ///
    /// # Arguments
    ///
    /// * `path` - The path of the request.
    ///
    /// # Returns
    ///
    /// * `&mut Self` - The builder.
    ///
    /// # Examples
    ///
    /// ``` rust, compile_fail
    /// let mut vamo = Vamo::new("https://api.example.com")?;
    /// let response = vamo.patch("/path/1").body_as(JsonBody, body).send().await?;
    /// ```
    #[inline]
    pub fn patch(&mut self, path: &str) -> &mut Self {
        self.path = path.to_string();
        self.method = Method::PATCH;
        self
    }

    /// Set the method of the request.
    ///
    /// # Arguments
    ///
    /// * `path` - The path of the request.
    ///
    /// # Returns
    ///
    /// * `&mut Self` - The builder.
    ///
    /// # Examples
    ///
    /// ``` rust, compile_fail
    /// let mut vamo = Vamo::new("https://api.example.com")?;
    /// let response = vamo.delete("/path/1").send().await?;
    /// ```
    #[inline]
    pub fn delete(&mut self, path: &str) -> &mut Self {
        self.path = path.to_string();
        self.method = Method::DELETE;
        self
    }

    /// Set the bearer token for the request.
    ///
    /// # Arguments
    ///
    /// * `token` - The bearer token.
    ///
    /// # Returns
    ///
    /// * `&mut Self` - The builder.
    ///
    /// # Examples
    ///
    /// ``` rust, compile_fail
    /// let mut vamo = Vamo::new("https://api.example.com")?;
    /// let response = vamo.get("/api")
    ///    .bearer_auth("your-token-here")
    ///    .send()
    ///    .await?;
    /// ```
    #[inline]
    pub fn bearer_auth(&mut self, token: &str) -> &mut Self {
        self.header(header::AUTHORIZATION, format!("Bearer {token}").as_str());
        self
    }

    /// Set the basic authentication for the request.
    ///
    /// # Arguments
    ///
    /// * `username` - The username.
    /// * `password` - The password.
    ///
    /// # Returns
    ///
    /// * `&mut Self` - The builder.
    ///
    /// # Examples
    ///
    /// ``` rust, compile_fail
    /// let mut vamo = Vamo::new("https://api.example.com")?;
    /// let response = vamo.get("/api")
    ///    .basic_auth("username", "password")
    ///    .send()
    ///    .await?;
    /// ```
    #[inline]
    pub fn basic_auth(&mut self, username: &str, password: &str) -> &mut Self {
        self.header(
            header::AUTHORIZATION,
            format!("Basic {}", STANDARD.encode(format!("{username}:{password}"))).as_str(),
        );
        self
    }

    /// Send the request.
    ///
    /// # Returns
    ///
    /// * `Result<DeboaResponse>` - The response.
    ///
    /// # Errors
    ///
    /// * `DeboaError` - The error.
    ///
    /// # Examples
    ///
    /// ``` rust, compile_fail
    /// let mut vamo = Vamo::new("https://api.example.com")?;
    /// let response = vamo.get("/path").send().await?;
    /// ```
    ///
    /// # Notes
    ///
    /// * The request is sent using the `Deboa` client.
    /// * The response is returned as a `DeboaResponse`.
    ///
    #[inline]
    pub async fn send(&mut self) -> Result<DeboaResponse> {
        let mut base_url = self
            .base_url
            .clone();
        let path_and_query = self
            .path
            .split_once('?');
        let path = if let Some((path, query)) = path_and_query {
            base_url.set_query(Some(query));
            path
        } else {
            &self.path
        };

        let base_path = self.base_url.path();
        if base_path == "/" {
            base_url.set_path(path);
        } else {
            base_url.set_path(&format!("{}{}", base_path, path));
        }

        let request = DeboaRequest::from(base_url.as_str())?
            .method(self.method.clone())
            .headers(self.headers.clone())
            .bytes(&self.body)
            .build()?;

        self.client
            .execute(request)
            .await
    }
}

impl<R: Resource + Serialize> ResourceMethod<R> for Vamo {
    fn load(&mut self, resource: &mut R) -> Result<&mut Self> {
        self.path = format!("/{}/{}", resource.name(), resource.id());
        self.method = Method::GET;
        Ok(self)
    }

    fn create(&mut self, resource: &mut R) -> Result<&mut Self> {
        self.path = format!("/{}", resource.name());
        self.method = Method::POST;
        self.body = resource
            .body_type()
            .serialize(&resource)?
            .into();
        Ok(self)
    }

    fn update(&mut self, resource: &mut R) -> Result<&mut Self> {
        self.path = format!("/{}/{}", resource.name(), resource.id());
        self.method = Method::PUT;
        self.body = resource
            .body_type()
            .serialize(&resource)?
            .into();
        Ok(self)
    }

    fn edit(&mut self, resource: &mut R) -> Result<&mut Self> {
        self.path = format!("/{}/{}", resource.name(), resource.id());
        self.method = Method::PATCH;
        self.body = resource
            .body_type()
            .serialize(&resource)?
            .into();
        Ok(self)
    }

    fn remove(&mut self, resource: &mut R) -> Result<&mut Self> {
        self.path = format!("/{}/{}", resource.name(), resource.id());
        self.method = Method::DELETE;
        Ok(self)
    }
}