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
// Copyright 2023 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.
//! Named futures returned from methods on types in
//! [the `encryption` module][super].
#![deny(unreachable_pub)]
use std::{future::IntoFuture, io::Read};
use eyeball::SharedObservable;
#[cfg(not(target_arch = "wasm32"))]
use eyeball::Subscriber;
use matrix_sdk_common::boxed_into_future;
use ruma::events::room::{EncryptedFile, EncryptedFileInit};
use crate::{config::RequestConfig, Client, Media, Result, TransmissionProgress};
/// Future returned by [`Client::upload_encrypted_file`].
#[allow(missing_debug_implementations)]
pub struct UploadEncryptedFile<'a, R: ?Sized> {
client: &'a Client,
content_type: &'a mime::Mime,
reader: &'a mut R,
send_progress: SharedObservable<TransmissionProgress>,
request_config: Option<RequestConfig>,
}
impl<'a, R: ?Sized> UploadEncryptedFile<'a, R> {
pub(crate) fn new(client: &'a Client, content_type: &'a mime::Mime, reader: &'a mut R) -> Self {
Self {
client,
content_type,
reader,
send_progress: Default::default(),
request_config: None,
}
}
/// Replace the default `SharedObservable` used for tracking upload
/// progress.
///
/// Note that any subscribers obtained from
/// [`subscribe_to_send_progress`][Self::subscribe_to_send_progress]
/// will be invalidated by this.
pub fn with_send_progress_observable(
mut self,
send_progress: SharedObservable<TransmissionProgress>,
) -> Self {
self.send_progress = send_progress;
self
}
/// Replace the default request config used for the upload request.
///
/// The timeout value will be overridden with a reasonable default, based on
/// the size of the encrypted payload.
pub fn with_request_config(mut self, request_config: RequestConfig) -> Self {
self.request_config = Some(request_config);
self
}
/// Get a subscriber to observe the progress of sending the request
/// body.
#[cfg(not(target_arch = "wasm32"))]
pub fn subscribe_to_send_progress(&self) -> Subscriber<TransmissionProgress> {
self.send_progress.subscribe()
}
}
impl<'a, R> IntoFuture for UploadEncryptedFile<'a, R>
where
R: Read + Send + ?Sized + 'a,
{
type Output = Result<EncryptedFile>;
boxed_into_future!(extra_bounds: 'a);
fn into_future(self) -> Self::IntoFuture {
let Self { client, content_type, reader, send_progress, request_config } = self;
Box::pin(async move {
let mut encryptor = matrix_sdk_base::crypto::AttachmentEncryptor::new(reader);
let mut buf = Vec::new();
encryptor.read_to_end(&mut buf)?;
// Override the reasonable upload timeout value, based on the size of the
// encrypted payload.
let request_config =
request_config.map(|config| config.timeout(Media::reasonable_upload_timeout(&buf)));
let response = client
.media()
.upload(content_type, buf, request_config)
.with_send_progress_observable(send_progress)
.await?;
let file: EncryptedFile = {
let keys = encryptor.finish();
EncryptedFileInit {
url: response.content_uri,
key: keys.key,
iv: keys.iv,
hashes: keys.hashes,
v: keys.version,
}
.into()
};
Ok(file)
})
}
}