matrix-rust-sdk/matrix_sdk/src/http_client.rs

103 lines
3.2 KiB
Rust
Raw Normal View History

// Copyright 2020 The Matrix.org Foundation C.I.C.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2020-08-08 10:20:44 +00:00
use std::{
convert::{TryFrom, TryInto},
sync::Arc,
};
2020-08-08 10:20:44 +00:00
use http::{HeaderValue, Method as HttpMethod, Response as HttpResponse};
2020-07-31 18:35:27 +00:00
use reqwest::{Client, Response};
use tracing::trace;
use url::Url;
2020-08-10 10:39:00 +00:00
use matrix_sdk_common::{locks::RwLock, FromHttpResponseError};
2020-07-31 18:35:27 +00:00
use crate::{Endpoint, Error, Result, Session};
#[derive(Clone, Debug)]
pub(crate) struct HttpClient {
pub(crate) inner: Client,
pub(crate) homeserver: Arc<Url>,
}
impl HttpClient {
2020-08-10 10:39:00 +00:00
async fn send_request<Request: Endpoint>(
&self,
2020-07-31 18:35:27 +00:00
request: Request,
session: Arc<RwLock<Option<Session>>>,
2020-08-10 10:39:00 +00:00
) -> Result<Response> {
2020-08-08 10:20:44 +00:00
let mut request = {
2020-07-31 18:35:27 +00:00
let read_guard;
2020-08-08 10:20:44 +00:00
let access_token = if Request::METADATA.requires_authentication {
2020-07-31 18:35:27 +00:00
read_guard = session.read().await;
if let Some(session) = read_guard.as_ref() {
Some(session.access_token.as_str())
} else {
return Err(Error::AuthenticationRequired);
}
} else {
None
};
request.try_into_http_request(&self.homeserver.to_string(), access_token)?
};
2020-08-08 10:20:44 +00:00
if let HttpMethod::POST | HttpMethod::PUT | HttpMethod::DELETE = *request.method() {
request.headers_mut().append(
http::header::CONTENT_TYPE,
HeaderValue::from_static("application/json"),
);
}
2020-08-08 10:20:44 +00:00
Ok(self.inner.execute(request.try_into()?).await?)
}
async fn response_to_http_response(
&self,
mut response: Response,
) -> Result<http::Response<Vec<u8>>> {
let status = response.status();
let mut http_builder = HttpResponse::builder().status(status);
let headers = http_builder.headers_mut().unwrap();
for (k, v) in response.headers_mut().drain() {
if let Some(key) = k {
headers.insert(key, v);
}
}
let body = response.bytes().await?.as_ref().to_owned();
Ok(http_builder.body(body).unwrap())
}
2020-07-31 18:35:27 +00:00
pub async fn send<Request>(
&self,
request: Request,
session: Arc<RwLock<Option<Session>>>,
2020-08-10 10:39:00 +00:00
) -> Result<Request::IncomingResponse>
2020-07-31 18:35:27 +00:00
where
Request: Endpoint,
2020-08-10 10:39:00 +00:00
Error: From<FromHttpResponseError<Request::ResponseError>>,
2020-07-31 18:35:27 +00:00
{
2020-08-08 10:20:44 +00:00
let response = self.send_request(request, session).await?;
trace!("Got response: {:?}", response);
let response = self.response_to_http_response(response).await?;
2020-08-10 10:39:00 +00:00
Ok(Request::IncomingResponse::try_from(response)?)
}
}