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
// Copyright 2022 Kévin Commaille
//
// 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.
//! Types and traits for attachments.
use std::time::Duration;
use ruma::{
OwnedTransactionId, UInt, assign,
events::{
Mentions,
room::{
ImageInfo, ThumbnailInfo,
message::{AudioInfo, FileInfo, TextMessageEventContent, VideoInfo},
},
},
};
use crate::room::reply::Reply;
/// Base metadata about an image.
#[derive(Debug, Clone, Default)]
pub struct BaseImageInfo {
/// The height of the image in pixels.
pub height: Option<UInt>,
/// The width of the image in pixels.
pub width: Option<UInt>,
/// The file size of the image in bytes.
pub size: Option<UInt>,
/// The [BlurHash](https://blurha.sh/) for this image.
pub blurhash: Option<String>,
/// Whether this image is animated.
pub is_animated: Option<bool>,
}
/// Base metadata about a video.
#[derive(Debug, Clone, Default)]
pub struct BaseVideoInfo {
/// The duration of the video.
pub duration: Option<Duration>,
/// The height of the video in pixels.
pub height: Option<UInt>,
/// The width of the video in pixels.
pub width: Option<UInt>,
/// The file size of the video in bytes.
pub size: Option<UInt>,
/// The [BlurHash](https://blurha.sh/) for this video.
pub blurhash: Option<String>,
}
/// Base metadata about an audio clip.
#[derive(Debug, Clone, Default)]
pub struct BaseAudioInfo {
/// The duration of the audio clip.
pub duration: Option<Duration>,
/// The file size of the audio clip in bytes.
pub size: Option<UInt>,
/// The waveform of the audio clip.
///
/// Must only include values between 0 and 1.
pub waveform: Option<Vec<f32>>,
}
/// Base metadata about a file.
#[derive(Debug, Clone, Default)]
pub struct BaseFileInfo {
/// The size of the file in bytes.
pub size: Option<UInt>,
}
/// Types of metadata for an attachment.
#[derive(Debug)]
pub enum AttachmentInfo {
/// The metadata of an image.
Image(BaseImageInfo),
/// The metadata of a video.
Video(BaseVideoInfo),
/// The metadata of an audio clip.
Audio(BaseAudioInfo),
/// The metadata of a file.
File(BaseFileInfo),
/// The metadata of a voice message
Voice(BaseAudioInfo),
}
impl From<AttachmentInfo> for ImageInfo {
fn from(info: AttachmentInfo) -> Self {
match info {
AttachmentInfo::Image(info) => assign!(ImageInfo::new(), {
height: info.height,
width: info.width,
size: info.size,
blurhash: info.blurhash,
is_animated: info.is_animated,
}),
_ => ImageInfo::new(),
}
}
}
impl From<AttachmentInfo> for VideoInfo {
fn from(info: AttachmentInfo) -> Self {
match info {
AttachmentInfo::Video(info) => assign!(VideoInfo::new(), {
duration: info.duration,
height: info.height,
width: info.width,
size: info.size,
blurhash: info.blurhash,
}),
_ => VideoInfo::new(),
}
}
}
impl From<AttachmentInfo> for AudioInfo {
fn from(info: AttachmentInfo) -> Self {
match info {
AttachmentInfo::Audio(info) | AttachmentInfo::Voice(info) => {
assign!(AudioInfo::new(), {
duration: info.duration,
size: info.size,
})
}
_ => AudioInfo::new(),
}
}
}
impl From<AttachmentInfo> for FileInfo {
fn from(info: AttachmentInfo) -> Self {
match info {
AttachmentInfo::File(info) => assign!(FileInfo::new(), {
size: info.size,
}),
_ => FileInfo::new(),
}
}
}
/// A thumbnail to upload and send for an attachment.
#[derive(Debug)]
pub struct Thumbnail {
/// The raw bytes of the thumbnail.
pub data: Vec<u8>,
/// The type of the thumbnail, this will be used as the content-type header.
pub content_type: mime::Mime,
/// The height of the thumbnail in pixels.
pub height: UInt,
/// The width of the thumbnail in pixels.
pub width: UInt,
/// The file size of the thumbnail in bytes.
pub size: UInt,
}
impl Thumbnail {
/// Convert this `Thumbnail` into a `(data, content_type, info)` tuple.
pub fn into_parts(self) -> (Vec<u8>, mime::Mime, Box<ThumbnailInfo>) {
let thumbnail_info = assign!(ThumbnailInfo::new(), {
height: Some(self.height),
width: Some(self.width),
size: Some(self.size),
mimetype: Some(self.content_type.to_string())
});
(self.data, self.content_type, Box::new(thumbnail_info))
}
}
/// Configuration for sending an attachment.
#[derive(Debug, Default)]
pub struct AttachmentConfig {
/// A fixed transaction id to be used for sending this attachment.
///
/// Otherwise, a random one will be generated.
pub txn_id: Option<OwnedTransactionId>,
/// Type-specific metadata about the attachment.
pub info: Option<AttachmentInfo>,
/// An optional thumbnail to send with the attachment.
pub thumbnail: Option<Thumbnail>,
/// An optional caption for the attachment.
pub caption: Option<TextMessageEventContent>,
/// Intentional mentions to be included in the media event.
pub mentions: Option<Mentions>,
/// Reply parameters for the attachment (replied-to event and thread-related
/// metadata).
pub reply: Option<Reply>,
/// Additional top-level fields to include in the media event's content.
/// The event's own fields take precedence on conflicts.
pub extra_content: Option<serde_json::Map<String, serde_json::Value>>,
}
impl AttachmentConfig {
/// Create a new empty `AttachmentConfig`.
pub fn new() -> Self {
Self::default()
}
/// Set the thumbnail to send.
///
/// # Arguments
///
/// * `thumbnail` - The thumbnail of the media. If the `content_type` does
/// not support it (e.g. audio clips), it is ignored.
#[must_use]
pub fn thumbnail(mut self, thumbnail: Option<Thumbnail>) -> Self {
self.thumbnail = thumbnail;
self
}
/// Set the transaction ID to send.
///
/// # Arguments
///
/// * `txn_id` - A unique ID that can be attached to a `MessageEvent` held
/// in its unsigned field as `transaction_id`. If not given, one is
/// created for the message.
#[must_use]
pub fn txn_id(mut self, txn_id: OwnedTransactionId) -> Self {
self.txn_id = Some(txn_id);
self
}
/// Set the media metadata to send.
///
/// # Arguments
///
/// * `info` - The metadata of the media. If the `AttachmentInfo` type
/// doesn't match the `content_type`, it is ignored.
#[must_use]
pub fn info(mut self, info: AttachmentInfo) -> Self {
self.info = Some(info);
self
}
/// Set the optional caption.
///
/// # Arguments
///
/// * `caption` - The optional caption.
pub fn caption(mut self, caption: Option<TextMessageEventContent>) -> Self {
self.caption = caption;
self
}
/// Set the mentions of the message.
///
/// # Arguments
///
/// * `mentions` - The mentions of the message.
pub fn mentions(mut self, mentions: Option<Mentions>) -> Self {
self.mentions = mentions;
self
}
/// Set the reply information of the message.
///
/// # Arguments
///
/// * `reply` - The reply information of the message.
pub fn reply(mut self, reply: Option<Reply>) -> Self {
self.reply = reply;
self
}
/// Set additional top-level fields for the media event's content.
///
/// # Arguments
///
/// * `extra_content` - The additional fields.
pub fn extra_content(
mut self,
extra_content: Option<serde_json::Map<String, serde_json::Value>>,
) -> Self {
self.extra_content = extra_content;
self
}
}
/// Configuration for sending a gallery.
#[cfg(feature = "unstable-msc4274")]
#[derive(Debug, Default)]
pub struct GalleryConfig {
pub(crate) txn_id: Option<OwnedTransactionId>,
pub(crate) items: Vec<GalleryItemInfo>,
pub(crate) caption: Option<TextMessageEventContent>,
pub(crate) mentions: Option<Mentions>,
pub(crate) reply: Option<Reply>,
}
#[cfg(feature = "unstable-msc4274")]
impl GalleryConfig {
/// Create a new empty `GalleryConfig`.
pub fn new() -> Self {
Self::default()
}
/// Set the transaction ID to send.
///
/// # Arguments
///
/// * `txn_id` - A unique ID that can be attached to a `MessageEvent` held
/// in its unsigned field as `transaction_id`. If not given, one is
/// created for the message.
#[must_use]
pub fn txn_id(mut self, txn_id: OwnedTransactionId) -> Self {
self.txn_id = Some(txn_id);
self
}
/// Adds a media item to the gallery.
///
/// # Arguments
///
/// * `item` - Information about the item to be added.
#[must_use]
pub fn add_item(mut self, item: GalleryItemInfo) -> Self {
self.items.push(item);
self
}
/// Set the optional caption.
///
/// # Arguments
///
/// * `caption` - The optional caption.
pub fn caption(mut self, caption: Option<TextMessageEventContent>) -> Self {
self.caption = caption;
self
}
/// Set the mentions of the message.
///
/// # Arguments
///
/// * `mentions` - The mentions of the message.
pub fn mentions(mut self, mentions: Option<Mentions>) -> Self {
self.mentions = mentions;
self
}
/// Set the reply information of the message.
///
/// # Arguments
///
/// * `reply` - The reply information of the message.
pub fn reply(mut self, reply: Option<Reply>) -> Self {
self.reply = reply;
self
}
/// Returns the number of media items in the gallery.
pub fn len(&self) -> usize {
self.items.len()
}
/// Checks whether the gallery contains any media items or not.
pub fn is_empty(&self) -> bool {
self.items.is_empty()
}
}
#[cfg(feature = "unstable-msc4274")]
#[derive(Debug)]
/// Metadata for a gallery item
pub struct GalleryItemInfo {
/// The filename.
pub filename: String,
/// The mime type.
pub content_type: mime::Mime,
/// The binary data.
pub data: Vec<u8>,
/// The attachment info.
pub attachment_info: AttachmentInfo,
/// The caption.
pub caption: Option<TextMessageEventContent>,
/// The thumbnail.
pub thumbnail: Option<Thumbnail>,
}