use std::num::NonZeroU8; use crate::{parse_id, Error}; pub fn validate(s: &str) -> Result<(NonZeroU8, bool), Error> { let colon_idx = parse_id(s, &['@'])?; let localpart = &s[1..colon_idx.get() as usize]; let is_historical = localpart_is_fully_comforming(localpart)?; Ok((colon_idx, is_historical)) } /// Check whether the given user id localpart is valid and fully conforming /// /// Returns an `Err` for invalid user ID localparts, `Ok(false)` for historical user ID localparts /// and `Ok(true)` for fully conforming user ID localparts. pub fn localpart_is_fully_comforming(localpart: &str) -> Result { // See https://matrix.org/docs/spec/appendices#user-identifiers let is_fully_conforming = localpart .bytes() .all(|b| matches!(b, b'0'..=b'9' | b'a'..=b'z' | b'-' | b'.' | b'=' | b'_' | b'/')); // If it's not fully conforming, check if it contains characters that are also disallowed // for historical user IDs. If there are, return an error. // See https://matrix.org/docs/spec/appendices#historical-user-ids if !is_fully_conforming && localpart.bytes().any(|b| b < 0x21 || b == b':' || b > 0x7E) { Err(Error::InvalidCharacters) } else { Ok(is_fully_conforming) } }