ruma_events/
ignored_user_list.rs
1use std::collections::BTreeMap;
6
7use ruma_common::OwnedUserId;
8use ruma_macros::EventContent;
9use serde::{Deserialize, Serialize};
10
11#[derive(Clone, Debug, Default, Deserialize, Serialize, EventContent)]
15#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
16#[ruma_event(type = "m.ignored_user_list", kind = GlobalAccountData)]
17pub struct IgnoredUserListEventContent {
18 pub ignored_users: BTreeMap<OwnedUserId, IgnoredUser>,
23}
24
25impl IgnoredUserListEventContent {
26 pub fn new(ignored_users: BTreeMap<OwnedUserId, IgnoredUser>) -> Self {
28 Self { ignored_users }
29 }
30
31 pub fn users(ignored_users: impl IntoIterator<Item = OwnedUserId>) -> Self {
33 Self::new(ignored_users.into_iter().map(|id| (id, IgnoredUser {})).collect())
34 }
35}
36
37#[derive(Clone, Debug, Default, Deserialize, Serialize)]
41#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
42pub struct IgnoredUser {}
43
44impl IgnoredUser {
45 pub fn new() -> Self {
47 Self::default()
48 }
49}
50
51#[cfg(test)]
52mod tests {
53 use assert_matches2::assert_matches;
54 use ruma_common::{owned_user_id, user_id};
55 use serde_json::{from_value as from_json_value, json, to_value as to_json_value};
56
57 use super::IgnoredUserListEventContent;
58 use crate::AnyGlobalAccountDataEvent;
59
60 #[test]
61 fn serialization() {
62 let ignored_user_list =
63 IgnoredUserListEventContent::users(vec![owned_user_id!("@carl:example.com")]);
64
65 let json = json!({
66 "ignored_users": {
67 "@carl:example.com": {}
68 },
69 });
70
71 assert_eq!(to_json_value(ignored_user_list).unwrap(), json);
72 }
73
74 #[test]
75 fn deserialization() {
76 let json = json!({
77 "content": {
78 "ignored_users": {
79 "@carl:example.com": {}
80 }
81 },
82 "type": "m.ignored_user_list"
83 });
84
85 assert_matches!(
86 from_json_value::<AnyGlobalAccountDataEvent>(json),
87 Ok(AnyGlobalAccountDataEvent::IgnoredUserList(ev))
88 );
89 assert_eq!(
90 ev.content.ignored_users.keys().collect::<Vec<_>>(),
91 vec![user_id!("@carl:example.com")]
92 );
93 }
94}