1use std::ops::Deref;
6
7use js_int::UInt;
8use ruma_common::OwnedMxcUri;
9use ruma_macros::EventContent;
10use serde::{Deserialize, Serialize};
11
12use super::{
13 file::{CaptionContentBlock, EncryptedContent, FileContentBlock},
14 message::TextContentBlock,
15 room::message::Relation,
16};
17
18#[derive(Clone, Debug, Serialize, Deserialize, EventContent)]
28#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
29#[ruma_event(type = "org.matrix.msc1767.image", kind = MessageLike, without_relation)]
30pub struct ImageEventContent {
31 #[serde(rename = "org.matrix.msc1767.text")]
33 pub text: TextContentBlock,
34
35 #[serde(rename = "org.matrix.msc1767.file")]
37 pub file: FileContentBlock,
38
39 #[serde(rename = "org.matrix.msc1767.image_details", skip_serializing_if = "Option::is_none")]
41 pub image_details: Option<ImageDetailsContentBlock>,
42
43 #[serde(
47 rename = "org.matrix.msc1767.thumbnail",
48 default,
49 skip_serializing_if = "ThumbnailContentBlock::is_empty"
50 )]
51 pub thumbnail: ThumbnailContentBlock,
52
53 #[serde(rename = "org.matrix.msc1767.caption", skip_serializing_if = "Option::is_none")]
55 pub caption: Option<CaptionContentBlock>,
56
57 #[serde(rename = "org.matrix.msc1767.alt_text", skip_serializing_if = "Option::is_none")]
59 pub alt_text: Option<AltTextContentBlock>,
60
61 #[cfg(feature = "unstable-msc3955")]
63 #[serde(
64 default,
65 skip_serializing_if = "ruma_common::serde::is_default",
66 rename = "org.matrix.msc1767.automated"
67 )]
68 pub automated: bool,
69
70 #[serde(
72 flatten,
73 skip_serializing_if = "Option::is_none",
74 deserialize_with = "crate::room::message::relation_serde::deserialize_relation"
75 )]
76 pub relates_to: Option<Relation<ImageEventContentWithoutRelation>>,
77}
78
79impl ImageEventContent {
80 pub fn new(text: TextContentBlock, file: FileContentBlock) -> Self {
83 Self {
84 text,
85 file,
86 image_details: None,
87 thumbnail: Default::default(),
88 caption: None,
89 alt_text: None,
90 #[cfg(feature = "unstable-msc3955")]
91 automated: false,
92 relates_to: None,
93 }
94 }
95
96 pub fn with_plain_text(plain_text: impl Into<String>, file: FileContentBlock) -> Self {
99 Self {
100 text: TextContentBlock::plain(plain_text),
101 file,
102 image_details: None,
103 thumbnail: Default::default(),
104 caption: None,
105 alt_text: None,
106 #[cfg(feature = "unstable-msc3955")]
107 automated: false,
108 relates_to: None,
109 }
110 }
111}
112
113#[derive(Default, Clone, Debug, Serialize, Deserialize)]
115#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
116pub struct ImageDetailsContentBlock {
117 pub height: UInt,
119
120 pub width: UInt,
122
123 #[serde(
125 rename = "org.matrix.msc1767.sticker",
126 default,
127 skip_serializing_if = "ruma_common::serde::is_default"
128 )]
129 pub sticker: bool,
130}
131
132impl ImageDetailsContentBlock {
133 pub fn new(width: UInt, height: UInt) -> Self {
135 Self { height, width, sticker: Default::default() }
136 }
137}
138
139#[derive(Clone, Debug, Default, Serialize, Deserialize)]
146#[allow(clippy::exhaustive_structs)]
147pub struct ThumbnailContentBlock(Vec<Thumbnail>);
148
149impl ThumbnailContentBlock {
150 pub fn is_empty(&self) -> bool {
152 self.0.is_empty()
153 }
154}
155
156impl From<Vec<Thumbnail>> for ThumbnailContentBlock {
157 fn from(thumbnails: Vec<Thumbnail>) -> Self {
158 Self(thumbnails)
159 }
160}
161
162impl FromIterator<Thumbnail> for ThumbnailContentBlock {
163 fn from_iter<T: IntoIterator<Item = Thumbnail>>(iter: T) -> Self {
164 Self(iter.into_iter().collect())
165 }
166}
167
168impl Deref for ThumbnailContentBlock {
169 type Target = [Thumbnail];
170
171 fn deref(&self) -> &Self::Target {
172 &self.0
173 }
174}
175
176#[derive(Clone, Debug, Deserialize, Serialize)]
178#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
179pub struct Thumbnail {
180 #[serde(rename = "org.matrix.msc1767.file")]
182 pub file: ThumbnailFileContentBlock,
183
184 #[serde(rename = "org.matrix.msc1767.image_details")]
186 pub image_details: ThumbnailImageDetailsContentBlock,
187}
188
189impl Thumbnail {
190 pub fn new(
192 file: ThumbnailFileContentBlock,
193 image_details: ThumbnailImageDetailsContentBlock,
194 ) -> Self {
195 Self { file, image_details }
196 }
197}
198
199#[derive(Clone, Debug, Serialize, Deserialize)]
201#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
202pub struct ThumbnailFileContentBlock {
203 pub url: OwnedMxcUri,
205
206 pub mimetype: String,
208
209 #[serde(skip_serializing_if = "Option::is_none")]
211 pub name: Option<String>,
212
213 #[serde(skip_serializing_if = "Option::is_none")]
215 pub size: Option<UInt>,
216
217 #[serde(flatten, skip_serializing_if = "Option::is_none")]
221 pub encryption_info: Option<Box<EncryptedContent>>,
222}
223
224impl ThumbnailFileContentBlock {
225 pub fn plain(url: OwnedMxcUri, mimetype: String) -> Self {
227 Self { url, mimetype, name: None, size: None, encryption_info: None }
228 }
229
230 pub fn encrypted(
233 url: OwnedMxcUri,
234 mimetype: String,
235 encryption_info: EncryptedContent,
236 ) -> Self {
237 Self {
238 url,
239 mimetype,
240 name: None,
241 size: None,
242 encryption_info: Some(Box::new(encryption_info)),
243 }
244 }
245
246 pub fn is_encrypted(&self) -> bool {
248 self.encryption_info.is_some()
249 }
250}
251
252#[derive(Default, Clone, Debug, Serialize, Deserialize)]
254#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
255pub struct ThumbnailImageDetailsContentBlock {
256 pub height: UInt,
258
259 pub width: UInt,
261}
262
263impl ThumbnailImageDetailsContentBlock {
264 pub fn new(width: UInt, height: UInt) -> Self {
266 Self { height, width }
267 }
268}
269
270#[derive(Clone, Debug, Serialize, Deserialize)]
277#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
278pub struct AltTextContentBlock {
279 #[serde(rename = "org.matrix.msc1767.text")]
281 pub text: TextContentBlock,
282}
283
284impl AltTextContentBlock {
285 pub fn plain(body: impl Into<String>) -> Self {
287 Self { text: TextContentBlock::plain(body) }
288 }
289}
290
291impl From<TextContentBlock> for AltTextContentBlock {
292 fn from(text: TextContentBlock) -> Self {
293 Self { text }
294 }
295}