//! Matrix user identifiers. use std::{rc::Rc, sync::Arc}; use super::{matrix_uri::UriAction, IdParseError, MatrixToUri, MatrixUri, ServerName}; /// A Matrix [user ID]. /// /// A `UserId` is generated randomly or converted from a string slice, and can be converted back /// into a string as needed. /// /// ``` /// # use ruma_common::UserId; /// assert_eq!(<&UserId>::try_from("@carl:example.com").unwrap(), "@carl:example.com"); /// ``` /// /// [user ID]: https://spec.matrix.org/latest/appendices/#user-identifiers #[repr(transparent)] #[derive(PartialEq, Eq, PartialOrd, Ord, Hash, IdZst)] #[ruma_id(validate = ruma_identifiers_validation::user_id::validate)] pub struct UserId(str); impl UserId { /// Attempts to generate a `UserId` for the given origin server with a localpart consisting of /// 12 random ASCII characters. #[cfg(feature = "rand")] #[allow(clippy::new_ret_no_self)] pub fn new(server_name: &ServerName) -> OwnedUserId { Self::from_borrowed(&format!( "@{}:{}", super::generate_localpart(12).to_lowercase(), server_name )) .to_owned() } /// Attempts to complete a user ID, by adding the colon + server name and `@` prefix, if not /// present already. /// /// This is a convenience function for the login API, where a user can supply either their full /// user ID or just the localpart. It only supports a valid user ID or a valid user ID /// localpart, not the localpart plus the `@` prefix, or the localpart plus server name without /// the `@` prefix. pub fn parse_with_server_name( id: impl AsRef + Into>, server_name: &ServerName, ) -> Result { let id_str = id.as_ref(); if id_str.starts_with('@') { Self::parse(id).map(Into::into) } else { let _ = localpart_is_fully_conforming(id_str)?; Ok(Self::from_borrowed(&format!("@{id_str}:{server_name}")).to_owned()) } } /// Variation of [`parse_with_server_name`] that returns `Rc`. /// /// [`parse_with_server_name`]: Self::parse_with_server_name pub fn parse_with_server_name_rc( id: impl AsRef + Into>, server_name: &ServerName, ) -> Result, IdParseError> { let id_str = id.as_ref(); if id_str.starts_with('@') { Self::parse_rc(id) } else { let _ = localpart_is_fully_conforming(id_str)?; Ok(Self::from_rc(format!("@{id_str}:{server_name}").into())) } } /// Variation of [`parse_with_server_name`] that returns `Arc`. /// /// [`parse_with_server_name`]: Self::parse_with_server_name pub fn parse_with_server_name_arc( id: impl AsRef + Into>, server_name: &ServerName, ) -> Result, IdParseError> { let id_str = id.as_ref(); if id_str.starts_with('@') { Self::parse_arc(id) } else { let _ = localpart_is_fully_conforming(id_str)?; Ok(Self::from_arc(format!("@{id_str}:{server_name}").into())) } } /// Returns the user's localpart. pub fn localpart(&self) -> &str { &self.as_str()[1..self.colon_idx()] } /// Returns the server name of the user ID. pub fn server_name(&self) -> &ServerName { ServerName::from_borrowed(&self.as_str()[self.colon_idx() + 1..]) } /// Whether this user ID is a historical one. /// /// A historical user ID is one that doesn't conform to the latest specification of the user ID /// grammar but is still accepted because it was previously allowed. pub fn is_historical(&self) -> bool { !localpart_is_fully_conforming(self.localpart()).unwrap() } /// Create a `matrix.to` URI for this user ID. /// /// # Example /// /// ``` /// use ruma_common::user_id; /// /// let message = format!( /// r#"Thanks for the update {display_name}."#, /// link = user_id!("@jplatte:notareal.hs").matrix_to_uri(), /// display_name = "jplatte", /// ); /// ``` pub fn matrix_to_uri(&self) -> MatrixToUri { MatrixToUri::new(self.into(), Vec::new()) } /// Create a `matrix:` URI for this user ID. /// /// If `chat` is `true`, a click on the URI should start a direct message /// with the user. /// /// # Example /// /// ``` /// use ruma_common::user_id; /// /// let message = format!( /// r#"Thanks for the update {display_name}."#, /// link = user_id!("@jplatte:notareal.hs").matrix_uri(false), /// display_name = "jplatte", /// ); /// ``` pub fn matrix_uri(&self, chat: bool) -> MatrixUri { MatrixUri::new(self.into(), Vec::new(), Some(UriAction::Chat).filter(|_| chat)) } fn colon_idx(&self) -> usize { self.as_str().find(':').unwrap() } } pub use ruma_identifiers_validation::user_id::localpart_is_fully_conforming; use ruma_macros::IdZst; #[cfg(test)] mod tests { use super::{OwnedUserId, UserId}; use crate::{server_name, IdParseError}; #[test] fn valid_user_id_from_str() { let user_id = <&UserId>::try_from("@carl:example.com").expect("Failed to create UserId."); assert_eq!(user_id.as_str(), "@carl:example.com"); assert_eq!(user_id.localpart(), "carl"); assert_eq!(user_id.server_name(), "example.com"); assert!(!user_id.is_historical()); } #[test] fn parse_valid_user_id() { let server_name = server_name!("example.com"); let user_id = UserId::parse_with_server_name("@carl:example.com", server_name) .expect("Failed to create UserId."); assert_eq!(user_id.as_str(), "@carl:example.com"); assert_eq!(user_id.localpart(), "carl"); assert_eq!(user_id.server_name(), "example.com"); assert!(!user_id.is_historical()); } #[test] fn parse_valid_user_id_parts() { let server_name = server_name!("example.com"); let user_id = UserId::parse_with_server_name("carl", server_name).expect("Failed to create UserId."); assert_eq!(user_id.as_str(), "@carl:example.com"); assert_eq!(user_id.localpart(), "carl"); assert_eq!(user_id.server_name(), "example.com"); assert!(!user_id.is_historical()); } #[cfg(not(feature = "compat-user-id"))] #[test] fn invalid_user_id() { let localpart = "τ"; let user_id = "@τ:example.com"; let server_name = server_name!("example.com"); <&UserId>::try_from(user_id).unwrap_err(); UserId::parse_with_server_name(user_id, server_name).unwrap_err(); UserId::parse_with_server_name(localpart, server_name).unwrap_err(); UserId::parse_with_server_name_rc(user_id, server_name).unwrap_err(); UserId::parse_with_server_name_rc(localpart, server_name).unwrap_err(); UserId::parse_with_server_name_arc(user_id, server_name).unwrap_err(); UserId::parse_with_server_name_arc(localpart, server_name).unwrap_err(); UserId::parse_rc(user_id).unwrap_err(); UserId::parse_arc(user_id).unwrap_err(); } #[test] fn definitely_invalid_user_id() { UserId::parse_with_server_name("a:b", server_name!("example.com")).unwrap_err(); } #[test] fn valid_historical_user_id() { let user_id = <&UserId>::try_from("@a%b[irc]:example.com").expect("Failed to create UserId."); assert_eq!(user_id.as_str(), "@a%b[irc]:example.com"); assert_eq!(user_id.localpart(), "a%b[irc]"); assert_eq!(user_id.server_name(), "example.com"); assert!(user_id.is_historical()); } #[test] fn parse_valid_historical_user_id() { let server_name = server_name!("example.com"); let user_id = UserId::parse_with_server_name("@a%b[irc]:example.com", server_name) .expect("Failed to create UserId."); assert_eq!(user_id.as_str(), "@a%b[irc]:example.com"); assert_eq!(user_id.localpart(), "a%b[irc]"); assert_eq!(user_id.server_name(), "example.com"); assert!(user_id.is_historical()); } #[test] fn parse_valid_historical_user_id_parts() { let server_name = server_name!("example.com"); let user_id = UserId::parse_with_server_name("a%b[irc]", server_name) .expect("Failed to create UserId."); assert_eq!(user_id.as_str(), "@a%b[irc]:example.com"); assert_eq!(user_id.localpart(), "a%b[irc]"); assert_eq!(user_id.server_name(), "example.com"); assert!(user_id.is_historical()); } #[test] fn uppercase_user_id() { let user_id = <&UserId>::try_from("@CARL:example.com").expect("Failed to create UserId."); assert_eq!(user_id.as_str(), "@CARL:example.com"); assert!(user_id.is_historical()); } #[cfg(feature = "rand")] #[test] fn generate_random_valid_user_id() { let server_name = server_name!("example.com"); let user_id = UserId::new(server_name); assert_eq!(user_id.localpart().len(), 12); assert_eq!(user_id.server_name(), "example.com"); let id_str = user_id.as_str(); assert!(id_str.starts_with('@')); assert_eq!(id_str.len(), 25); } #[test] fn serialize_valid_user_id() { assert_eq!( serde_json::to_string( <&UserId>::try_from("@carl:example.com").expect("Failed to create UserId.") ) .expect("Failed to convert UserId to JSON."), r#""@carl:example.com""# ); } #[test] fn deserialize_valid_user_id() { assert_eq!( serde_json::from_str::(r#""@carl:example.com""#) .expect("Failed to convert JSON to UserId"), <&UserId>::try_from("@carl:example.com").expect("Failed to create UserId.") ); } #[test] fn valid_user_id_with_explicit_standard_port() { assert_eq!( <&UserId>::try_from("@carl:example.com:443") .expect("Failed to create UserId.") .as_str(), "@carl:example.com:443" ); } #[test] fn valid_user_id_with_non_standard_port() { let user_id = <&UserId>::try_from("@carl:example.com:5000").expect("Failed to create UserId."); assert_eq!(user_id.as_str(), "@carl:example.com:5000"); assert!(!user_id.is_historical()); } #[test] #[cfg(not(feature = "compat-user-id"))] fn invalid_characters_in_user_id_localpart() { assert_eq!( <&UserId>::try_from("@te\nst:example.com").unwrap_err(), IdParseError::InvalidCharacters ); } #[test] fn missing_user_id_sigil() { assert_eq!( <&UserId>::try_from("carl:example.com").unwrap_err(), IdParseError::MissingLeadingSigil ); } #[test] fn missing_user_id_delimiter() { assert_eq!(<&UserId>::try_from("@carl").unwrap_err(), IdParseError::MissingColon); } #[test] fn invalid_user_id_host() { assert_eq!(<&UserId>::try_from("@carl:/").unwrap_err(), IdParseError::InvalidServerName); } #[test] fn invalid_user_id_port() { assert_eq!( <&UserId>::try_from("@carl:example.com:notaport").unwrap_err(), IdParseError::InvalidServerName ); } }