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
use crate::framework::{
auth,
auth::{AuthClient, Credentials},
endpoint::Endpoint,
reqwest_adaptors::match_reqwest_method,
response::{ApiErrors, ApiFailure, ApiSuccess},
response::{ApiResponse, ApiResult},
Environment, HttpApiClientConfig,
};
use async_trait::async_trait;
use failure::Fallible;
use reqwest;
use serde::Serialize;
#[async_trait]
pub trait ApiClient {
async fn request<ResultType, QueryType, BodyType>(
&self,
endpoint: &(dyn Endpoint<ResultType, QueryType, BodyType> + Send + Sync),
) -> ApiResponse<ResultType>
where
ResultType: ApiResult,
QueryType: Serialize,
BodyType: Serialize;
}
pub struct Client {
environment: Environment,
credentials: auth::Credentials,
http_client: reqwest::Client,
}
impl AuthClient for reqwest::RequestBuilder {
fn auth(mut self, credentials: &Credentials) -> Self {
for (k, v) in credentials.headers() {
self = self.header(k, v);
}
self
}
}
impl Client {
pub fn new(
credentials: auth::Credentials,
config: HttpApiClientConfig,
environment: Environment,
) -> Fallible<Client> {
let http_client = reqwest::Client::builder()
.timeout(config.http_timeout)
.default_headers(config.default_headers)
.build()?;
Ok(Client {
environment,
credentials,
http_client,
})
}
}
#[async_trait]
impl ApiClient for Client {
async fn request<ResultType, QueryType, BodyType>(
&self,
endpoint: &(dyn Endpoint<ResultType, QueryType, BodyType> + Send + Sync),
) -> ApiResponse<ResultType>
where
ResultType: ApiResult,
QueryType: Serialize,
BodyType: Serialize,
{
let mut request = self
.http_client
.request(
match_reqwest_method(endpoint.method()),
endpoint.url(&self.environment),
)
.query(&endpoint.query());
if let Some(body) = endpoint.body() {
request = request.body(serde_json::to_string(&body).unwrap());
request = request.header(reqwest::header::CONTENT_TYPE, endpoint.content_type());
}
request = request.auth(&self.credentials);
let response = request.send().await?;
map_api_response(response).await
}
}
async fn map_api_response<ResultType: ApiResult>(
resp: reqwest::Response,
) -> ApiResponse<ResultType> {
let status = resp.status();
if status.is_success() {
let parsed: Result<ApiSuccess<ResultType>, reqwest::Error> = resp.json().await;
match parsed {
Ok(api_resp) => Ok(api_resp),
Err(e) => Err(ApiFailure::Invalid(e)),
}
} else {
let parsed: Result<ApiErrors, reqwest::Error> = resp.json().await;
let errors = parsed.unwrap_or_default();
Err(ApiFailure::Error(status, errors))
}
}