2024-03-21 02:11:31 +01:00
|
|
|
// TODO technically this is not part of ActivityStreams
|
|
|
|
|
|
|
|
pub trait PublicKey : super::Base {
|
|
|
|
fn owner(&self) -> Option<&str> { None }
|
|
|
|
fn public_key_pem(&self) -> &str;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait PublicKeyMut : super::BaseMut {
|
|
|
|
fn set_owner(self, val: Option<&str>) -> Self;
|
|
|
|
fn set_public_key_pem(self, val: &str) -> Self;
|
|
|
|
}
|
|
|
|
|
2024-04-06 18:04:14 +02:00
|
|
|
#[cfg(feature = "unstructured")]
|
2024-03-21 02:11:31 +01:00
|
|
|
impl PublicKey for serde_json::Value {
|
2024-04-06 18:04:14 +02:00
|
|
|
crate::getter! { owner -> &str }
|
2024-03-21 02:11:31 +01:00
|
|
|
|
|
|
|
fn public_key_pem(&self) -> &str {
|
|
|
|
self.get("publicKeyPem").unwrap().as_str().unwrap()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-06 18:04:14 +02:00
|
|
|
#[cfg(feature = "unstructured")]
|
2024-03-21 02:11:31 +01:00
|
|
|
impl PublicKeyMut for serde_json::Value {
|
2024-04-06 18:04:14 +02:00
|
|
|
crate::setter! { owner -> &str }
|
2024-03-21 02:11:31 +01:00
|
|
|
|
|
|
|
fn set_public_key_pem(mut self, val: &str) -> Self {
|
|
|
|
self.as_object_mut().unwrap().insert(
|
|
|
|
"publicKeyPem".to_string(),
|
|
|
|
serde_json::Value::String(val.to_string()),
|
|
|
|
);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|