2021-09-25 15:44:52 +00:00
|
|
|
use crate::objects::{comment::Note, post::Page, FromApub};
|
|
|
|
use activitystreams::chrono::NaiveDateTime;
|
2021-10-06 20:20:05 +00:00
|
|
|
use diesel::PgConnection;
|
|
|
|
use lemmy_apub_lib::traits::ApubObject;
|
|
|
|
use lemmy_db_schema::source::{
|
|
|
|
comment::{Comment, CommentForm},
|
|
|
|
post::{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 {
|
|
|
|
Comment(Box<Comment>),
|
|
|
|
Post(Box<Post>),
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum PostOrCommentForm {
|
|
|
|
PostForm(PostForm),
|
|
|
|
CommentForm(CommentForm),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub enum PageOrNote {
|
|
|
|
Page(Page),
|
|
|
|
Note(Note),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl ApubObject for PostOrComment {
|
2021-10-06 20:20:05 +00:00
|
|
|
type DataType = PgConnection;
|
|
|
|
|
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-06 20:20:05 +00:00
|
|
|
fn read_from_apub_id(conn: &PgConnection, object_id: Url) -> Result<Option<Self>, LemmyError>
|
2021-09-25 15:44:52 +00:00
|
|
|
where
|
|
|
|
Self: Sized,
|
|
|
|
{
|
2021-10-06 20:20:05 +00:00
|
|
|
let post = Post::read_from_apub_id(conn, object_id.clone())?;
|
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))),
|
|
|
|
None => {
|
|
|
|
Comment::read_from_apub_id(conn, object_id)?.map(|c| PostOrComment::Comment(Box::new(c)))
|
|
|
|
}
|
2021-09-25 15:44:52 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl FromApub for PostOrComment {
|
|
|
|
type ApubType = PageOrNote;
|
|
|
|
|
|
|
|
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(
|
|
|
|
Post::from_apub(p, context, expected_domain, request_counter).await?,
|
|
|
|
)),
|
|
|
|
PageOrNote::Note(n) => PostOrComment::Comment(Box::new(
|
|
|
|
Comment::from_apub(n, context, expected_domain, request_counter).await?,
|
|
|
|
)),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
}
|