2020-10-12 14:10:09 +00:00
|
|
|
use crate::{
|
2020-11-25 17:44:49 +00:00
|
|
|
extensions::context::lemmy_context,
|
2021-01-12 16:12:41 +00:00
|
|
|
fetcher::objects::{get_or_fetch_and_insert_comment, get_or_fetch_and_insert_post},
|
2020-11-24 17:53:43 +00:00
|
|
|
objects::{
|
|
|
|
check_object_domain,
|
2020-12-08 17:38:48 +00:00
|
|
|
check_object_for_community_or_site_ban,
|
2020-11-24 17:53:43 +00:00
|
|
|
create_tombstone,
|
2020-12-08 17:38:48 +00:00
|
|
|
get_object_from_apub,
|
2021-01-12 16:12:41 +00:00
|
|
|
get_or_fetch_and_upsert_user,
|
2020-11-24 17:53:43 +00:00
|
|
|
get_source_markdown_value,
|
|
|
|
set_content_and_source,
|
2020-12-08 17:38:48 +00:00
|
|
|
FromApub,
|
|
|
|
FromApubToForm,
|
|
|
|
ToApub,
|
2020-11-24 17:53:43 +00:00
|
|
|
},
|
|
|
|
NoteExt,
|
2020-10-12 14:10:09 +00:00
|
|
|
};
|
|
|
|
use activitystreams::{
|
2020-11-24 17:53:43 +00:00
|
|
|
object::{kind::NoteType, ApObject, Note, Tombstone},
|
2020-10-12 14:10:09 +00:00
|
|
|
prelude::*,
|
|
|
|
};
|
2020-12-08 17:38:48 +00:00
|
|
|
use anyhow::{anyhow, Context};
|
2020-12-21 23:27:42 +00:00
|
|
|
use lemmy_db_queries::{Crud, DbPool};
|
2020-12-18 17:27:25 +00:00
|
|
|
use lemmy_db_schema::source::{
|
|
|
|
comment::{Comment, CommentForm},
|
2020-12-21 12:28:12 +00:00
|
|
|
community::Community,
|
2020-12-18 17:27:25 +00:00
|
|
|
post::Post,
|
2020-12-18 18:38:32 +00:00
|
|
|
user::User_,
|
2020-10-12 14:10:09 +00:00
|
|
|
};
|
|
|
|
use lemmy_structs::blocking;
|
|
|
|
use lemmy_utils::{
|
|
|
|
location_info,
|
|
|
|
utils::{convert_datetime, remove_slurs},
|
|
|
|
LemmyError,
|
|
|
|
};
|
|
|
|
use lemmy_websocket::LemmyContext;
|
|
|
|
use url::Url;
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl ToApub for Comment {
|
2020-11-24 17:53:43 +00:00
|
|
|
type ApubType = NoteExt;
|
2020-10-12 14:10:09 +00:00
|
|
|
|
2020-11-24 17:53:43 +00:00
|
|
|
async fn to_apub(&self, pool: &DbPool) -> Result<NoteExt, LemmyError> {
|
|
|
|
let mut comment = ApObject::new(Note::new());
|
2020-10-12 14:10:09 +00:00
|
|
|
|
|
|
|
let creator_id = self.creator_id;
|
|
|
|
let creator = blocking(pool, move |conn| User_::read(conn, creator_id)).await??;
|
|
|
|
|
|
|
|
let post_id = self.post_id;
|
|
|
|
let post = blocking(pool, move |conn| Post::read(conn, post_id)).await??;
|
|
|
|
|
|
|
|
let community_id = post.community_id;
|
|
|
|
let community = blocking(pool, move |conn| Community::read(conn, community_id)).await??;
|
|
|
|
|
|
|
|
// Add a vector containing some important info to the "in_reply_to" field
|
|
|
|
// [post_ap_id, Option(parent_comment_ap_id)]
|
|
|
|
let mut in_reply_to_vec = vec![post.ap_id];
|
|
|
|
|
|
|
|
if let Some(parent_id) = self.parent_id {
|
|
|
|
let parent_comment = blocking(pool, move |conn| Comment::read(conn, parent_id)).await??;
|
|
|
|
|
|
|
|
in_reply_to_vec.push(parent_comment.ap_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
comment
|
|
|
|
// Not needed when the Post is embedded in a collection (like for community outbox)
|
2020-11-25 17:44:49 +00:00
|
|
|
.set_many_contexts(lemmy_context()?)
|
2020-10-12 14:10:09 +00:00
|
|
|
.set_id(Url::parse(&self.ap_id)?)
|
|
|
|
.set_published(convert_datetime(self.published))
|
|
|
|
.set_to(community.actor_id)
|
|
|
|
.set_many_in_reply_tos(in_reply_to_vec)
|
|
|
|
.set_attributed_to(creator.actor_id);
|
|
|
|
|
2020-11-24 17:53:43 +00:00
|
|
|
set_content_and_source(&mut comment, &self.content)?;
|
|
|
|
|
2020-10-12 14:10:09 +00:00
|
|
|
if let Some(u) = self.updated {
|
|
|
|
comment.set_updated(convert_datetime(u));
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(comment)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn to_tombstone(&self) -> Result<Tombstone, LemmyError> {
|
|
|
|
create_tombstone(self.deleted, &self.ap_id, self.updated, NoteType::Note)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-12-08 17:38:48 +00:00
|
|
|
impl FromApub for Comment {
|
2020-11-24 17:53:43 +00:00
|
|
|
type ApubType = NoteExt;
|
2020-10-12 14:10:09 +00:00
|
|
|
|
2020-12-08 17:38:48 +00:00
|
|
|
/// Converts a `Note` to `Comment`.
|
2020-10-19 14:29:35 +00:00
|
|
|
///
|
|
|
|
/// If the parent community, post and comment(s) are not known locally, these are also fetched.
|
2020-10-12 14:10:09 +00:00
|
|
|
async fn from_apub(
|
2020-11-24 17:53:43 +00:00
|
|
|
note: &NoteExt,
|
2020-10-12 14:10:09 +00:00
|
|
|
context: &LemmyContext,
|
2020-12-08 17:38:48 +00:00
|
|
|
expected_domain: Url,
|
|
|
|
request_counter: &mut i32,
|
|
|
|
) -> Result<Comment, LemmyError> {
|
|
|
|
check_object_for_community_or_site_ban(note, context, request_counter).await?;
|
|
|
|
|
|
|
|
let comment: Comment =
|
|
|
|
get_object_from_apub(note, context, expected_domain, request_counter).await?;
|
|
|
|
|
|
|
|
let post_id = comment.post_id;
|
|
|
|
let post = blocking(context.pool(), move |conn| Post::read(conn, post_id)).await??;
|
|
|
|
if post.locked {
|
|
|
|
// This is not very efficient because a comment gets inserted just to be deleted right
|
|
|
|
// afterwards, but it seems to be the easiest way to implement it.
|
|
|
|
blocking(context.pool(), move |conn| {
|
|
|
|
Comment::delete(conn, comment.id)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-12-21 04:00:33 +00:00
|
|
|
Err(anyhow!("Post is locked").into())
|
2020-12-08 17:38:48 +00:00
|
|
|
} else {
|
|
|
|
Ok(comment)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl FromApubToForm<NoteExt> for CommentForm {
|
|
|
|
async fn from_apub(
|
|
|
|
note: &NoteExt,
|
|
|
|
context: &LemmyContext,
|
|
|
|
expected_domain: Url,
|
2020-10-22 18:27:32 +00:00
|
|
|
request_counter: &mut i32,
|
2020-10-12 14:10:09 +00:00
|
|
|
) -> Result<CommentForm, LemmyError> {
|
|
|
|
let creator_actor_id = ¬e
|
|
|
|
.attributed_to()
|
|
|
|
.context(location_info!())?
|
|
|
|
.as_single_xsd_any_uri()
|
|
|
|
.context(location_info!())?;
|
|
|
|
|
2020-10-22 18:27:32 +00:00
|
|
|
let creator = get_or_fetch_and_upsert_user(creator_actor_id, context, request_counter).await?;
|
2020-10-12 14:10:09 +00:00
|
|
|
|
|
|
|
let mut in_reply_tos = note
|
|
|
|
.in_reply_to()
|
|
|
|
.as_ref()
|
|
|
|
.context(location_info!())?
|
|
|
|
.as_many()
|
|
|
|
.context(location_info!())?
|
|
|
|
.iter()
|
|
|
|
.map(|i| i.as_xsd_any_uri().context(""));
|
|
|
|
let post_ap_id = in_reply_tos.next().context(location_info!())??;
|
|
|
|
|
|
|
|
// This post, or the parent comment might not yet exist on this server yet, fetch them.
|
2020-10-22 18:27:32 +00:00
|
|
|
let post = get_or_fetch_and_insert_post(&post_ap_id, context, request_counter).await?;
|
2020-10-12 14:10:09 +00:00
|
|
|
|
|
|
|
// The 2nd item, if it exists, is the parent comment apub_id
|
|
|
|
// For deeply nested comments, FromApub automatically gets called recursively
|
|
|
|
let parent_id: Option<i32> = match in_reply_tos.next() {
|
|
|
|
Some(parent_comment_uri) => {
|
|
|
|
let parent_comment_ap_id = &parent_comment_uri?;
|
|
|
|
let parent_comment =
|
2020-10-22 18:27:32 +00:00
|
|
|
get_or_fetch_and_insert_comment(&parent_comment_ap_id, context, request_counter).await?;
|
2020-10-12 14:10:09 +00:00
|
|
|
|
|
|
|
Some(parent_comment.id)
|
|
|
|
}
|
|
|
|
None => None,
|
|
|
|
};
|
2020-11-24 17:53:43 +00:00
|
|
|
|
|
|
|
let content = get_source_markdown_value(note)?.context(location_info!())?;
|
2020-10-12 14:10:09 +00:00
|
|
|
let content_slurs_removed = remove_slurs(&content);
|
|
|
|
|
|
|
|
Ok(CommentForm {
|
|
|
|
creator_id: creator.id,
|
|
|
|
post_id: post.id,
|
|
|
|
parent_id,
|
|
|
|
content: content_slurs_removed,
|
|
|
|
removed: None,
|
|
|
|
read: None,
|
|
|
|
published: note.published().map(|u| u.to_owned().naive_local()),
|
|
|
|
updated: note.updated().map(|u| u.to_owned().naive_local()),
|
|
|
|
deleted: None,
|
2020-10-14 15:34:11 +00:00
|
|
|
ap_id: Some(check_object_domain(note, expected_domain)?),
|
2020-10-12 14:10:09 +00:00
|
|
|
local: false,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|