2024-03-16 03:27:36 +01:00
|
|
|
use sea_orm::entity::prelude::*;
|
|
|
|
|
2024-03-16 05:45:58 +01:00
|
|
|
use crate::activitystream::{self, types::ActorType};
|
|
|
|
|
2024-03-16 03:27:36 +01:00
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq)]
|
|
|
|
#[sea_orm(table_name = "users")]
|
|
|
|
pub struct Model {
|
|
|
|
#[sea_orm(primary_key)]
|
|
|
|
/// must be user@instance.org, even if local! TODO bad design...
|
|
|
|
pub id: String,
|
2024-03-16 05:45:58 +01:00
|
|
|
|
|
|
|
pub actor_type: ActorType,
|
|
|
|
|
|
|
|
pub name: String,
|
2024-03-16 03:27:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
|
|
pub enum Relation {}
|
|
|
|
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|
|
|
|
|
2024-03-16 05:45:58 +01:00
|
|
|
impl activitystream::Object for Model {
|
2024-03-16 03:27:36 +01:00
|
|
|
fn id(&self) -> Option<&str> {
|
|
|
|
Some(&self.id)
|
|
|
|
}
|
|
|
|
|
2024-03-19 01:00:44 +01:00
|
|
|
fn full_type(&self) -> Option<activitystream::BaseType> {
|
|
|
|
Some(activitystream::BaseType::Object(activitystream::ObjectType::Actor(self.actor_type)))
|
2024-03-16 05:45:58 +01:00
|
|
|
}
|
|
|
|
|
2024-03-16 03:27:36 +01:00
|
|
|
fn name (&self) -> Option<&str> {
|
2024-03-16 05:45:58 +01:00
|
|
|
Some(&self.name)
|
2024-03-16 03:27:36 +01:00
|
|
|
}
|
|
|
|
}
|
2024-03-16 20:09:06 +01:00
|
|
|
|
|
|
|
impl Model {
|
|
|
|
pub fn new(object: &impl activitystream::Object) -> Result<Self, super::FieldError> {
|
2024-03-19 01:00:44 +01:00
|
|
|
let Some(activitystream::BaseType::Object(activitystream::ObjectType::Actor(t))) = object.full_type() else {
|
2024-03-16 20:09:06 +01:00
|
|
|
return Err(super::FieldError("type")); // TODO maybe just wrong? better errors!
|
|
|
|
};
|
|
|
|
Ok(Model {
|
|
|
|
id: object.id().ok_or(super::FieldError("id"))?.to_string(),
|
|
|
|
actor_type: t,
|
|
|
|
name: object.name().ok_or(super::FieldError("name"))?.to_string(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|