1use std::{collections::BTreeMap, fmt, hash::Hash, iter, sync::LazyLock};
18
19pub use matrix_sdk_common::deserialized_responses::*;
20use regex::Regex;
21use ruma::{
22 EventId, MilliSecondsSinceUnixEpoch, MxcUri, OwnedEventId, OwnedRoomId, OwnedUserId, UInt,
23 UserId,
24 events::{
25 AnyStrippedStateEvent, AnySyncStateEvent, AnySyncTimelineEvent, EventContentFromType,
26 PossiblyRedactedStateEventContent, RedactContent, RedactedStateEventContent,
27 StateEventContent, StaticStateEventContent, StrippedStateEvent, SyncStateEvent,
28 room::{
29 member::{MembershipState, RoomMemberEvent, RoomMemberEventContent},
30 power_levels::{RoomPowerLevels, RoomPowerLevelsEventContent},
31 },
32 },
33 room_version_rules::AuthorizationRules,
34 serde::Raw,
35};
36use serde::Serialize;
37use unicode_normalization::UnicodeNormalization;
38
39#[derive(Clone, Debug)]
42#[non_exhaustive]
43pub struct AmbiguityChange {
44 pub member_id: OwnedUserId,
47 pub member_ambiguous: bool,
50 pub disambiguated_member: Option<OwnedUserId>,
52 pub ambiguated_member: Option<OwnedUserId>,
54}
55
56impl AmbiguityChange {
57 pub fn user_ids(&self) -> impl Iterator<Item = &UserId> {
59 iter::once(&*self.member_id)
60 .chain(self.disambiguated_member.as_deref())
61 .chain(self.ambiguated_member.as_deref())
62 }
63}
64
65#[derive(Clone, Debug, Default)]
67#[non_exhaustive]
68pub struct AmbiguityChanges {
69 pub changes: BTreeMap<OwnedRoomId, BTreeMap<OwnedEventId, AmbiguityChange>>,
72}
73
74static MXID_REGEX: LazyLock<Regex> = LazyLock::new(|| {
75 Regex::new(DisplayName::MXID_PATTERN)
76 .expect("We should be able to create a regex from our static MXID pattern")
77});
78static LEFT_TO_RIGHT_REGEX: LazyLock<Regex> = LazyLock::new(|| {
79 Regex::new(DisplayName::LEFT_TO_RIGHT_PATTERN)
80 .expect("We should be able to create a regex from our static left-to-right pattern")
81});
82static HIDDEN_CHARACTERS_REGEX: LazyLock<Regex> = LazyLock::new(|| {
83 Regex::new(DisplayName::HIDDEN_CHARACTERS_PATTERN)
84 .expect("We should be able to create a regex from our static hidden characters pattern")
85});
86
87static I_REGEX: LazyLock<Regex> = LazyLock::new(|| {
92 Regex::new("[i]").expect("We should be able to create a regex from our uppercase I pattern")
93});
94
95static ZERO_REGEX: LazyLock<Regex> = LazyLock::new(|| {
100 Regex::new("[0]").expect("We should be able to create a regex from our zero pattern")
101});
102
103static DOT_REGEX: LazyLock<Regex> = LazyLock::new(|| {
108 Regex::new("[.\u{1d16d}]").expect("We should be able to create a regex from our dot pattern")
109});
110
111#[derive(Debug, Clone, Eq)]
136pub struct DisplayName {
137 raw: String,
138 decancered: Option<String>,
139}
140
141impl Hash for DisplayName {
142 fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
143 if let Some(decancered) = &self.decancered {
144 decancered.hash(state);
145 } else {
146 self.raw.hash(state);
147 }
148 }
149}
150
151impl PartialEq for DisplayName {
152 fn eq(&self, other: &Self) -> bool {
153 match (self.decancered.as_deref(), other.decancered.as_deref()) {
154 (None, None) => self.raw == other.raw,
155 (None, Some(_)) | (Some(_), None) => false,
156 (Some(this), Some(other)) => this == other,
157 }
158 }
159}
160
161impl DisplayName {
162 const MXID_PATTERN: &'static str = "@.+[:.].+";
164
165 const LEFT_TO_RIGHT_PATTERN: &'static str = "[\u{202a}-\u{202f}\u{200e}\u{200f}]";
169
170 const HIDDEN_CHARACTERS_PATTERN: &'static str =
180 "[\u{2000}-\u{200D}\u{300}-\u{036f}\u{2062}-\u{2063}\u{2800}\u{061c}\u{feff}]";
181
182 pub fn new(raw: &str) -> Self {
191 let normalized = raw.nfd().collect::<String>();
192 let replaced = DOT_REGEX.replace_all(&normalized, ":");
193 let replaced = HIDDEN_CHARACTERS_REGEX.replace_all(&replaced, "");
194
195 let decancered = decancer::cure!(&replaced).ok().map(|cured| {
196 let removed_left_to_right = LEFT_TO_RIGHT_REGEX.replace_all(cured.as_ref(), "");
197 let replaced = I_REGEX.replace_all(&removed_left_to_right, "l");
198 let replaced = DOT_REGEX.replace_all(&replaced, ":");
202 let replaced = ZERO_REGEX.replace_all(&replaced, "o");
203
204 replaced.to_string()
205 });
206
207 Self { raw: raw.to_owned(), decancered }
208 }
209
210 pub fn is_inherently_ambiguous(&self) -> bool {
215 self.looks_like_an_mxid() || self.has_hidden_characters() || self.decancered.is_none()
218 }
219
220 pub fn as_raw_str(&self) -> &str {
223 &self.raw
224 }
225
226 pub fn as_normalized_str(&self) -> Option<&str> {
232 self.decancered.as_deref()
233 }
234
235 fn has_hidden_characters(&self) -> bool {
236 HIDDEN_CHARACTERS_REGEX.is_match(&self.raw)
237 }
238
239 fn looks_like_an_mxid(&self) -> bool {
240 self.decancered
241 .as_deref()
242 .map(|d| MXID_REGEX.is_match(d))
243 .unwrap_or_else(|| MXID_REGEX.is_match(&self.raw))
244 }
245}
246
247#[derive(Clone, Debug, Default)]
251pub struct MembersResponse {
252 pub chunk: Vec<RoomMemberEvent>,
254 pub ambiguity_changes: AmbiguityChanges,
256}
257
258#[derive(Clone, Debug, Serialize)]
260#[serde(untagged)]
261pub enum RawAnySyncOrStrippedTimelineEvent {
262 Sync(Raw<AnySyncTimelineEvent>),
264 Stripped(Raw<AnyStrippedStateEvent>),
266}
267
268impl From<Raw<AnySyncTimelineEvent>> for RawAnySyncOrStrippedTimelineEvent {
269 fn from(event: Raw<AnySyncTimelineEvent>) -> Self {
270 Self::Sync(event)
271 }
272}
273
274impl From<Raw<AnyStrippedStateEvent>> for RawAnySyncOrStrippedTimelineEvent {
275 fn from(event: Raw<AnyStrippedStateEvent>) -> Self {
276 Self::Stripped(event)
277 }
278}
279
280#[derive(Clone, Debug, Serialize)]
282#[serde(untagged)]
283pub enum RawAnySyncOrStrippedState {
284 Sync(Raw<AnySyncStateEvent>),
286 Stripped(Raw<AnyStrippedStateEvent>),
288}
289
290impl RawAnySyncOrStrippedState {
291 pub fn deserialize(&self) -> serde_json::Result<AnySyncOrStrippedState> {
293 match self {
294 Self::Sync(raw) => Ok(AnySyncOrStrippedState::Sync(Box::new(raw.deserialize()?))),
295 Self::Stripped(raw) => {
296 Ok(AnySyncOrStrippedState::Stripped(Box::new(raw.deserialize()?)))
297 }
298 }
299 }
300
301 pub fn cast<C>(self) -> RawSyncOrStrippedState<C>
304 where
305 C: StaticStateEventContent + RedactContent,
306 C::Redacted: RedactedStateEventContent,
307 {
308 match self {
309 Self::Sync(raw) => RawSyncOrStrippedState::Sync(raw.cast_unchecked()),
310 Self::Stripped(raw) => RawSyncOrStrippedState::Stripped(raw.cast_unchecked()),
311 }
312 }
313}
314
315#[derive(Clone, Debug)]
317pub enum AnySyncOrStrippedState {
318 Sync(Box<AnySyncStateEvent>),
323 Stripped(Box<AnyStrippedStateEvent>),
328}
329
330impl AnySyncOrStrippedState {
331 pub fn as_sync(&self) -> Option<&AnySyncStateEvent> {
334 match self {
335 Self::Sync(ev) => Some(ev),
336 Self::Stripped(_) => None,
337 }
338 }
339
340 pub fn as_stripped(&self) -> Option<&AnyStrippedStateEvent> {
343 match self {
344 Self::Sync(_) => None,
345 Self::Stripped(ev) => Some(ev),
346 }
347 }
348}
349
350#[derive(Clone, Debug, Serialize)]
352#[serde(untagged)]
353pub enum RawSyncOrStrippedState<C>
354where
355 C: StaticStateEventContent + RedactContent,
356 C::Redacted: RedactedStateEventContent,
357{
358 Sync(Raw<SyncStateEvent<C>>),
360 Stripped(Raw<StrippedStateEvent<C::PossiblyRedacted>>),
362}
363
364impl<C> RawSyncOrStrippedState<C>
365where
366 C: StaticStateEventContent + RedactContent,
367 C::Redacted: RedactedStateEventContent + fmt::Debug + Clone,
368{
369 pub fn deserialize(&self) -> serde_json::Result<SyncOrStrippedState<C>>
371 where
372 C: StaticStateEventContent + EventContentFromType + RedactContent,
373 C::Redacted: RedactedStateEventContent<StateKey = C::StateKey> + EventContentFromType,
374 C::PossiblyRedacted: PossiblyRedactedStateEventContent + EventContentFromType,
375 {
376 match self {
377 Self::Sync(ev) => Ok(SyncOrStrippedState::Sync(ev.deserialize()?)),
378 Self::Stripped(ev) => Ok(SyncOrStrippedState::Stripped(ev.deserialize()?)),
379 }
380 }
381}
382
383pub type RawMemberEvent = RawSyncOrStrippedState<RoomMemberEventContent>;
385
386#[derive(Clone, Debug)]
388pub enum SyncOrStrippedState<C>
389where
390 C: StaticStateEventContent + RedactContent,
391 C::Redacted: RedactedStateEventContent + fmt::Debug + Clone,
392{
393 Sync(SyncStateEvent<C>),
395 Stripped(StrippedStateEvent<C::PossiblyRedacted>),
397}
398
399impl<C> SyncOrStrippedState<C>
400where
401 C: StaticStateEventContent + RedactContent,
402 C::Redacted: RedactedStateEventContent<StateKey = C::StateKey> + fmt::Debug + Clone,
403 C::PossiblyRedacted: PossiblyRedactedStateEventContent<StateKey = C::StateKey>,
404{
405 pub fn as_sync(&self) -> Option<&SyncStateEvent<C>> {
407 match self {
408 Self::Sync(ev) => Some(ev),
409 Self::Stripped(_) => None,
410 }
411 }
412
413 pub fn as_stripped(&self) -> Option<&StrippedStateEvent<C::PossiblyRedacted>> {
416 match self {
417 Self::Sync(_) => None,
418 Self::Stripped(ev) => Some(ev),
419 }
420 }
421
422 pub fn sender(&self) -> &UserId {
424 match self {
425 Self::Sync(e) => e.sender(),
426 Self::Stripped(e) => &e.sender,
427 }
428 }
429
430 pub fn event_id(&self) -> Option<&EventId> {
432 match self {
433 Self::Sync(e) => Some(e.event_id()),
434 Self::Stripped(_) => None,
435 }
436 }
437
438 pub fn origin_server_ts(&self) -> Option<MilliSecondsSinceUnixEpoch> {
440 match self {
441 Self::Sync(e) => Some(e.origin_server_ts()),
442 Self::Stripped(_) => None,
443 }
444 }
445
446 pub fn state_key(&self) -> &C::StateKey {
448 match self {
449 Self::Sync(e) => e.state_key(),
450 Self::Stripped(e) => &e.state_key,
451 }
452 }
453}
454
455impl<C> SyncOrStrippedState<C>
456where
457 C: StaticStateEventContent<PossiblyRedacted = C>
458 + RedactContent
459 + PossiblyRedactedStateEventContent,
460 C::Redacted: RedactedStateEventContent<StateKey = <C as StateEventContent>::StateKey>
461 + fmt::Debug
462 + Clone,
463{
464 pub fn original_content(&self) -> Option<&C> {
466 match self {
467 Self::Sync(e) => e.as_original().map(|e| &e.content),
468 Self::Stripped(e) => Some(&e.content),
469 }
470 }
471}
472
473pub type MemberEvent = SyncOrStrippedState<RoomMemberEventContent>;
475
476impl MemberEvent {
477 pub fn membership(&self) -> &MembershipState {
479 match self {
480 MemberEvent::Sync(e) => e.membership(),
481 MemberEvent::Stripped(e) => &e.content.membership,
482 }
483 }
484
485 pub fn user_id(&self) -> &UserId {
487 self.state_key()
488 }
489
490 pub fn displayname_value(&self) -> Option<&str> {
495 match self {
496 Self::Sync(event) => event.as_original()?.content.displayname.as_deref(),
497 Self::Stripped(event) => event.content.displayname.as_deref(),
498 }
499 }
500
501 pub fn display_name(&self) -> DisplayName {
506 DisplayName::new(self.displayname_value().unwrap_or_else(|| self.user_id().localpart()))
507 }
508
509 pub fn avatar_url(&self) -> Option<&MxcUri> {
514 match self {
515 Self::Sync(event) => event.as_original()?.content.avatar_url.as_deref(),
516 Self::Stripped(event) => event.content.avatar_url.as_deref(),
517 }
518 }
519
520 pub fn reason(&self) -> Option<&str> {
522 match self {
523 MemberEvent::Sync(SyncStateEvent::Original(c)) => c.content.reason.as_deref(),
524 MemberEvent::Stripped(e) => e.content.reason.as_deref(),
525 _ => None,
526 }
527 }
528
529 pub fn timestamp(&self) -> Option<UInt> {
531 match self {
532 MemberEvent::Sync(SyncStateEvent::Original(c)) => Some(c.origin_server_ts.0),
533 _ => None,
534 }
535 }
536}
537
538impl SyncOrStrippedState<RoomPowerLevelsEventContent> {
539 pub fn power_levels(
541 &self,
542 rules: &AuthorizationRules,
543 creators: Vec<OwnedUserId>,
544 ) -> RoomPowerLevels {
545 match self {
546 Self::Sync(e) => e.power_levels(rules, creators),
547 Self::Stripped(e) => e.power_levels(rules, creators),
548 }
549 }
550}
551
552#[cfg(test)]
553mod test {
554 macro_rules! assert_display_name_eq {
555 ($left:expr, $right:expr $(, $desc:expr)?) => {{
556 let left = crate::deserialized_responses::DisplayName::new($left);
557 let right = crate::deserialized_responses::DisplayName::new($right);
558
559 similar_asserts::assert_eq!(
560 left,
561 right
562 $(, $desc)?
563 );
564 }};
565 }
566
567 macro_rules! assert_display_name_ne {
568 ($left:expr, $right:expr $(, $desc:expr)?) => {{
569 let left = crate::deserialized_responses::DisplayName::new($left);
570 let right = crate::deserialized_responses::DisplayName::new($right);
571
572 assert_ne!(
573 left,
574 right
575 $(, $desc)?
576 );
577 }};
578 }
579
580 macro_rules! assert_ambiguous {
581 ($name:expr) => {
582 let name = crate::deserialized_responses::DisplayName::new($name);
583
584 assert!(
585 name.is_inherently_ambiguous(),
586 "The display {:?} should be considered amgibuous",
587 name
588 );
589 };
590 }
591
592 macro_rules! assert_not_ambiguous {
593 ($name:expr) => {
594 let name = crate::deserialized_responses::DisplayName::new($name);
595
596 assert!(
597 !name.is_inherently_ambiguous(),
598 "The display {:?} should not be considered amgibuous",
599 name
600 );
601 };
602 }
603
604 #[test]
605 fn test_display_name_inherently_ambiguous() {
606 assert_not_ambiguous!("Alice");
610 assert_not_ambiguous!("Carol");
611 assert_not_ambiguous!("Car0l");
612 assert_not_ambiguous!("Ivan");
613 assert_not_ambiguous!("๐ฎ๐ถ๐ฝ๐ถ๐๐๐ถ๐ฝ๐๐ถ");
614 assert_not_ambiguous!("โโโโโขโกโโโโ");
615 assert_not_ambiguous!("๐
๐ฐ๐ท๐ฐ๐
๐
๐ฐ๐ท๐ป๐ฐ");
616 assert_not_ambiguous!("๏ผณ๏ฝ๏ฝ๏ฝ๏ฝ๏ฝ๏ฝ๏ฝ๏ฝ๏ฝ");
617 assert_not_ambiguous!("\u{202e}alharsahas");
619
620 assert_ambiguous!("Saฬดhasrahla");
622 assert_ambiguous!("Sahas\u{200D}rahla");
623 }
624
625 #[test]
626 fn test_display_name_equality_capitalization() {
627 assert_display_name_eq!("Alice", "alice");
629 }
630
631 #[test]
632 fn test_display_name_equality_different_names() {
633 assert_display_name_ne!("Alice", "Carol");
635 }
636
637 #[test]
638 fn test_display_name_equality_capital_l() {
639 assert_display_name_eq!("Hello", "HeIlo");
641 }
642
643 #[test]
644 fn test_display_name_equality_confusable_zero() {
645 assert_display_name_eq!("Carol", "Car0l");
647 }
648
649 #[test]
650 fn test_display_name_equality_cyrillic() {
651 assert_display_name_eq!("alice", "ะฐlice");
653 }
654
655 #[test]
656 fn test_display_name_equality_scriptures() {
657 assert_display_name_eq!("Sahasrahla", "๐ฎ๐ถ๐ฝ๐ถ๐๐๐ถ๐ฝ๐๐ถ");
659 }
660
661 #[test]
662 fn test_display_name_equality_frakturs() {
663 assert_display_name_eq!("Sahasrahla", "๐๐๐ฅ๐๐ฐ๐ฏ๐๐ฅ๐ฉ๐");
665 }
666
667 #[test]
668 fn test_display_name_equality_circled() {
669 assert_display_name_eq!("Sahasrahla", "โโโโโขโกโโโโ");
671 }
672
673 #[test]
674 fn test_display_name_equality_squared() {
675 assert_display_name_eq!("Sahasrahla", "๐
๐ฐ๐ท๐ฐ๐
๐
๐ฐ๐ท๐ป๐ฐ");
677 }
678
679 #[test]
680 fn test_display_name_equality_big_unicode() {
681 assert_display_name_eq!("Sahasrahla", "๏ผณ๏ฝ๏ฝ๏ฝ๏ฝ๏ฝ๏ฝ๏ฝ๏ฝ๏ฝ");
683 }
684
685 #[test]
686 fn test_display_name_equality_left_to_right() {
687 assert_display_name_eq!("Sahasrahla", "\u{202e}alharsahas");
689 }
690
691 #[test]
692 fn test_display_name_equality_diacritical() {
693 assert_display_name_eq!("Sahasrahla", "Saฬดhasrahla");
695 }
696
697 #[test]
698 fn test_display_name_equality_zero_width_joiner() {
699 assert_display_name_eq!("Sahasrahla", "Sahas\u{200B}rahla");
701 }
702
703 #[test]
704 fn test_display_name_equality_zero_width_space() {
705 assert_display_name_eq!("Sahasrahla", "Sahas\u{200D}rahla");
707 }
708
709 #[test]
710 fn test_display_name_equality_ligatures() {
711 assert_display_name_eq!("ff", "\u{FB00}");
713 }
714
715 #[test]
716 fn test_display_name_confusable_mxid_colon() {
717 assert_display_name_eq!("@mxid:domain.tld", "@mxid\u{0589}domain.tld");
718 assert_display_name_eq!("@mxid:domain.tld", "@mxid\u{05c3}domain.tld");
719 assert_display_name_eq!("@mxid:domain.tld", "@mxid\u{0703}domain.tld");
720 assert_display_name_eq!("@mxid:domain.tld", "@mxid\u{0a83}domain.tld");
721 assert_display_name_eq!("@mxid:domain.tld", "@mxid\u{16ec}domain.tld");
722 assert_display_name_eq!("@mxid:domain.tld", "@mxid\u{205a}domain.tld");
723 assert_display_name_eq!("@mxid:domain.tld", "@mxid\u{2236}domain.tld");
724 assert_display_name_eq!("@mxid:domain.tld", "@mxid\u{fe13}domain.tld");
725 assert_display_name_eq!("@mxid:domain.tld", "@mxid\u{fe52}domain.tld");
726 assert_display_name_eq!("@mxid:domain.tld", "@mxid\u{fe30}domain.tld");
727 assert_display_name_eq!("@mxid:domain.tld", "@mxid\u{ff1a}domain.tld");
728
729 assert_ambiguous!("@mxid\u{0589}domain.tld");
731 assert_ambiguous!("@mxid\u{05c3}domain.tld");
732 assert_ambiguous!("@mxid\u{0703}domain.tld");
733 assert_ambiguous!("@mxid\u{0a83}domain.tld");
734 assert_ambiguous!("@mxid\u{16ec}domain.tld");
735 assert_ambiguous!("@mxid\u{205a}domain.tld");
736 assert_ambiguous!("@mxid\u{2236}domain.tld");
737 assert_ambiguous!("@mxid\u{fe13}domain.tld");
738 assert_ambiguous!("@mxid\u{fe52}domain.tld");
739 assert_ambiguous!("@mxid\u{fe30}domain.tld");
740 assert_ambiguous!("@mxid\u{ff1a}domain.tld");
741 }
742
743 #[test]
744 fn test_display_name_confusable_mxid_dot() {
745 assert_display_name_eq!("@mxid:domain.tld", "@mxid:domain\u{0701}tld");
746 assert_display_name_eq!("@mxid:domain.tld", "@mxid:domain\u{0702}tld");
747 assert_display_name_eq!("@mxid:domain.tld", "@mxid:domain\u{2024}tld");
748 assert_display_name_eq!("@mxid:domain.tld", "@mxid:domain\u{fe52}tld");
749 assert_display_name_eq!("@mxid:domain.tld", "@mxid:domain\u{ff0e}tld");
750 assert_display_name_eq!("@mxid:domain.tld", "@mxid:domain\u{1d16d}tld");
751
752 assert_ambiguous!("@mxid:domain\u{0701}tld");
754 assert_ambiguous!("@mxid:domain\u{0702}tld");
755 assert_ambiguous!("@mxid:domain\u{2024}tld");
756 assert_ambiguous!("@mxid:domain\u{fe52}tld");
757 assert_ambiguous!("@mxid:domain\u{ff0e}tld");
758 assert_ambiguous!("@mxid:domain\u{1d16d}tld");
759 }
760
761 #[test]
762 fn test_display_name_confusable_mxid_replacing_a() {
763 assert_display_name_eq!("@mxid:domain.tld", "@mxid:dom\u{1d44e}in.tld");
764 assert_display_name_eq!("@mxid:domain.tld", "@mxid:dom\u{0430}in.tld");
765
766 assert_ambiguous!("@mxid:dom\u{1d44e}in.tld");
768 assert_ambiguous!("@mxid:dom\u{0430}in.tld");
769 }
770
771 #[test]
772 fn test_display_name_confusable_mxid_replacing_l() {
773 assert_display_name_eq!("@mxid:domain.tld", "@mxid:domain.tId");
774 assert_display_name_eq!("mxid:domain.tld", "mxid:domain.t\u{217c}d");
775 assert_display_name_eq!("mxid:domain.tld", "mxid:domain.t\u{ff4c}d");
776 assert_display_name_eq!("mxid:domain.tld", "mxid:domain.t\u{1d5f9}d");
777 assert_display_name_eq!("mxid:domain.tld", "mxid:domain.t\u{1d695}d");
778 assert_display_name_eq!("mxid:domain.tld", "mxid:domain.t\u{2223}d");
779
780 assert_ambiguous!("@mxid:domain.tId");
782 assert_ambiguous!("@mxid:domain.t\u{217c}d");
783 assert_ambiguous!("@mxid:domain.t\u{ff4c}d");
784 assert_ambiguous!("@mxid:domain.t\u{1d5f9}d");
785 assert_ambiguous!("@mxid:domain.t\u{1d695}d");
786 assert_ambiguous!("@mxid:domain.t\u{2223}d");
787 }
788}