1//! Types for the [`m.room.avatar`] event.
2//!
3//! [`m.room.avatar`]: https://spec.matrix.org/latest/client-server-api/#mroomavatar
45use js_int::UInt;
6use ruma_common::OwnedMxcUri;
7use ruma_macros::EventContent;
8use serde::{Deserialize, Serialize};
910use super::ThumbnailInfo;
11use crate::EmptyStateKey;
1213/// The content of an `m.room.avatar` event.
14///
15/// A picture that is associated with the room.
16///
17/// This can be displayed alongside the room information.
18#[derive(Clone, Debug, Default, Deserialize, Serialize, EventContent)]
19#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
20#[ruma_event(type = "m.room.avatar", kind = State, state_key_type = EmptyStateKey)]
21pub struct RoomAvatarEventContent {
22/// Information about the avatar image.
23#[serde(skip_serializing_if = "Option::is_none")]
24pub info: Option<Box<ImageInfo>>,
2526/// URL of the avatar image.
27pub url: Option<OwnedMxcUri>,
28}
2930impl RoomAvatarEventContent {
31/// Create an empty `RoomAvatarEventContent`.
32pub fn new() -> Self {
33Self::default()
34 }
35}
3637/// Metadata about an image (specific to avatars).
38#[derive(Clone, Debug, Default, Deserialize, Serialize)]
39#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
40pub struct ImageInfo {
41/// The height of the image in pixels.
42#[serde(rename = "h", skip_serializing_if = "Option::is_none")]
43pub height: Option<UInt>,
4445/// The width of the image in pixels.
46#[serde(rename = "w", skip_serializing_if = "Option::is_none")]
47pub width: Option<UInt>,
4849/// The MIME type of the image, e.g. "image/png."
50#[serde(skip_serializing_if = "Option::is_none")]
51pub mimetype: Option<String>,
5253/// The file size of the image in bytes.
54#[serde(skip_serializing_if = "Option::is_none")]
55pub size: Option<UInt>,
5657/// Metadata about the image referred to in `thumbnail_url`.
58#[serde(skip_serializing_if = "Option::is_none")]
59pub thumbnail_info: Option<Box<ThumbnailInfo>>,
6061/// The URL to the thumbnail of the image.
62#[serde(skip_serializing_if = "Option::is_none")]
63pub thumbnail_url: Option<OwnedMxcUri>,
6465/// The [BlurHash](https://blurha.sh) for this image.
66 ///
67 /// This uses the unstable prefix in
68 /// [MSC2448](https://github.com/matrix-org/matrix-spec-proposals/pull/2448).
69#[cfg(feature = "unstable-msc2448")]
70 #[serde(rename = "xyz.amorgan.blurhash", skip_serializing_if = "Option::is_none")]
71pub blurhash: Option<String>,
72}
7374impl ImageInfo {
75/// Create a new `ImageInfo` with all fields set to `None`.
76pub fn new() -> Self {
77Self::default()
78 }
79}