ruma_events/room/message/file.rs
1use js_int::UInt;
2use ruma_common::OwnedMxcUri;
3use serde::{Deserialize, Serialize};
4
5use super::FormattedBody;
6use crate::room::{
7 message::media_caption::{caption, formatted_caption},
8 EncryptedFile, MediaSource, ThumbnailInfo,
9};
10
11/// The payload for a file message.
12#[derive(Clone, Debug, Deserialize, Serialize)]
13#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
14pub struct FileMessageEventContent {
15 /// A human-readable description of the file.
16 ///
17 /// If the `filename` field is not set or has the same value, this is the filename of the
18 /// uploaded file. Otherwise, this should be interpreted as a user-written media caption.
19 pub body: String,
20
21 /// Formatted form of the message `body`.
22 ///
23 /// This should only be set if the body represents a caption.
24 #[serde(flatten)]
25 pub formatted: Option<FormattedBody>,
26
27 /// The original filename of the uploaded file as deserialized from the event.
28 ///
29 /// It is recommended to use the `filename` method to get the filename which automatically
30 /// falls back to the `body` field when the `filename` field is not set.
31 #[serde(skip_serializing_if = "Option::is_none")]
32 pub filename: Option<String>,
33
34 /// The source of the file.
35 #[serde(flatten)]
36 pub source: MediaSource,
37
38 /// Metadata about the file referred to in `source`.
39 #[serde(skip_serializing_if = "Option::is_none")]
40 pub info: Option<Box<FileInfo>>,
41}
42
43impl FileMessageEventContent {
44 /// Creates a new `FileMessageEventContent` with the given body and source.
45 pub fn new(body: String, source: MediaSource) -> Self {
46 Self { body, formatted: None, filename: None, source, info: None }
47 }
48
49 /// Creates a new non-encrypted `FileMessageEventContent` with the given body and url.
50 pub fn plain(body: String, url: OwnedMxcUri) -> Self {
51 Self::new(body, MediaSource::Plain(url))
52 }
53
54 /// Creates a new encrypted `FileMessageEventContent` with the given body and encrypted
55 /// file.
56 pub fn encrypted(body: String, file: EncryptedFile) -> Self {
57 Self::new(body, MediaSource::Encrypted(Box::new(file)))
58 }
59
60 /// Creates a new `FileMessageEventContent` from `self` with the `info` field set to the given
61 /// value.
62 ///
63 /// Since the field is public, you can also assign to it directly. This method merely acts
64 /// as a shorthand for that, because it is very common to set this field.
65 pub fn info(self, info: impl Into<Option<Box<FileInfo>>>) -> Self {
66 Self { info: info.into(), ..self }
67 }
68
69 /// Computes the filename for the file as defined by the [spec](https://spec.matrix.org/latest/client-server-api/#media-captions).
70 ///
71 /// This differs from the `filename` field as this method falls back to the `body` field when
72 /// the `filename` field is not set.
73 pub fn filename(&self) -> &str {
74 self.filename.as_deref().unwrap_or(&self.body)
75 }
76
77 /// Returns the caption of the media file as defined by the [spec](https://spec.matrix.org/latest/client-server-api/#media-captions).
78 ///
79 /// In short, this is the `body` field if the `filename` field exists and has a different value,
80 /// otherwise the media file does not have a caption.
81 pub fn caption(&self) -> Option<&str> {
82 caption(&self.body, self.filename.as_deref())
83 }
84
85 /// Returns the formatted caption of the media file as defined by the [spec](https://spec.matrix.org/latest/client-server-api/#media-captions).
86 ///
87 /// This is the same as `caption`, but returns the formatted body instead of the plain body.
88 pub fn formatted_caption(&self) -> Option<&FormattedBody> {
89 formatted_caption(&self.body, self.formatted.as_ref(), self.filename.as_deref())
90 }
91}
92
93/// Metadata about a file.
94#[derive(Clone, Debug, Default, Deserialize, Serialize)]
95#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
96pub struct FileInfo {
97 /// The mimetype of the file, e.g. "application/msword".
98 #[serde(skip_serializing_if = "Option::is_none")]
99 pub mimetype: Option<String>,
100
101 /// The size of the file in bytes.
102 #[serde(skip_serializing_if = "Option::is_none")]
103 pub size: Option<UInt>,
104
105 /// Metadata about the image referred to in `thumbnail_source`.
106 #[serde(skip_serializing_if = "Option::is_none")]
107 pub thumbnail_info: Option<Box<ThumbnailInfo>>,
108
109 /// The source of the thumbnail of the file.
110 #[serde(
111 flatten,
112 with = "crate::room::thumbnail_source_serde",
113 skip_serializing_if = "Option::is_none"
114 )]
115 pub thumbnail_source: Option<MediaSource>,
116}
117
118impl FileInfo {
119 /// Creates an empty `FileInfo`.
120 pub fn new() -> Self {
121 Self::default()
122 }
123}