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