2020-07-29 08:56:18 +00:00
|
|
|
// 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-11 15:25:33 +00:00
|
|
|
use std::{convert::TryFrom, fmt::Debug, sync::Arc};
|
2020-07-29 08:56:18 +00:00
|
|
|
|
2021-02-07 11:53:06 +00:00
|
|
|
#[cfg(all(not(test), not(target_arch = "wasm32")))]
|
2021-02-01 16:58:03 +00:00
|
|
|
use backoff::{future::retry, Error as RetryError, ExponentialBackoff};
|
2021-02-07 11:53:06 +00:00
|
|
|
#[cfg(all(not(test), not(target_arch = "wasm32")))]
|
2021-01-31 20:10:30 +00:00
|
|
|
use http::StatusCode;
|
2021-03-01 18:29:04 +00:00
|
|
|
use http::{HeaderValue, Response as HttpResponse};
|
2020-07-31 18:35:27 +00:00
|
|
|
use reqwest::{Client, Response};
|
2020-07-29 08:56:18 +00:00
|
|
|
use tracing::trace;
|
|
|
|
use url::Url;
|
|
|
|
|
2020-09-29 15:23:14 +00:00
|
|
|
use matrix_sdk_common::{
|
2021-02-01 16:15:29 +00:00
|
|
|
api::r0::media::create_content, async_trait, instant::Duration, locks::RwLock, AsyncTraitDeps,
|
|
|
|
AuthScheme, FromHttpResponseError,
|
2020-09-29 15:23:14 +00:00
|
|
|
};
|
2020-08-11 15:25:33 +00:00
|
|
|
|
2021-01-31 17:09:03 +00:00
|
|
|
use crate::{error::HttpError, ClientConfig, OutgoingRequest, Session};
|
2020-08-11 15:25:33 +00:00
|
|
|
|
2021-02-07 11:53:06 +00:00
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
2021-02-01 16:15:29 +00:00
|
|
|
const DEFAULT_CONNECTION_TIMEOUT: Duration = Duration::from_secs(5);
|
2021-02-07 11:53:06 +00:00
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
2021-02-01 16:15:29 +00:00
|
|
|
const DEFAULT_REQUEST_TIMEOUT: Duration = Duration::from_secs(10);
|
|
|
|
|
2020-08-11 15:25:33 +00:00
|
|
|
/// Abstraction around the http layer. The allows implementors to use different
|
|
|
|
/// http libraries.
|
2021-01-22 17:12:46 +00:00
|
|
|
#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
|
|
|
|
#[cfg_attr(not(target_arch = "wasm32"), async_trait)]
|
|
|
|
pub trait HttpSend: AsyncTraitDeps {
|
2020-08-11 15:25:33 +00:00
|
|
|
/// The method abstracting sending request types and receiving response types.
|
|
|
|
///
|
|
|
|
/// This is called by the client every time it wants to send anything to a homeserver.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
|
|
|
/// * `request` - The http request that has been converted from a ruma `Request`.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
2020-08-26 11:41:15 +00:00
|
|
|
/// ```
|
|
|
|
/// use std::convert::TryFrom;
|
2021-01-31 20:10:30 +00:00
|
|
|
/// use matrix_sdk::{HttpSend, async_trait, HttpError};
|
2021-02-01 18:24:29 +00:00
|
|
|
/// # use std::time::Duration;
|
2020-08-11 15:25:33 +00:00
|
|
|
///
|
|
|
|
/// #[derive(Debug)]
|
2020-08-26 11:41:15 +00:00
|
|
|
/// struct Client(reqwest::Client);
|
2020-08-11 15:25:33 +00:00
|
|
|
///
|
2020-08-26 11:41:15 +00:00
|
|
|
/// impl Client {
|
|
|
|
/// async fn response_to_http_response(
|
|
|
|
/// &self,
|
|
|
|
/// mut response: reqwest::Response,
|
2021-01-31 20:10:30 +00:00
|
|
|
/// ) -> Result<http::Response<Vec<u8>>, HttpError> {
|
2020-08-26 11:41:15 +00:00
|
|
|
/// // Convert the reqwest response to a http one.
|
|
|
|
/// todo!()
|
|
|
|
/// }
|
2020-08-11 15:25:33 +00:00
|
|
|
/// }
|
|
|
|
///
|
2020-08-26 11:41:15 +00:00
|
|
|
/// #[async_trait]
|
|
|
|
/// impl HttpSend for Client {
|
2021-02-01 18:24:29 +00:00
|
|
|
/// async fn send_request(
|
|
|
|
/// &self,
|
|
|
|
/// request: http::Request<Vec<u8>>,
|
|
|
|
/// timeout: Option<Duration>,
|
|
|
|
/// ) -> Result<http::Response<Vec<u8>>, HttpError> {
|
2020-08-26 11:41:15 +00:00
|
|
|
/// Ok(self
|
|
|
|
/// .response_to_http_response(
|
|
|
|
/// self.0
|
|
|
|
/// .execute(reqwest::Request::try_from(request)?)
|
|
|
|
/// .await?,
|
|
|
|
/// )
|
|
|
|
/// .await?)
|
|
|
|
/// }
|
|
|
|
/// }
|
2020-08-11 15:25:33 +00:00
|
|
|
/// ```
|
2020-08-26 11:41:15 +00:00
|
|
|
async fn send_request(
|
|
|
|
&self,
|
|
|
|
request: http::Request<Vec<u8>>,
|
2021-02-01 16:15:29 +00:00
|
|
|
timeout: Option<Duration>,
|
2021-01-31 17:09:03 +00:00
|
|
|
) -> Result<http::Response<Vec<u8>>, HttpError>;
|
2020-08-11 15:25:33 +00:00
|
|
|
}
|
2020-07-29 08:56:18 +00:00
|
|
|
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub(crate) struct HttpClient {
|
2020-08-11 12:07:45 +00:00
|
|
|
pub(crate) inner: Arc<dyn HttpSend>,
|
2020-07-29 08:56:18 +00:00
|
|
|
pub(crate) homeserver: Arc<Url>,
|
2020-08-17 13:29:07 +00:00
|
|
|
pub(crate) session: Arc<RwLock<Option<Session>>>,
|
2020-07-29 08:56:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl HttpClient {
|
2020-08-15 01:09:13 +00:00
|
|
|
async fn send_request<Request: OutgoingRequest>(
|
2020-07-29 08:56:18 +00:00
|
|
|
&self,
|
2020-07-31 18:35:27 +00:00
|
|
|
request: Request,
|
2020-07-29 11:50:01 +00:00
|
|
|
session: Arc<RwLock<Option<Session>>>,
|
2021-02-01 16:15:29 +00:00
|
|
|
timeout: Option<Duration>,
|
2021-01-31 17:09:03 +00:00
|
|
|
) -> Result<http::Response<Vec<u8>>, HttpError> {
|
2021-03-01 18:29:04 +00:00
|
|
|
let request = {
|
2020-07-31 18:35:27 +00:00
|
|
|
let read_guard;
|
2020-09-29 15:23:14 +00:00
|
|
|
let access_token = match Request::METADATA.authentication {
|
|
|
|
AuthScheme::AccessToken => {
|
|
|
|
read_guard = session.read().await;
|
2020-07-31 18:35:27 +00:00
|
|
|
|
2020-09-29 15:23:14 +00:00
|
|
|
if let Some(session) = read_guard.as_ref() {
|
|
|
|
Some(session.access_token.as_str())
|
|
|
|
} else {
|
2021-01-31 17:09:03 +00:00
|
|
|
return Err(HttpError::AuthenticationRequired);
|
2020-09-29 15:23:14 +00:00
|
|
|
}
|
2020-07-31 18:35:27 +00:00
|
|
|
}
|
2020-09-29 15:23:14 +00:00
|
|
|
AuthScheme::None => None,
|
2021-01-31 17:09:03 +00:00
|
|
|
_ => return Err(HttpError::NotClientRequest),
|
2020-07-31 18:35:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
request.try_into_http_request(&self.homeserver.to_string(), access_token)?
|
|
|
|
};
|
2020-07-29 08:56:18 +00:00
|
|
|
|
2021-02-01 16:15:29 +00:00
|
|
|
self.inner.send_request(request, timeout).await
|
2020-07-29 08:56:18 +00:00
|
|
|
}
|
|
|
|
|
2020-09-15 15:16:16 +00:00
|
|
|
pub async fn upload(
|
|
|
|
&self,
|
|
|
|
request: create_content::Request<'_>,
|
2021-02-01 16:15:29 +00:00
|
|
|
timeout: Option<Duration>,
|
2021-01-31 17:09:03 +00:00
|
|
|
) -> Result<create_content::Response, HttpError> {
|
2020-09-15 15:16:16 +00:00
|
|
|
let response = self
|
2021-03-01 18:29:04 +00:00
|
|
|
.send_request(request, self.session.clone(), timeout)
|
2020-09-15 15:16:16 +00:00
|
|
|
.await?;
|
|
|
|
Ok(create_content::Response::try_from(response)?)
|
|
|
|
}
|
|
|
|
|
2021-01-31 17:09:03 +00:00
|
|
|
pub async fn send<Request>(
|
|
|
|
&self,
|
|
|
|
request: Request,
|
2021-02-01 16:15:29 +00:00
|
|
|
timeout: Option<Duration>,
|
2021-01-31 17:09:03 +00:00
|
|
|
) -> Result<Request::IncomingResponse, HttpError>
|
2020-07-31 18:35:27 +00:00
|
|
|
where
|
2021-01-31 17:09:03 +00:00
|
|
|
Request: OutgoingRequest + Debug,
|
|
|
|
HttpError: From<FromHttpResponseError<Request::EndpointError>>,
|
2020-07-31 18:35:27 +00:00
|
|
|
{
|
2020-09-15 15:16:16 +00:00
|
|
|
let response = self
|
2021-03-01 18:29:04 +00:00
|
|
|
.send_request(request, self.session.clone(), timeout)
|
2020-09-15 15:16:16 +00:00
|
|
|
.await?;
|
2020-07-29 08:56:18 +00:00
|
|
|
|
|
|
|
trace!("Got response: {:?}", response);
|
|
|
|
|
2021-01-31 17:09:03 +00:00
|
|
|
let response = Request::IncomingResponse::try_from(response)?;
|
|
|
|
|
|
|
|
Ok(response)
|
2020-07-29 08:56:18 +00:00
|
|
|
}
|
|
|
|
}
|
2020-08-11 12:07:45 +00:00
|
|
|
|
2020-08-26 12:37:48 +00:00
|
|
|
/// Build a client with the specified configuration.
|
2021-01-31 17:09:03 +00:00
|
|
|
pub(crate) fn client_with_config(config: &ClientConfig) -> Result<Client, HttpError> {
|
2020-08-26 12:37:48 +00:00
|
|
|
let http_client = reqwest::Client::builder();
|
|
|
|
|
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
|
|
let http_client = {
|
|
|
|
let http_client = match config.timeout {
|
|
|
|
Some(x) => http_client.timeout(x),
|
2021-02-01 16:15:29 +00:00
|
|
|
None => http_client.timeout(DEFAULT_REQUEST_TIMEOUT),
|
2020-08-26 12:37:48 +00:00
|
|
|
};
|
2020-08-11 12:07:45 +00:00
|
|
|
|
2020-08-26 12:37:48 +00:00
|
|
|
let http_client = if config.disable_ssl_verification {
|
|
|
|
http_client.danger_accept_invalid_certs(true)
|
|
|
|
} else {
|
|
|
|
http_client
|
|
|
|
};
|
2020-08-11 12:07:45 +00:00
|
|
|
|
2020-08-26 12:37:48 +00:00
|
|
|
let http_client = match &config.proxy {
|
|
|
|
Some(p) => http_client.proxy(p.clone()),
|
|
|
|
None => http_client,
|
|
|
|
};
|
2020-08-11 12:07:45 +00:00
|
|
|
|
2020-08-26 12:37:48 +00:00
|
|
|
let mut headers = reqwest::header::HeaderMap::new();
|
2020-08-11 12:07:45 +00:00
|
|
|
|
2020-08-26 12:37:48 +00:00
|
|
|
let user_agent = match &config.user_agent {
|
|
|
|
Some(a) => a.clone(),
|
2021-01-31 20:12:00 +00:00
|
|
|
None => HeaderValue::from_str(&format!("matrix-rust-sdk {}", crate::VERSION))
|
|
|
|
.expect("Can't construct the version header"),
|
2020-08-26 12:37:48 +00:00
|
|
|
};
|
2020-08-11 12:07:45 +00:00
|
|
|
|
2020-08-26 12:37:48 +00:00
|
|
|
headers.insert(reqwest::header::USER_AGENT, user_agent);
|
2020-08-11 12:07:45 +00:00
|
|
|
|
2021-02-01 16:15:29 +00:00
|
|
|
http_client
|
|
|
|
.default_headers(headers)
|
|
|
|
.connect_timeout(DEFAULT_CONNECTION_TIMEOUT)
|
2020-08-26 12:37:48 +00:00
|
|
|
};
|
2020-08-11 12:07:45 +00:00
|
|
|
|
2020-08-26 12:37:48 +00:00
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
|
|
#[allow(unused)]
|
|
|
|
let _ = config;
|
2020-08-11 13:17:18 +00:00
|
|
|
|
2020-08-26 12:37:48 +00:00
|
|
|
Ok(http_client.build()?)
|
|
|
|
}
|
2020-08-26 11:41:15 +00:00
|
|
|
|
2021-01-31 17:09:03 +00:00
|
|
|
async fn response_to_http_response(
|
|
|
|
mut response: Response,
|
|
|
|
) -> Result<http::Response<Vec<u8>>, reqwest::Error> {
|
2020-08-26 12:37:48 +00:00
|
|
|
let status = response.status();
|
2020-08-26 11:41:15 +00:00
|
|
|
|
2020-08-26 12:37:48 +00:00
|
|
|
let mut http_builder = HttpResponse::builder().status(status);
|
2021-01-31 20:12:00 +00:00
|
|
|
let headers = http_builder
|
|
|
|
.headers_mut()
|
|
|
|
.expect("Can't get the response builder headers");
|
2020-08-26 11:41:15 +00:00
|
|
|
|
2020-08-26 12:37:48 +00:00
|
|
|
for (k, v) in response.headers_mut().drain() {
|
|
|
|
if let Some(key) = k {
|
|
|
|
headers.insert(key, v);
|
2020-08-26 11:41:15 +00:00
|
|
|
}
|
2020-08-26 12:37:48 +00:00
|
|
|
}
|
2020-08-26 11:41:15 +00:00
|
|
|
|
2020-08-26 12:37:48 +00:00
|
|
|
let body = response.bytes().await?.as_ref().to_owned();
|
2020-08-26 11:41:15 +00:00
|
|
|
|
2021-01-31 20:12:00 +00:00
|
|
|
Ok(http_builder
|
|
|
|
.body(body)
|
|
|
|
.expect("Can't construct a response using the given body"))
|
2020-08-11 12:07:45 +00:00
|
|
|
}
|
|
|
|
|
2021-02-07 11:53:06 +00:00
|
|
|
#[cfg(any(test, target_arch = "wasm32"))]
|
2021-01-31 20:10:30 +00:00
|
|
|
async fn send_request(
|
|
|
|
client: &Client,
|
|
|
|
request: http::Request<Vec<u8>>,
|
2021-02-01 16:15:29 +00:00
|
|
|
_: Option<Duration>,
|
2021-01-31 20:10:30 +00:00
|
|
|
) -> Result<http::Response<Vec<u8>>, HttpError> {
|
|
|
|
let request = reqwest::Request::try_from(request)?;
|
|
|
|
let response = client.execute(request).await?;
|
|
|
|
|
|
|
|
Ok(response_to_http_response(response).await?)
|
|
|
|
}
|
|
|
|
|
2021-02-07 11:53:06 +00:00
|
|
|
#[cfg(all(not(test), not(target_arch = "wasm32")))]
|
2021-01-31 20:10:30 +00:00
|
|
|
async fn send_request(
|
|
|
|
client: &Client,
|
|
|
|
request: http::Request<Vec<u8>>,
|
2021-02-01 16:15:29 +00:00
|
|
|
timeout: Option<Duration>,
|
2021-01-31 20:10:30 +00:00
|
|
|
) -> Result<http::Response<Vec<u8>>, HttpError> {
|
|
|
|
let backoff = ExponentialBackoff::default();
|
2021-02-01 16:15:29 +00:00
|
|
|
let mut request = reqwest::Request::try_from(request)?;
|
|
|
|
|
|
|
|
if let Some(timeout) = timeout {
|
|
|
|
*request.timeout_mut() = Some(timeout);
|
|
|
|
}
|
|
|
|
|
|
|
|
let request = &request;
|
2021-01-31 20:10:30 +00:00
|
|
|
|
|
|
|
let request = || async move {
|
|
|
|
let request = request.try_clone().ok_or(HttpError::UnableToCloneRequest)?;
|
|
|
|
|
|
|
|
let response = client
|
|
|
|
.execute(request)
|
|
|
|
.await
|
|
|
|
.map_err(|e| RetryError::Transient(HttpError::Reqwest(e)))?;
|
|
|
|
|
|
|
|
let status_code = response.status();
|
|
|
|
// TODO TOO_MANY_REQUESTS will have a retry timeout which we should
|
|
|
|
// use.
|
|
|
|
if status_code.is_server_error() || response.status() == StatusCode::TOO_MANY_REQUESTS {
|
|
|
|
return Err(RetryError::Transient(HttpError::Server(status_code)));
|
|
|
|
}
|
|
|
|
|
|
|
|
let response = response_to_http_response(response)
|
|
|
|
.await
|
|
|
|
.map_err(|e| RetryError::Permanent(HttpError::Reqwest(e)))?;
|
|
|
|
|
|
|
|
Ok(response)
|
|
|
|
};
|
|
|
|
|
|
|
|
let response = retry(backoff, request).await?;
|
|
|
|
|
|
|
|
Ok(response)
|
|
|
|
}
|
|
|
|
|
2021-01-22 17:12:46 +00:00
|
|
|
#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
|
|
|
|
#[cfg_attr(not(target_arch = "wasm32"), async_trait)]
|
2020-08-26 12:37:48 +00:00
|
|
|
impl HttpSend for Client {
|
2020-08-26 11:41:15 +00:00
|
|
|
async fn send_request(
|
|
|
|
&self,
|
|
|
|
request: http::Request<Vec<u8>>,
|
2021-02-01 16:15:29 +00:00
|
|
|
timeout: Option<Duration>,
|
2021-01-31 17:09:03 +00:00
|
|
|
) -> Result<http::Response<Vec<u8>>, HttpError> {
|
2021-02-01 16:15:29 +00:00
|
|
|
send_request(&self, request, timeout).await
|
2020-08-11 12:07:45 +00:00
|
|
|
}
|
|
|
|
}
|