2021-10-18 21:36:44 +00:00
|
|
|
use crate::objects::{
|
|
|
|
comment::{ApubComment, Note},
|
|
|
|
post::{ApubPost, Page},
|
2021-09-25 15:44:52 +00:00
|
|
|
};
|
2021-10-28 15:25:26 +00:00
|
|
|
use chrono::NaiveDateTime;
|
2021-10-27 16:03:07 +00:00
|
|
|
use lemmy_apub_lib::traits::ApubObject;
|
2021-10-18 21:36:44 +00:00
|
|
|
use lemmy_db_schema::source::{comment::CommentForm, post::PostForm};
|
2021-09-25 15:44:52 +00:00
|
|
|
use lemmy_utils::LemmyError;
|
|
|
|
use lemmy_websocket::LemmyContext;
|
|
|
|
use serde::Deserialize;
|
|
|
|
use url::Url;
|
|
|
|
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub enum PostOrComment {
|
2021-10-18 21:36:44 +00:00
|
|
|
Post(Box<ApubPost>),
|
|
|
|
Comment(ApubComment),
|
2021-09-25 15:44:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub enum PostOrCommentForm {
|
2021-10-12 16:46:26 +00:00
|
|
|
PostForm(Box<PostForm>),
|
2021-09-25 15:44:52 +00:00
|
|
|
CommentForm(CommentForm),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
2021-10-13 14:12:41 +00:00
|
|
|
#[serde(untagged)]
|
2021-09-25 15:44:52 +00:00
|
|
|
pub enum PageOrNote {
|
2021-10-12 16:46:26 +00:00
|
|
|
Page(Box<Page>),
|
|
|
|
Note(Box<Note>),
|
2021-09-25 15:44:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl ApubObject for PostOrComment {
|
2021-10-18 21:36:44 +00:00
|
|
|
type DataType = LemmyContext;
|
2021-10-27 16:03:07 +00:00
|
|
|
type ApubType = PageOrNote;
|
|
|
|
type TombstoneType = ();
|
2021-10-06 20:20:05 +00:00
|
|
|
|
2021-09-25 15:44:52 +00:00
|
|
|
fn last_refreshed_at(&self) -> Option<NaiveDateTime> {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: this can probably be implemented using a single sql query
|
2021-10-18 21:36:44 +00:00
|
|
|
async fn read_from_apub_id(
|
|
|
|
object_id: Url,
|
|
|
|
data: &Self::DataType,
|
|
|
|
) -> Result<Option<Self>, LemmyError>
|
2021-09-25 15:44:52 +00:00
|
|
|
where
|
|
|
|
Self: Sized,
|
|
|
|
{
|
2021-10-18 21:36:44 +00:00
|
|
|
let post = ApubPost::read_from_apub_id(object_id.clone(), data).await?;
|
2021-09-25 15:44:52 +00:00
|
|
|
Ok(match post {
|
2021-10-06 20:20:05 +00:00
|
|
|
Some(o) => Some(PostOrComment::Post(Box::new(o))),
|
2021-10-18 21:36:44 +00:00
|
|
|
None => ApubComment::read_from_apub_id(object_id, data)
|
|
|
|
.await?
|
|
|
|
.map(PostOrComment::Comment),
|
2021-09-25 15:44:52 +00:00
|
|
|
})
|
|
|
|
}
|
2021-10-16 11:14:02 +00:00
|
|
|
|
2021-10-18 21:36:44 +00:00
|
|
|
async fn delete(self, data: &Self::DataType) -> Result<(), LemmyError> {
|
2021-10-16 11:14:02 +00:00
|
|
|
match self {
|
2021-10-18 21:36:44 +00:00
|
|
|
PostOrComment::Post(p) => p.delete(data).await,
|
|
|
|
PostOrComment::Comment(c) => c.delete(data).await,
|
2021-10-16 11:14:02 +00:00
|
|
|
}
|
|
|
|
}
|
2021-09-25 15:44:52 +00:00
|
|
|
|
2021-10-27 16:03:07 +00:00
|
|
|
async fn to_apub(&self, _data: &Self::DataType) -> Result<Self::ApubType, LemmyError> {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn to_tombstone(&self) -> Result<Self::TombstoneType, LemmyError> {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
2021-09-25 15:44:52 +00:00
|
|
|
|
|
|
|
async fn from_apub(
|
|
|
|
apub: &PageOrNote,
|
|
|
|
context: &LemmyContext,
|
|
|
|
expected_domain: &Url,
|
|
|
|
request_counter: &mut i32,
|
|
|
|
) -> Result<Self, LemmyError>
|
|
|
|
where
|
|
|
|
Self: Sized,
|
|
|
|
{
|
|
|
|
Ok(match apub {
|
|
|
|
PageOrNote::Page(p) => PostOrComment::Post(Box::new(
|
2021-10-18 21:36:44 +00:00
|
|
|
ApubPost::from_apub(p, context, expected_domain, request_counter).await?,
|
2021-09-25 15:44:52 +00:00
|
|
|
)),
|
2021-10-12 16:46:26 +00:00
|
|
|
PageOrNote::Note(n) => PostOrComment::Comment(
|
2021-10-18 21:36:44 +00:00
|
|
|
ApubComment::from_apub(n, context, expected_domain, request_counter).await?,
|
2021-10-12 16:46:26 +00:00
|
|
|
),
|
2021-09-25 15:44:52 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PostOrComment {
|
|
|
|
pub(crate) fn ap_id(&self) -> Url {
|
|
|
|
match self {
|
|
|
|
PostOrComment::Post(p) => p.ap_id.clone(),
|
|
|
|
PostOrComment::Comment(c) => c.ap_id.clone(),
|
|
|
|
}
|
|
|
|
.into()
|
|
|
|
}
|
|
|
|
}
|