2024-04-06 18:04:14 +02:00
|
|
|
crate::strenum! {
|
2024-03-19 05:15:41 +01:00
|
|
|
pub enum LinkType {
|
|
|
|
Link,
|
2024-03-19 22:47:52 +01:00
|
|
|
Mention;
|
|
|
|
};
|
2024-03-19 05:15:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Link : super::Base {
|
2024-03-19 01:00:44 +01:00
|
|
|
fn href(&self) -> &str;
|
|
|
|
fn rel(&self) -> Option<&str> { None }
|
2024-03-21 00:04:01 +01:00
|
|
|
fn link_media_type(&self) -> Option<&str> { None } // also in obj
|
|
|
|
fn link_name(&self) -> Option<&str> { None } // also in obj
|
2024-03-19 01:00:44 +01:00
|
|
|
fn hreflang(&self) -> Option<&str> { None }
|
2024-03-21 00:04:01 +01:00
|
|
|
fn height(&self) -> Option<u64> { None }
|
|
|
|
fn width(&self) -> Option<u64> { None }
|
|
|
|
fn link_preview(&self) -> Option<&str> { None } // also in obj
|
2024-03-19 01:00:44 +01:00
|
|
|
}
|
|
|
|
|
2024-03-20 05:44:10 +01:00
|
|
|
pub trait LinkMut : super::BaseMut {
|
2024-03-21 00:04:01 +01:00
|
|
|
fn set_href(self, href: &str) -> Self;
|
|
|
|
fn set_rel(self, val: Option<&str>) -> Self;
|
|
|
|
fn set_link_media_type(self, val: Option<&str>) -> Self; // also in obj
|
|
|
|
fn set_link_name(self, val: Option<&str>) -> Self; // also in obj
|
|
|
|
fn set_hreflang(self, val: Option<&str>) -> Self;
|
|
|
|
fn set_height(self, val: Option<u64>) -> Self;
|
|
|
|
fn set_width(self, val: Option<u64>) -> Self;
|
|
|
|
fn set_link_preview(self, val: Option<&str>) -> Self; // also in obj
|
2024-03-20 05:44:10 +01:00
|
|
|
}
|
|
|
|
|
2024-03-19 01:00:44 +01:00
|
|
|
impl Link for String {
|
|
|
|
fn href(&self) -> &str {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-06 18:04:14 +02:00
|
|
|
#[cfg(feature = "unstructured")]
|
2024-03-19 01:00:44 +01:00
|
|
|
impl Link for serde_json::Value {
|
2024-03-21 00:04:01 +01:00
|
|
|
// TODO this can fail, but it should never do!
|
2024-03-19 01:00:44 +01:00
|
|
|
fn href(&self) -> &str {
|
|
|
|
match self {
|
|
|
|
serde_json::Value::String(x) => x,
|
|
|
|
serde_json::Value::Object(map) =>
|
|
|
|
map.get("href")
|
2024-03-21 00:04:01 +01:00
|
|
|
.map(|h| h.as_str().unwrap_or(""))
|
|
|
|
.unwrap_or(""),
|
|
|
|
_ => {
|
|
|
|
tracing::error!("failed getting href on invalid json Link object");
|
|
|
|
""
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2024-03-19 01:00:44 +01:00
|
|
|
|
2024-04-06 18:04:14 +02:00
|
|
|
crate::getter! { rel -> &str }
|
|
|
|
crate::getter! { link_media_type::mediaType -> &str }
|
|
|
|
crate::getter! { link_name::name -> &str }
|
|
|
|
crate::getter! { hreflang -> &str }
|
|
|
|
crate::getter! { height -> u64 }
|
|
|
|
crate::getter! { width -> u64 }
|
|
|
|
crate::getter! { link_preview::preview -> &str }
|
2024-03-21 00:04:01 +01:00
|
|
|
}
|
|
|
|
|
2024-04-06 18:04:14 +02:00
|
|
|
#[cfg(feature = "unstructured")]
|
2024-03-21 00:04:01 +01:00
|
|
|
impl LinkMut for serde_json::Value {
|
|
|
|
// TODO this can fail, but it should never do!
|
|
|
|
fn set_href(mut self, href: &str) -> Self {
|
|
|
|
match &mut self {
|
|
|
|
serde_json::Value::String(x) => *x = href.to_string(),
|
|
|
|
serde_json::Value::Object(map) => {
|
|
|
|
map.insert(
|
|
|
|
"href".to_string(),
|
|
|
|
serde_json::Value::String(href.to_string())
|
|
|
|
);
|
|
|
|
},
|
|
|
|
_ => tracing::error!("failed setting href on invalid json Link object"),
|
2024-03-19 01:00:44 +01:00
|
|
|
}
|
2024-03-21 00:04:01 +01:00
|
|
|
self
|
2024-03-19 01:00:44 +01:00
|
|
|
}
|
|
|
|
|
2024-04-06 18:04:14 +02:00
|
|
|
crate::setter! { rel -> &str }
|
|
|
|
crate::setter! { link_media_type::mediaType -> &str }
|
|
|
|
crate::setter! { link_name::name -> &str }
|
|
|
|
crate::setter! { hreflang -> &str }
|
|
|
|
crate::setter! { height -> u64 }
|
|
|
|
crate::setter! { width -> u64 }
|
|
|
|
crate::setter! { link_preview::preview -> &str }
|
2024-03-19 01:00:44 +01:00
|
|
|
}
|