ruma_events/
emote.rs
1use ruma_macros::EventContent;
6use serde::{Deserialize, Serialize};
7
8use super::{message::TextContentBlock, room::message::Relation};
9
10#[derive(Clone, Debug, Serialize, Deserialize, EventContent)]
21#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
22#[ruma_event(type = "org.matrix.msc1767.emote", kind = MessageLike, without_relation)]
23pub struct EmoteEventContent {
24 #[serde(rename = "org.matrix.msc1767.text")]
26 pub text: TextContentBlock,
27
28 #[cfg(feature = "unstable-msc3955")]
30 #[serde(
31 default,
32 skip_serializing_if = "ruma_common::serde::is_default",
33 rename = "org.matrix.msc1767.automated"
34 )]
35 pub automated: bool,
36
37 #[serde(
39 flatten,
40 skip_serializing_if = "Option::is_none",
41 deserialize_with = "crate::room::message::relation_serde::deserialize_relation"
42 )]
43 pub relates_to: Option<Relation<EmoteEventContentWithoutRelation>>,
44}
45
46impl EmoteEventContent {
47 pub fn plain(body: impl Into<String>) -> Self {
49 Self {
50 text: TextContentBlock::plain(body),
51 #[cfg(feature = "unstable-msc3955")]
52 automated: false,
53 relates_to: None,
54 }
55 }
56
57 pub fn html(body: impl Into<String>, html_body: impl Into<String>) -> Self {
59 Self {
60 text: TextContentBlock::html(body, html_body),
61 #[cfg(feature = "unstable-msc3955")]
62 automated: false,
63 relates_to: None,
64 }
65 }
66
67 #[cfg(feature = "markdown")]
72 pub fn markdown(body: impl AsRef<str> + Into<String>) -> Self {
73 Self {
74 text: TextContentBlock::markdown(body),
75 #[cfg(feature = "unstable-msc3955")]
76 automated: false,
77 relates_to: None,
78 }
79 }
80}
81
82impl From<TextContentBlock> for EmoteEventContent {
83 fn from(text: TextContentBlock) -> Self {
84 Self {
85 text,
86 #[cfg(feature = "unstable-msc3955")]
87 automated: false,
88 relates_to: None,
89 }
90 }
91}