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
//! Utils
//! ============
//! This file contains utility sections that are used in different sections of the client

use reqwest::{Client, Error, Response};
use serde::Serialize;
use std::fmt::Debug;

/// A function for sending GET request to a specified url
/// with optional query parameters using reqwest client.
pub async fn get_request(
    api_key: &str,
    url: &str,
    query: Option<Vec<(&str, &str)>>,
) -> Result<Response, Error> {
    let client = Client::new();
    let response = client
        .get(url)
        .query(&query)
        .bearer_auth(api_key)
        .header("Content-Type", "application/json")
        .send()
        .await;

    match response {
        Ok(response) => Ok(response),
        Err(err) => Err(err),
    }
}

/// A function for sending POST requests to a specified url
/// using the reqwest client.
pub async fn post_request<T>(api_key: &str, url: &str, body: T) -> Result<Response, Error>
where
    T: Debug + Serialize,
{
    let client = Client::new();
    let response = client
        .post(url)
        .bearer_auth(api_key)
        .header("Content-Type", "application/json")
        .json(&body)
        .send()
        .await;

    match response {
        Ok(response) => Ok(response),
        Err(err) => Err(err),
    }
}

/// A function for sending PUT requests to a specified url
/// using the reqwest client.
pub async fn put_request<T>(api_key: &str, url: &str, body: T) -> Result<Response, Error>
where
    T: Debug + Serialize,
{
    let client = Client::new();
    let response = client
        .put(url)
        .bearer_auth(api_key)
        .header("Content-Type", "application/json")
        .json(&body)
        .send()
        .await;

    match response {
        Ok(response) => Ok(response),
        Err(err) => Err(err),
    }
}

/// A function for sending DELETE requests to a specified url
/// using the reqwest client.
pub async fn delete_request<T>(api_key: &str, url: &str, body: T) -> Result<Response, Error>
where
    T: Debug + Serialize,
{
    let client = Client::new();
    let response = client
        .delete(url)
        .bearer_auth(api_key)
        .header("Content-Type", "application/json")
        .json(&body)
        .send()
        .await;

    match response {
        Ok(response) => Ok(response),
        Err(err) => Err(err),
    }
}