1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
use ruma_macros::IdZst;
use super::{
Base64PublicKey, DeviceId, IdParseError, KeyName, OwnedBase64PublicKey, OwnedDeviceId,
};
/// A Matrix ID that can be either a [`DeviceId`] or a [`Base64PublicKey`].
///
/// Device identifiers in Matrix are completely opaque character sequences and cross-signing keys
/// are identified by their base64-encoded public key. This type is provided simply for its semantic
/// value.
///
/// It is not recommended to construct this type directly, it should instead be converted from a
/// [`DeviceId`] or a [`Base64PublicKey`].
///
/// # Example
///
/// ```
/// use ruma_common::{Base64PublicKeyOrDeviceId, OwnedBase64PublicKeyOrDeviceId};
///
/// let ref_id: &Base64PublicKeyOrDeviceId = "abcdefghi".into();
/// assert_eq!(ref_id.as_str(), "abcdefghi");
///
/// let owned_id: OwnedBase64PublicKeyOrDeviceId = "ijklmnop".into();
/// assert_eq!(owned_id.as_str(), "ijklmnop");
/// ```
#[repr(transparent)]
#[derive(PartialEq, Eq, PartialOrd, Ord, Hash, IdZst)]
pub struct Base64PublicKeyOrDeviceId(str);
impl KeyName for Base64PublicKeyOrDeviceId {
fn validate(_s: &str) -> Result<(), IdParseError> {
Ok(())
}
}
impl KeyName for OwnedBase64PublicKeyOrDeviceId {
fn validate(_s: &str) -> Result<(), IdParseError> {
Ok(())
}
}
impl<'a> From<&'a DeviceId> for &'a Base64PublicKeyOrDeviceId {
fn from(value: &'a DeviceId) -> Self {
Self::from(value.as_str())
}
}
impl From<OwnedDeviceId> for OwnedBase64PublicKeyOrDeviceId {
fn from(value: OwnedDeviceId) -> Self {
Self::from(value.as_str())
}
}
impl<'a> From<&'a Base64PublicKey> for &'a Base64PublicKeyOrDeviceId {
fn from(value: &'a Base64PublicKey) -> Self {
Self::from(value.as_str())
}
}
impl From<OwnedBase64PublicKey> for OwnedBase64PublicKeyOrDeviceId {
fn from(value: OwnedBase64PublicKey) -> Self {
Self::from(value.as_str())
}
}