1//! Types for image packs in Matrix ([MSC2545]).
2//!
3//! [MSC2545]: https://github.com/matrix-org/matrix-spec-proposals/pull/2545
45use std::collections::{BTreeMap, BTreeSet};
67use ruma_common::{serde::StringEnum, OwnedMxcUri, OwnedRoomId};
8use ruma_macros::EventContent;
9use serde::{Deserialize, Serialize};
1011use crate::{room::ImageInfo, PrivOwnedStr};
1213/// The content of an `im.ponies.room_emotes` event,
14/// the unstable version of `m.image_pack` in room state events.
15///
16/// State key is the identifier for the image pack in [ImagePackRoomsEventContent].
17#[derive(Clone, Debug, Default, Deserialize, Serialize, EventContent)]
18#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
19#[ruma_event(type = "im.ponies.room_emotes", kind = State, state_key_type = String)]
20pub struct RoomImagePackEventContent {
21/// A list of images available in this image pack.
22 ///
23 /// Keys in the map are shortcodes for the images.
24pub images: BTreeMap<String, PackImage>,
2526/// Image pack info.
27#[serde(skip_serializing_if = "Option::is_none")]
28pub pack: Option<PackInfo>,
29}
3031impl RoomImagePackEventContent {
32/// Creates a new `RoomImagePackEventContent` with a list of images.
33pub fn new(images: BTreeMap<String, PackImage>) -> Self {
34Self { images, pack: None }
35 }
36}
3738/// The content of an `im.ponies.user_emotes` event,
39/// the unstable version of `m.image_pack` in account data events.
40#[derive(Clone, Debug, Default, Deserialize, Serialize, EventContent)]
41#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
42#[ruma_event(type = "im.ponies.user_emotes", kind = GlobalAccountData)]
43pub struct AccountImagePackEventContent {
44/// A list of images available in this image pack.
45 ///
46 /// Keys in the map are shortcodes for the images.
47pub images: BTreeMap<String, PackImage>,
4849/// Image pack info.
50#[serde(skip_serializing_if = "Option::is_none")]
51pub pack: Option<PackInfo>,
52}
5354impl AccountImagePackEventContent {
55/// Creates a new `AccountImagePackEventContent` with a list of images.
56pub fn new(images: BTreeMap<String, PackImage>) -> Self {
57Self { images, pack: None }
58 }
59}
6061/// An image object in a image pack.
62#[derive(Clone, Debug, Deserialize, Serialize)]
63#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
64pub struct PackImage {
65/// The MXC URI to the media file.
66pub url: OwnedMxcUri,
6768/// An optional text body for this image.
69 /// Useful for the sticker body text or the emote alt text.
70 ///
71 /// Defaults to the shortcode.
72#[serde(skip_serializing_if = "Option::is_none")]
73pub body: Option<String>,
7475/// The [ImageInfo] object used for the `info` block of `m.sticker` events.
76#[serde(skip_serializing_if = "Option::is_none")]
77pub info: Option<ImageInfo>,
7879/// The usages for the image.
80#[serde(default, skip_serializing_if = "BTreeSet::is_empty")]
81pub usage: BTreeSet<PackUsage>,
82}
8384impl PackImage {
85/// Creates a new `PackImage` with the given MXC URI to the media file.
86pub fn new(url: OwnedMxcUri) -> Self {
87Self { url, body: None, info: None, usage: BTreeSet::new() }
88 }
89}
9091/// A description for the pack.
92#[derive(Clone, Debug, Default, Deserialize, Serialize)]
93#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
94pub struct PackInfo {
95/// A display name for the pack.
96 /// This does not have to be unique from other packs in a room.
97 ///
98 /// Defaults to the room name, if the image pack event is in the room.
99#[serde(skip_serializing_if = "Option::is_none")]
100pub display_name: Option<String>,
101102/// The MXC URI of an avatar/icon to display for the pack.
103 ///
104 /// Defaults to the room avatar, if the pack is in the room.
105 /// Otherwise, the pack does not have an avatar.
106#[serde(skip_serializing_if = "Option::is_none")]
107pub avatar_url: Option<OwnedMxcUri>,
108109/// The usages for the pack.
110#[serde(default, skip_serializing_if = "BTreeSet::is_empty")]
111pub usage: BTreeSet<PackUsage>,
112113/// The attribution of this pack.
114#[serde(skip_serializing_if = "Option::is_none")]
115pub attribution: Option<String>,
116}
117118impl PackInfo {
119/// Creates a new empty `PackInfo`.
120pub fn new() -> Self {
121Self::default()
122 }
123}
124125/// Usages for either an image pack or an individual image.
126#[doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/src/doc/string_enum.md"))]
127#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, StringEnum)]
128#[ruma_enum(rename_all = "snake_case")]
129#[non_exhaustive]
130pub enum PackUsage {
131/// Pack or image is usable as a emoticon.
132Emoticon,
133134/// Pack or image is usable as a sticker.
135Sticker,
136137#[doc(hidden)]
138_Custom(PrivOwnedStr),
139}
140141/// The content of an `im.ponies.emote_rooms` event,
142/// the unstable version of `m.image_pack.rooms`.
143#[derive(Clone, Debug, Default, Deserialize, Serialize, EventContent)]
144#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
145#[ruma_event(type = "im.ponies.emote_rooms", kind = GlobalAccountData)]
146pub struct ImagePackRoomsEventContent {
147/// A map of enabled image packs in each room.
148pub rooms: BTreeMap<OwnedRoomId, BTreeMap<String, ImagePackRoomContent>>,
149}
150151impl ImagePackRoomsEventContent {
152/// Creates a new `ImagePackRoomsEventContent`
153 /// with a map of enabled image packs in each room.
154pub fn new(rooms: BTreeMap<OwnedRoomId, BTreeMap<String, ImagePackRoomContent>>) -> Self {
155Self { rooms }
156 }
157}
158159/// Additional metadatas for a enabled room image pack.
160#[derive(Clone, Debug, Default, Deserialize, Serialize)]
161#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
162pub struct ImagePackRoomContent {}
163164impl ImagePackRoomContent {
165/// Creates a new empty `ImagePackRoomContent`.
166pub fn new() -> Self {
167Self {}
168 }
169}