use std::time::Duration;
use js_int::UInt;
use ruma_macros::EventContent;
use serde::{Deserialize, Serialize};
use super::{
file::{CaptionContentBlock, FileContentBlock},
image::ThumbnailContentBlock,
message::TextContentBlock,
room::message::Relation,
};
#[derive(Clone, Debug, Serialize, Deserialize, EventContent)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
#[ruma_event(type = "org.matrix.msc1767.video", kind = MessageLike, without_relation)]
pub struct VideoEventContent {
#[serde(rename = "org.matrix.msc1767.text")]
pub text: TextContentBlock,
#[serde(rename = "org.matrix.msc1767.file")]
pub file: FileContentBlock,
#[serde(rename = "org.matrix.msc1767.video_details", skip_serializing_if = "Option::is_none")]
pub video_details: Option<VideoDetailsContentBlock>,
#[serde(
rename = "org.matrix.msc1767.thumbnail",
default,
skip_serializing_if = "ThumbnailContentBlock::is_empty"
)]
pub thumbnail: ThumbnailContentBlock,
#[serde(rename = "org.matrix.msc1767.caption", skip_serializing_if = "Option::is_none")]
pub caption: Option<CaptionContentBlock>,
#[cfg(feature = "unstable-msc3955")]
#[serde(
default,
skip_serializing_if = "ruma_common::serde::is_default",
rename = "org.matrix.msc1767.automated"
)]
pub automated: bool,
#[serde(
flatten,
skip_serializing_if = "Option::is_none",
deserialize_with = "crate::room::message::relation_serde::deserialize_relation"
)]
pub relates_to: Option<Relation<VideoEventContentWithoutRelation>>,
}
impl VideoEventContent {
pub fn new(text: TextContentBlock, file: FileContentBlock) -> Self {
Self {
text,
file,
video_details: None,
thumbnail: Default::default(),
caption: None,
#[cfg(feature = "unstable-msc3955")]
automated: false,
relates_to: None,
}
}
pub fn with_plain_text(plain_text: impl Into<String>, file: FileContentBlock) -> Self {
Self {
text: TextContentBlock::plain(plain_text),
file,
video_details: None,
thumbnail: Default::default(),
caption: None,
#[cfg(feature = "unstable-msc3955")]
automated: false,
relates_to: None,
}
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
pub struct VideoDetailsContentBlock {
pub width: UInt,
pub height: UInt,
#[serde(
with = "ruma_common::serde::duration::opt_secs",
default,
skip_serializing_if = "Option::is_none"
)]
pub duration: Option<Duration>,
}
impl VideoDetailsContentBlock {
pub fn new(width: UInt, height: UInt) -> Self {
Self { width, height, duration: None }
}
}