ruma_events/room/message/
emote.rs

1use serde::{Deserialize, Serialize};
2
3use super::FormattedBody;
4
5/// The payload for an emote message.
6#[derive(Clone, Debug, Deserialize, Serialize)]
7#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
8pub struct EmoteMessageEventContent {
9    /// The emote action to perform.
10    pub body: String,
11
12    /// Formatted form of the message `body`.
13    #[serde(flatten)]
14    pub formatted: Option<FormattedBody>,
15}
16
17impl EmoteMessageEventContent {
18    /// A convenience constructor to create a plain-text emote.
19    pub fn plain(body: impl Into<String>) -> Self {
20        let body = body.into();
21        Self { body, formatted: None }
22    }
23
24    /// A convenience constructor to create an html emote message.
25    pub fn html(body: impl Into<String>, html_body: impl Into<String>) -> Self {
26        let body = body.into();
27        Self { body, formatted: Some(FormattedBody::html(html_body)) }
28    }
29
30    /// A convenience constructor to create a markdown emote.
31    ///
32    /// Returns an html emote message if some markdown formatting was detected, otherwise returns a
33    /// plain-text emote.
34    #[cfg(feature = "markdown")]
35    pub fn markdown(body: impl AsRef<str> + Into<String>) -> Self {
36        if let Some(formatted) = FormattedBody::markdown(&body) {
37            Self::html(body, formatted.body)
38        } else {
39            Self::plain(body)
40        }
41    }
42}