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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
// Copyright 2021 Kévin Commaille
// Copyright 2022 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.
//! High-level media API.
#[cfg(feature = "e2e-encryption")]
use std::io::Read;
use std::time::Duration;
#[cfg(not(target_arch = "wasm32"))]
use std::{fmt, fs::File, path::Path};
use eyeball::SharedObservable;
use futures_util::future::try_join;
pub use matrix_sdk_base::media::*;
use mime::Mime;
use ruma::{
api::{
client::{authenticated_media, error::ErrorKind, media},
MatrixVersion,
},
assign,
events::room::{MediaSource, ThumbnailInfo},
MilliSecondsSinceUnixEpoch, MxcUri, OwnedMxcUri,
};
#[cfg(not(target_arch = "wasm32"))]
use tempfile::{Builder as TempFileBuilder, NamedTempFile, TempDir};
#[cfg(not(target_arch = "wasm32"))]
use tokio::{fs::File as TokioFile, io::AsyncWriteExt};
use crate::{
attachment::Thumbnail, config::RequestConfig, futures::SendRequest, Client, Error, Result,
TransmissionProgress,
};
/// A conservative upload speed of 1Mbps
const DEFAULT_UPLOAD_SPEED: u64 = 125_000;
/// 5 min minimal upload request timeout, used to clamp the request timeout.
const MIN_UPLOAD_REQUEST_TIMEOUT: Duration = Duration::from_secs(60 * 5);
/// A high-level API to interact with the media API.
#[derive(Debug, Clone)]
pub struct Media {
/// The underlying HTTP client.
client: Client,
}
/// A file handle that takes ownership of a media file on disk. When the handle
/// is dropped, the file will be removed from the disk.
#[derive(Debug)]
#[cfg(not(target_arch = "wasm32"))]
pub struct MediaFileHandle {
/// The temporary file that contains the media.
file: NamedTempFile,
/// An intermediary temporary directory used in certain cases.
///
/// Only stored for its `Drop` semantics.
_directory: Option<TempDir>,
}
#[cfg(not(target_arch = "wasm32"))]
impl MediaFileHandle {
/// Get the media file's path.
pub fn path(&self) -> &Path {
self.file.path()
}
/// Persist the media file to the given path.
pub fn persist(self, path: &Path) -> Result<File, PersistError> {
self.file.persist(path).map_err(|e| PersistError {
error: e.error,
file: Self { file: e.file, _directory: self._directory },
})
}
}
/// Error returned when [`MediaFileHandle::persist`] fails.
#[cfg(not(target_arch = "wasm32"))]
pub struct PersistError {
/// The underlying IO error.
pub error: std::io::Error,
/// The temporary file that couldn't be persisted.
pub file: MediaFileHandle,
}
#[cfg(not(any(target_arch = "wasm32", tarpaulin_include)))]
impl fmt::Debug for PersistError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "PersistError({:?})", self.error)
}
}
#[cfg(not(any(target_arch = "wasm32", tarpaulin_include)))]
impl fmt::Display for PersistError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "failed to persist temporary file: {}", self.error)
}
}
/// A preallocated MXC URI created by [`Media::create_content_uri()`], and
/// to be used with [`Media::upload_preallocated()`].
#[derive(Debug)]
pub struct PreallocatedMxcUri {
/// The URI for the media URI.
pub uri: OwnedMxcUri,
/// The expiration date for the media URI.
expire_date: Option<MilliSecondsSinceUnixEpoch>,
}
/// An error that happened in the realm of media.
#[derive(Debug, thiserror::Error)]
pub enum MediaError {
/// A preallocated MXC URI has expired.
#[error("a preallocated MXC URI has expired")]
ExpiredPreallocatedMxcUri,
/// Preallocated media already had content, cannot overwrite.
#[error("preallocated media already had content, cannot overwrite")]
CannotOverwriteMedia,
}
/// `IntoFuture` returned by [`Media::upload`].
pub type SendUploadRequest = SendRequest<media::create_content::v3::Request>;
impl Media {
pub(crate) fn new(client: Client) -> Self {
Self { client }
}
/// Upload some media to the server.
///
/// # Arguments
///
/// * `content_type` - The type of the media, this will be used as the
/// content-type header.
///
/// * `data` - Vector of bytes to be uploaded to the server.
///
/// * `request_config` - Optional request configuration for the HTTP client,
/// overriding the default. If not provided, a reasonable timeout value is
/// inferred.
///
/// # Examples
///
/// ```no_run
/// # use std::fs;
/// # use matrix_sdk::{Client, ruma::room_id};
/// # use url::Url;
/// # use mime;
/// # async {
/// # let homeserver = Url::parse("http://localhost:8080")?;
/// # let mut client = Client::new(homeserver).await?;
/// let image = fs::read("/home/example/my-cat.jpg")?;
///
/// let response =
/// client.media().upload(&mime::IMAGE_JPEG, image, None).await?;
///
/// println!("Cat URI: {}", response.content_uri);
/// # anyhow::Ok(()) };
/// ```
pub fn upload(
&self,
content_type: &Mime,
data: Vec<u8>,
request_config: Option<RequestConfig>,
) -> SendUploadRequest {
let request_config = request_config.unwrap_or_else(|| {
self.client.request_config().timeout(Self::reasonable_upload_timeout(&data))
});
let request = assign!(media::create_content::v3::Request::new(data), {
content_type: Some(content_type.essence_str().to_owned()),
});
self.client.send(request, Some(request_config))
}
/// Returns a reasonable upload timeout for an upload, based on the size of
/// the data to be uploaded.
pub(crate) fn reasonable_upload_timeout(data: &[u8]) -> Duration {
std::cmp::max(
Duration::from_secs(data.len() as u64 / DEFAULT_UPLOAD_SPEED),
MIN_UPLOAD_REQUEST_TIMEOUT,
)
}
/// Preallocates an MXC URI for a media that will be uploaded soon.
///
/// This preallocates an URI *before* any content is uploaded to the server.
/// The resulting preallocated MXC URI can then be consumed with
/// [`Media::upload_preallocated`].
///
/// # Examples
///
/// ```no_run
/// # use std::fs;
/// # use matrix_sdk::{Client, ruma::room_id};
/// # use url::Url;
/// # use mime;
/// # async {
/// # let homeserver = Url::parse("http://localhost:8080")?;
/// # let mut client = Client::new(homeserver).await?;
///
/// let preallocated = client.media().create_content_uri().await?;
/// println!("Cat URI: {}", preallocated.uri);
///
/// let image = fs::read("/home/example/my-cat.jpg")?;
/// client
/// .media()
/// .upload_preallocated(preallocated, &mime::IMAGE_JPEG, image)
/// .await?;
///
/// # anyhow::Ok(()) };
/// ```
pub async fn create_content_uri(&self) -> Result<PreallocatedMxcUri> {
// Note: this request doesn't have any parameters.
let request = media::create_mxc_uri::v1::Request::default();
let response = self.client.send(request, None).await?;
Ok(PreallocatedMxcUri {
uri: response.content_uri,
expire_date: response.unused_expires_at,
})
}
/// Fills the content of a preallocated MXC URI with the given content type
/// and data.
///
/// The URI must have been preallocated with [`Self::create_content_uri`].
/// See this method's documentation for a full example.
pub async fn upload_preallocated(
&self,
uri: PreallocatedMxcUri,
content_type: &Mime,
data: Vec<u8>,
) -> Result<()> {
// Do a best-effort at reporting an expired MXC URI here; otherwise the server
// may complain about it later.
if let Some(expire_date) = uri.expire_date {
if MilliSecondsSinceUnixEpoch::now() >= expire_date {
return Err(Error::Media(MediaError::ExpiredPreallocatedMxcUri));
}
}
let timeout = std::cmp::max(
Duration::from_secs(data.len() as u64 / DEFAULT_UPLOAD_SPEED),
MIN_UPLOAD_REQUEST_TIMEOUT,
);
let request = assign!(media::create_content_async::v3::Request::from_url(&uri.uri, data)?, {
content_type: Some(content_type.as_ref().to_owned()),
});
let request_config = self.client.request_config().timeout(timeout);
if let Err(err) = self.client.send(request, Some(request_config)).await {
match err.client_api_error_kind() {
Some(ErrorKind::CannotOverwriteMedia) => {
Err(Error::Media(MediaError::CannotOverwriteMedia))
}
// Unfortunately, the spec says a server will return 404 for either an expired MXC
// ID or a non-existing MXC ID. Do a best-effort guess to recognize an expired MXC
// ID based on the error string, which will work with Synapse (as of 2024-10-23).
Some(ErrorKind::Unknown) if err.to_string().contains("expired") => {
Err(Error::Media(MediaError::ExpiredPreallocatedMxcUri))
}
_ => Err(err.into()),
}
} else {
Ok(())
}
}
/// Gets a media file by copying it to a temporary location on disk.
///
/// The file won't be encrypted even if it is encrypted on the server.
///
/// Returns a `MediaFileHandle` which takes ownership of the file. When the
/// handle is dropped, the file will be deleted from the temporary location.
///
/// # Arguments
///
/// * `request` - The `MediaRequest` of the content.
///
/// * `filename` - The filename specified in the event. It is suggested to
/// use the `filename()` method on the event's content instead of using
/// the `filename` field directly. If not provided, a random name will be
/// generated.
///
/// * `content_type` - The type of the media, this will be used to set the
/// temporary file's extension when one isn't included in the filename.
///
/// * `use_cache` - If we should use the media cache for this request.
///
/// * `temp_dir` - Path to a directory where temporary directories can be
/// created. If not provided, a default, global temporary directory will
/// be used; this may not work properly on Android, where the default
/// location may require root access on some older Android versions.
#[cfg(not(target_arch = "wasm32"))]
pub async fn get_media_file(
&self,
request: &MediaRequestParameters,
filename: Option<String>,
content_type: &Mime,
use_cache: bool,
temp_dir: Option<String>,
) -> Result<MediaFileHandle> {
let data = self.get_media_content(request, use_cache).await?;
let inferred_extension = mime2ext::mime2ext(content_type);
let filename_as_path = filename.as_ref().map(Path::new);
let (sanitized_filename, filename_has_extension) = if let Some(path) = filename_as_path {
let sanitized_filename = path.file_name().and_then(|f| f.to_str());
let filename_has_extension = path.extension().is_some();
(sanitized_filename, filename_has_extension)
} else {
(None, false)
};
let (temp_file, temp_dir) =
match (sanitized_filename, filename_has_extension, inferred_extension) {
// If the file name has an extension use that
(Some(filename_with_extension), true, _) => {
// Use an intermediary directory to avoid conflicts
let temp_dir = temp_dir.map(TempDir::new_in).unwrap_or_else(TempDir::new)?;
let temp_file = TempFileBuilder::new()
.prefix(filename_with_extension)
.rand_bytes(0)
.tempfile_in(&temp_dir)?;
(temp_file, Some(temp_dir))
}
// If the file name doesn't have an extension try inferring one for it
(Some(filename), false, Some(inferred_extension)) => {
// Use an intermediary directory to avoid conflicts
let temp_dir = temp_dir.map(TempDir::new_in).unwrap_or_else(TempDir::new)?;
let temp_file = TempFileBuilder::new()
.prefix(filename)
.suffix(&(".".to_owned() + inferred_extension))
.rand_bytes(0)
.tempfile_in(&temp_dir)?;
(temp_file, Some(temp_dir))
}
// If the only thing we have is an inferred extension then use that together with a
// randomly generated file name
(None, _, Some(inferred_extension)) => (
TempFileBuilder::new()
.suffix(&&(".".to_owned() + inferred_extension))
.tempfile()?,
None,
),
// Otherwise just use a completely random file name
_ => (TempFileBuilder::new().tempfile()?, None),
};
let mut file = TokioFile::from_std(temp_file.reopen()?);
file.write_all(&data).await?;
// Make sure the file metadata is flushed to disk.
file.sync_all().await?;
Ok(MediaFileHandle { file: temp_file, _directory: temp_dir })
}
/// Get a media file's content.
///
/// If the content is encrypted and encryption is enabled, the content will
/// be decrypted.
///
/// # Arguments
///
/// * `request` - The `MediaRequest` of the content.
///
/// * `use_cache` - If we should use the media cache for this request.
pub async fn get_media_content(
&self,
request: &MediaRequestParameters,
use_cache: bool,
) -> Result<Vec<u8>> {
// Read from the cache.
if use_cache {
if let Some(content) =
self.client.event_cache_store().lock().await?.get_media_content(request).await?
{
return Ok(content);
}
};
// Use the authenticated endpoints when the server supports Matrix 1.11 or the
// authenticated media stable feature.
const AUTHENTICATED_MEDIA_STABLE_FEATURE: &str = "org.matrix.msc3916.stable";
let (use_auth, request_config) =
if self.client.server_versions().await?.contains(&MatrixVersion::V1_11) {
(true, None)
} else if self
.client
.unstable_features()
.await?
.get(AUTHENTICATED_MEDIA_STABLE_FEATURE)
.is_some_and(|is_supported| *is_supported)
{
// We need to force the use of the stable endpoint with the Matrix version
// because Ruma does not handle stable features.
let request_config = self.client.request_config();
(true, Some(request_config.force_matrix_version(MatrixVersion::V1_11)))
} else {
(false, None)
};
let content: Vec<u8> = match &request.source {
MediaSource::Encrypted(file) => {
let content = if use_auth {
let request =
authenticated_media::get_content::v1::Request::from_uri(&file.url)?;
self.client.send(request, request_config).await?.file
} else {
#[allow(deprecated)]
let request = media::get_content::v3::Request::from_url(&file.url)?;
self.client.send(request, None).await?.file
};
#[cfg(feature = "e2e-encryption")]
let content = {
let content_len = content.len();
let mut cursor = std::io::Cursor::new(content);
let mut reader = matrix_sdk_base::crypto::AttachmentDecryptor::new(
&mut cursor,
file.as_ref().clone().into(),
)?;
// Encrypted size should be the same as the decrypted size,
// rounded up to a cipher block.
let mut decrypted = Vec::with_capacity(content_len);
reader.read_to_end(&mut decrypted)?;
decrypted
};
content
}
MediaSource::Plain(uri) => {
if let MediaFormat::Thumbnail(settings) = &request.format {
if use_auth {
let mut request =
authenticated_media::get_content_thumbnail::v1::Request::from_uri(
uri,
settings.width,
settings.height,
)?;
request.method = Some(settings.method.clone());
request.animated = Some(settings.animated);
self.client.send(request, request_config).await?.file
} else {
#[allow(deprecated)]
let request = {
let mut request = media::get_content_thumbnail::v3::Request::from_url(
uri,
settings.width,
settings.height,
)?;
request.method = Some(settings.method.clone());
request.animated = Some(settings.animated);
request
};
self.client.send(request, None).await?.file
}
} else if use_auth {
let request = authenticated_media::get_content::v1::Request::from_uri(uri)?;
self.client.send(request, request_config).await?.file
} else {
#[allow(deprecated)]
let request = media::get_content::v3::Request::from_url(uri)?;
self.client.send(request, None).await?.file
}
}
};
if use_cache {
self.client
.event_cache_store()
.lock()
.await?
.add_media_content(request, content.clone())
.await?;
}
Ok(content)
}
/// Remove a media file's content from the store.
///
/// # Arguments
///
/// * `request` - The `MediaRequest` of the content.
pub async fn remove_media_content(&self, request: &MediaRequestParameters) -> Result<()> {
Ok(self.client.event_cache_store().lock().await?.remove_media_content(request).await?)
}
/// Delete all the media content corresponding to the given
/// uri from the store.
///
/// # Arguments
///
/// * `uri` - The `MxcUri` of the files.
pub async fn remove_media_content_for_uri(&self, uri: &MxcUri) -> Result<()> {
Ok(self.client.event_cache_store().lock().await?.remove_media_content_for_uri(uri).await?)
}
/// Get the file of the given media event content.
///
/// If the content is encrypted and encryption is enabled, the content will
/// be decrypted.
///
/// Returns `Ok(None)` if the event content has no file.
///
/// This is a convenience method that calls the
/// [`get_media_content`](#method.get_media_content) method.
///
/// # Arguments
///
/// * `event_content` - The media event content.
///
/// * `use_cache` - If we should use the media cache for this file.
pub async fn get_file(
&self,
event_content: &impl MediaEventContent,
use_cache: bool,
) -> Result<Option<Vec<u8>>> {
let Some(source) = event_content.source() else { return Ok(None) };
let file = self
.get_media_content(
&MediaRequestParameters { source, format: MediaFormat::File },
use_cache,
)
.await?;
Ok(Some(file))
}
/// Remove the file of the given media event content from the cache.
///
/// This is a convenience method that calls the
/// [`remove_media_content`](#method.remove_media_content) method.
///
/// # Arguments
///
/// * `event_content` - The media event content.
pub async fn remove_file(&self, event_content: &impl MediaEventContent) -> Result<()> {
if let Some(source) = event_content.source() {
self.remove_media_content(&MediaRequestParameters {
source,
format: MediaFormat::File,
})
.await?;
}
Ok(())
}
/// Get a thumbnail of the given media event content.
///
/// If the content is encrypted and encryption is enabled, the content will
/// be decrypted.
///
/// Returns `Ok(None)` if the event content has no thumbnail.
///
/// This is a convenience method that calls the
/// [`get_media_content`](#method.get_media_content) method.
///
/// # Arguments
///
/// * `event_content` - The media event content.
///
/// * `settings` - The _desired_ settings of the thumbnail. The actual
/// thumbnail may not match the settings specified.
///
/// * `use_cache` - If we should use the media cache for this thumbnail.
pub async fn get_thumbnail(
&self,
event_content: &impl MediaEventContent,
settings: MediaThumbnailSettings,
use_cache: bool,
) -> Result<Option<Vec<u8>>> {
let Some(source) = event_content.thumbnail_source() else { return Ok(None) };
let thumbnail = self
.get_media_content(
&MediaRequestParameters { source, format: MediaFormat::Thumbnail(settings) },
use_cache,
)
.await?;
Ok(Some(thumbnail))
}
/// Remove the thumbnail of the given media event content from the cache.
///
/// This is a convenience method that calls the
/// [`remove_media_content`](#method.remove_media_content) method.
///
/// # Arguments
///
/// * `event_content` - The media event content.
///
/// * `size` - The _desired_ settings of the thumbnail. Must match the
/// settings requested with [`get_thumbnail`](#method.get_thumbnail).
pub async fn remove_thumbnail(
&self,
event_content: &impl MediaEventContent,
settings: MediaThumbnailSettings,
) -> Result<()> {
if let Some(source) = event_content.source() {
self.remove_media_content(&MediaRequestParameters {
source,
format: MediaFormat::Thumbnail(settings),
})
.await?
}
Ok(())
}
/// Upload the file bytes in `data` and return the source information.
pub(crate) async fn upload_plain_media_and_thumbnail(
&self,
content_type: &Mime,
data: Vec<u8>,
thumbnail: Option<Thumbnail>,
send_progress: SharedObservable<TransmissionProgress>,
) -> Result<(MediaSource, Option<(MediaSource, Box<ThumbnailInfo>)>)> {
let upload_thumbnail = self.upload_thumbnail(thumbnail, send_progress.clone());
let upload_attachment = async move {
self.upload(content_type, data, None)
.with_send_progress_observable(send_progress)
.await
.map_err(Error::from)
};
let (thumbnail, response) = try_join(upload_thumbnail, upload_attachment).await?;
Ok((MediaSource::Plain(response.content_uri), thumbnail))
}
/// Uploads an unencrypted thumbnail to the media repository, and returns
/// its source and extra information.
async fn upload_thumbnail(
&self,
thumbnail: Option<Thumbnail>,
send_progress: SharedObservable<TransmissionProgress>,
) -> Result<Option<(MediaSource, Box<ThumbnailInfo>)>> {
let Some(thumbnail) = thumbnail else {
return Ok(None);
};
let response = self
.upload(&thumbnail.content_type, thumbnail.data, None)
.with_send_progress_observable(send_progress)
.await?;
let url = response.content_uri;
let thumbnail_info = assign!(
thumbnail.info
.as_ref()
.map(|info| ThumbnailInfo::from(info.clone()))
.unwrap_or_default(),
{ mimetype: Some(thumbnail.content_type.as_ref().to_owned()) }
);
Ok(Some((MediaSource::Plain(url), Box::new(thumbnail_info))))
}
}