2024-03-16 05:45:58 +01:00
|
|
|
use sea_orm::entity::prelude::*;
|
|
|
|
|
2024-03-19 06:49:21 +01:00
|
|
|
use crate::activitystream::{node::InsertStr, object::{Actor, Object, ObjectType}, Base, BaseType, Node};
|
2024-03-16 05:45:58 +01:00
|
|
|
|
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq)]
|
|
|
|
#[sea_orm(table_name = "objects")]
|
|
|
|
pub struct Model {
|
|
|
|
#[sea_orm(primary_key)]
|
|
|
|
/// must be full uri!!! maybe not great?
|
|
|
|
pub id: String,
|
2024-03-19 06:49:21 +01:00
|
|
|
pub object_type: ObjectType,
|
2024-03-16 05:45:58 +01:00
|
|
|
pub attributed_to: Option<String>,
|
|
|
|
pub name: Option<String>,
|
|
|
|
pub summary: Option<String>,
|
|
|
|
pub content: Option<String>,
|
|
|
|
pub published: ChronoDateTimeUtc,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
|
|
pub enum Relation {}
|
|
|
|
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|
|
|
|
|
2024-03-19 06:49:21 +01:00
|
|
|
impl Base for Model {
|
2024-03-16 05:45:58 +01:00
|
|
|
fn id(&self) -> Option<&str> {
|
|
|
|
Some(&self.id)
|
|
|
|
}
|
|
|
|
|
2024-03-19 06:49:21 +01:00
|
|
|
fn base_type(&self) -> Option<BaseType> {
|
|
|
|
Some(BaseType::Object(self.object_type))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Object for Model {
|
|
|
|
fn object_type(&self) -> Option<ObjectType> {
|
|
|
|
Some(self.object_type)
|
2024-03-16 05:45:58 +01:00
|
|
|
}
|
|
|
|
|
2024-03-19 06:49:21 +01:00
|
|
|
fn attributed_to(&self) -> Node<impl Actor> {
|
|
|
|
Node::<serde_json::Value>::from(self.attributed_to.as_deref())
|
2024-03-16 05:45:58 +01:00
|
|
|
}
|
|
|
|
|
2024-03-19 06:49:21 +01:00
|
|
|
fn name(&self) -> Option<&str> {
|
2024-03-16 05:45:58 +01:00
|
|
|
self.name.as_deref()
|
|
|
|
}
|
|
|
|
|
2024-03-19 06:49:21 +01:00
|
|
|
fn summary(&self) -> Option<&str> {
|
2024-03-16 05:45:58 +01:00
|
|
|
self.summary.as_deref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn content(&self) -> Option<&str> {
|
|
|
|
self.content.as_deref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn published (&self) -> Option<chrono::DateTime<chrono::Utc>> {
|
|
|
|
Some(self.published)
|
|
|
|
}
|
|
|
|
}
|
2024-03-16 20:09:06 +01:00
|
|
|
|
|
|
|
impl Model {
|
2024-03-19 01:00:44 +01:00
|
|
|
pub fn new(object: &impl Object) -> Result<Self, super::FieldError> {
|
2024-03-16 20:09:06 +01:00
|
|
|
Ok(Model {
|
|
|
|
id: object.id().ok_or(super::FieldError("id"))?.to_string(),
|
2024-03-19 06:49:21 +01:00
|
|
|
object_type: object.object_type().ok_or(super::FieldError("type"))?,
|
|
|
|
attributed_to: object.attributed_to().id().map(|x| x.to_string()),
|
2024-03-16 20:09:06 +01:00
|
|
|
name: object.name().map(|x| x.to_string()),
|
|
|
|
summary: object.summary().map(|x| x.to_string()),
|
|
|
|
content: object.content().map(|x| x.to_string()),
|
|
|
|
published: object.published().ok_or(super::FieldError("published"))?,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2024-03-19 06:49:21 +01:00
|
|
|
|
|
|
|
impl super::ToJson for Model {
|
|
|
|
fn json(&self) -> serde_json::Value {
|
|
|
|
let mut map = serde_json::Map::new();
|
|
|
|
map.insert_str("id", Some(&self.id));
|
|
|
|
map.insert_str("type", Some(self.object_type.as_ref()));
|
|
|
|
map.insert_str("attributedTo", self.attributed_to.as_deref());
|
|
|
|
map.insert_str("name", self.name.as_deref());
|
|
|
|
map.insert_str("summary", self.summary.as_deref());
|
|
|
|
map.insert_str("content", self.content.as_deref());
|
|
|
|
map.insert_timestr("published", Some(self.published));
|
|
|
|
serde_json::Value::Object(map)
|
|
|
|
}
|
|
|
|
}
|