upub/src/activitystream/node.rs

174 lines
3.5 KiB
Rust
Raw Normal View History

2024-03-19 06:49:02 +01:00
use super::Object;
pub enum Node<T> {
Array(Vec<Node<T>>),
Object(T),
Link(Box<dyn super::Link>),
Empty,
}
impl<T> From<Option<T>> for Node<T> {
fn from(value: Option<T>) -> Self {
match value {
Some(x) => Node::Object(x),
None => Node::Empty,
}
}
}
impl<T> Node<T> {
pub fn get(&self) -> Option<&T> {
match self {
Node::Empty | Node::Link(_) => None,
Node::Object(x) => Some(x),
2024-03-19 06:49:02 +01:00
Node::Array(v) => match v.iter().find_map(|x| match x {
Node::Object(x) => Some(x),
_ => None,
}) {
Some(x) => Some(x),
None => None,
},
}
}
pub fn all(&self) -> Option<Vec<&T>> {
match self {
Node::Empty | Node::Link(_) => None,
Node::Object(x) => Some(vec![x]),
Node::Array(v) =>
2024-03-19 06:49:02 +01:00
Some(v.iter().filter_map(|x| match x {
Node::Object(x) => Some(x),
_ => None,
}).collect()),
}
}
pub fn is_empty(&self) -> bool {
match self {
Node::Empty | Node::Link(_) => true,
Node::Object(_) | Node::Array(_) => false,
}
}
pub fn len(&self) -> usize {
match self {
Node::Empty => 0,
Node::Link(_) => 0,
Node::Object(_) => 1,
Node::Array(v) => v.len(),
}
}
}
2024-03-19 06:49:02 +01:00
impl<T> Node<T>
where
T : Object
{
pub fn id(&self) -> Option<&str> {
match self {
Node::Empty => None,
Node::Link(uri) => Some(uri.href()),
Node::Object(obj) => obj.id(),
Node::Array(arr) => arr.first()?.id(),
}
}
}
impl From<Option<&str>> for Node<serde_json::Value> {
fn from(value: Option<&str>) -> Self {
match value {
Some(x) => Node::Link(Box::new(x.to_string())),
None => Node::Empty,
}
}
}
impl From<&str> for Node<serde_json::Value> {
fn from(value: &str) -> Self {
Node::Link(Box::new(value.to_string()))
}
}
impl From<serde_json::Value> for Node<serde_json::Value> {
fn from(value: serde_json::Value) -> Self {
match value {
serde_json::Value::String(uri) => Node::Link(Box::new(uri)),
serde_json::Value::Object(_) => match value.get("href") {
Some(_) => Node::Object(value),
None => Node::Link(Box::new(value)),
},
serde_json::Value::Array(arr) => Node::Array(
arr
.into_iter()
2024-03-19 06:49:02 +01:00
.map(Self::from)
.collect()
),
_ => Node::Empty,
}
}
}
impl Node<serde_json::Value>{
pub async fn fetch(&mut self) -> reqwest::Result<()> {
if let Node::Link(link) = self {
*self = reqwest::get(link.href())
.await?
.json::<serde_json::Value>()
.await?
.into();
}
Ok(())
}
}
2024-03-19 06:49:02 +01:00
pub(crate) trait NodeExtractor {
fn node(&self, id: &str) -> Node<serde_json::Value>;
fn node_vec(&self, id: &str) -> Node<serde_json::Value>;
}
impl NodeExtractor for serde_json::Value {
fn node(&self, id: &str) -> Node<serde_json::Value> {
match self.get(id) {
None => Node::Empty,
2024-03-19 06:49:02 +01:00
Some(x) => Node::from(x.clone()),
}
}
fn node_vec(&self, id: &str) -> Node<serde_json::Value> {
match self.get(id) {
None => Node::Empty,
2024-03-19 06:49:02 +01:00
Some(x) => Node::from(x.clone()),
}
}
}
pub(crate) trait InsertStr {
fn insert_str(&mut self, k: &str, v: Option<&str>);
fn insert_timestr(&mut self, k: &str, t: Option<chrono::DateTime<chrono::Utc>>);
}
impl InsertStr for serde_json::Map<String, serde_json::Value> {
fn insert_str(&mut self, k: &str, v: Option<&str>) {
if let Some(v) = v {
self.insert(
k.to_string(),
serde_json::Value::String(v.to_string()),
);
}
}
fn insert_timestr(&mut self, k: &str, t: Option<chrono::DateTime<chrono::Utc>>) {
if let Some(published) = t {
self.insert(
2024-03-19 06:49:02 +01:00
k.to_string(),
serde_json::Value::String(published.to_rfc3339()),
);
}
}
}