2021-11-05 00:24:10 +00:00
|
|
|
use crate::{
|
2021-11-06 17:35:14 +00:00
|
|
|
activities::{verify_is_public, verify_person_in_community},
|
2021-11-05 00:24:10 +00:00
|
|
|
check_is_apub_id_valid,
|
2021-11-15 22:54:25 +00:00
|
|
|
mentions::collect_non_local_mentions,
|
2021-11-05 00:24:10 +00:00
|
|
|
protocol::{
|
|
|
|
objects::{
|
|
|
|
note::{Note, SourceCompat},
|
|
|
|
tombstone::Tombstone,
|
|
|
|
},
|
|
|
|
Source,
|
|
|
|
},
|
|
|
|
PostOrComment,
|
|
|
|
};
|
2021-11-19 17:47:06 +00:00
|
|
|
use activitystreams_kinds::{object::NoteType, public};
|
2021-10-28 21:17:59 +00:00
|
|
|
use chrono::NaiveDateTime;
|
2021-10-21 17:25:35 +00:00
|
|
|
use html2md::parse_html;
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_api_common::blocking;
|
2021-07-31 14:57:37 +00:00
|
|
|
use lemmy_apub_lib::{
|
2021-11-05 00:24:10 +00:00
|
|
|
object_id::ObjectId,
|
2021-10-27 16:03:07 +00:00
|
|
|
traits::ApubObject,
|
2021-10-21 17:25:35 +00:00
|
|
|
values::{MediaTypeHtml, MediaTypeMarkdown},
|
2021-11-05 00:24:10 +00:00
|
|
|
verify::verify_domains_match,
|
2021-07-31 14:57:37 +00:00
|
|
|
};
|
2021-03-18 20:25:21 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::{
|
|
|
|
comment::{Comment, CommentForm},
|
2021-03-22 14:08:06 +00:00
|
|
|
community::Community,
|
2021-03-18 20:25:21 +00:00
|
|
|
person::Person,
|
|
|
|
post::Post,
|
|
|
|
},
|
2021-10-16 13:33:38 +00:00
|
|
|
traits::Crud,
|
2020-10-12 14:10:09 +00:00
|
|
|
};
|
|
|
|
use lemmy_utils::{
|
2021-11-05 00:24:10 +00:00
|
|
|
utils::{convert_datetime, markdown_to_html, remove_slurs},
|
2020-10-12 14:10:09 +00:00
|
|
|
LemmyError,
|
|
|
|
};
|
|
|
|
use lemmy_websocket::LemmyContext;
|
2021-11-05 00:24:10 +00:00
|
|
|
use std::ops::Deref;
|
|
|
|
use url::Url;
|
2021-07-31 14:57:37 +00:00
|
|
|
|
2021-10-18 21:36:44 +00:00
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub struct ApubComment(Comment);
|
|
|
|
|
|
|
|
impl Deref for ApubComment {
|
|
|
|
type Target = Comment;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<Comment> for ApubComment {
|
|
|
|
fn from(c: Comment) -> Self {
|
|
|
|
ApubComment { 0: c }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl ApubObject for ApubComment {
|
|
|
|
type DataType = LemmyContext;
|
2021-10-27 16:03:07 +00:00
|
|
|
type ApubType = Note;
|
|
|
|
type TombstoneType = Tombstone;
|
2021-10-18 21:36:44 +00:00
|
|
|
|
|
|
|
fn last_refreshed_at(&self) -> Option<NaiveDateTime> {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-10-18 21:36:44 +00:00
|
|
|
async fn read_from_apub_id(
|
|
|
|
object_id: Url,
|
|
|
|
context: &LemmyContext,
|
|
|
|
) -> Result<Option<Self>, LemmyError> {
|
|
|
|
Ok(
|
|
|
|
blocking(context.pool(), move |conn| {
|
|
|
|
Comment::read_from_apub_id(conn, object_id)
|
|
|
|
})
|
|
|
|
.await??
|
|
|
|
.map(Into::into),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-10-18 21:36:44 +00:00
|
|
|
async fn delete(self, context: &LemmyContext) -> Result<(), LemmyError> {
|
2021-11-03 17:47:24 +00:00
|
|
|
if !self.deleted {
|
|
|
|
blocking(context.pool(), move |conn| {
|
|
|
|
Comment::update_deleted(conn, self.id, true)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
}
|
2021-10-18 21:36:44 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-10-12 14:10:09 +00:00
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-11-06 12:37:55 +00:00
|
|
|
async fn into_apub(self, context: &LemmyContext) -> Result<Note, LemmyError> {
|
2020-10-12 14:10:09 +00:00
|
|
|
let creator_id = self.creator_id;
|
2021-10-27 16:03:07 +00:00
|
|
|
let creator = blocking(context.pool(), move |conn| Person::read(conn, creator_id)).await??;
|
2020-10-12 14:10:09 +00:00
|
|
|
|
|
|
|
let post_id = self.post_id;
|
2021-10-27 16:03:07 +00:00
|
|
|
let post = blocking(context.pool(), move |conn| Post::read(conn, post_id)).await??;
|
2021-11-15 22:54:25 +00:00
|
|
|
let community_id = post.community_id;
|
|
|
|
let community = blocking(context.pool(), move |conn| {
|
|
|
|
Community::read(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-10-12 14:10:09 +00:00
|
|
|
|
2021-10-22 16:21:26 +00:00
|
|
|
let in_reply_to = if let Some(comment_id) = self.parent_id {
|
2021-10-27 16:03:07 +00:00
|
|
|
let parent_comment =
|
|
|
|
blocking(context.pool(), move |conn| Comment::read(conn, comment_id)).await??;
|
2021-11-05 00:24:10 +00:00
|
|
|
ObjectId::<PostOrComment>::new(parent_comment.ap_id)
|
2021-10-22 16:21:26 +00:00
|
|
|
} else {
|
2021-11-05 00:24:10 +00:00
|
|
|
ObjectId::<PostOrComment>::new(post.ap_id)
|
2021-10-22 16:21:26 +00:00
|
|
|
};
|
2021-11-18 18:28:53 +00:00
|
|
|
let maa =
|
|
|
|
collect_non_local_mentions(&self, ObjectId::new(community.actor_id), context, &mut 0).await?;
|
2020-10-12 14:10:09 +00:00
|
|
|
|
2021-07-31 14:57:37 +00:00
|
|
|
let note = Note {
|
|
|
|
r#type: NoteType::Note,
|
2021-11-06 12:37:55 +00:00
|
|
|
id: ObjectId::new(self.ap_id.clone()),
|
2021-09-25 15:44:52 +00:00
|
|
|
attributed_to: ObjectId::new(creator.actor_id),
|
2021-10-21 17:25:35 +00:00
|
|
|
to: vec![public()],
|
2021-11-15 22:54:25 +00:00
|
|
|
cc: maa.ccs,
|
2021-11-02 11:49:28 +00:00
|
|
|
content: markdown_to_html(&self.content),
|
2021-10-21 17:25:35 +00:00
|
|
|
media_type: Some(MediaTypeHtml::Html),
|
|
|
|
source: SourceCompat::Lemmy(Source {
|
2021-07-31 14:57:37 +00:00
|
|
|
content: self.content.clone(),
|
|
|
|
media_type: MediaTypeMarkdown::Markdown,
|
2021-10-21 17:25:35 +00:00
|
|
|
}),
|
2021-10-22 16:21:26 +00:00
|
|
|
in_reply_to,
|
2021-10-21 17:25:35 +00:00
|
|
|
published: Some(convert_datetime(self.published)),
|
2021-07-31 14:57:37 +00:00
|
|
|
updated: self.updated.map(convert_datetime),
|
2021-11-15 22:54:25 +00:00
|
|
|
tag: maa.tags,
|
2021-07-31 14:57:37 +00:00
|
|
|
unparsed: Default::default(),
|
|
|
|
};
|
2020-10-12 14:10:09 +00:00
|
|
|
|
2021-07-31 14:57:37 +00:00
|
|
|
Ok(note)
|
2020-10-12 14:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn to_tombstone(&self) -> Result<Tombstone, LemmyError> {
|
2021-11-16 00:58:15 +00:00
|
|
|
Ok(Tombstone::new(self.ap_id.clone().into()))
|
2020-10-12 14:10:09 +00:00
|
|
|
}
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-11-06 17:35:14 +00:00
|
|
|
async fn verify(
|
|
|
|
note: &Note,
|
2021-08-12 12:48:09 +00:00
|
|
|
expected_domain: &Url,
|
2021-11-06 17:35:14 +00:00
|
|
|
context: &LemmyContext,
|
2020-10-22 18:27:32 +00:00
|
|
|
request_counter: &mut i32,
|
2021-11-06 17:35:14 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
2021-11-03 16:26:09 +00:00
|
|
|
verify_domains_match(note.id.inner(), expected_domain)?;
|
2021-11-06 17:35:14 +00:00
|
|
|
verify_domains_match(note.attributed_to.inner(), note.id.inner())?;
|
2021-11-06 17:44:34 +00:00
|
|
|
verify_is_public(¬e.to, ¬e.cc)?;
|
2021-11-06 17:35:14 +00:00
|
|
|
let (post, _) = note.get_parents(context, request_counter).await?;
|
2021-10-28 11:46:48 +00:00
|
|
|
let community_id = post.community_id;
|
|
|
|
let community = blocking(context.pool(), move |conn| {
|
|
|
|
Community::read(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2021-11-03 16:26:09 +00:00
|
|
|
check_is_apub_id_valid(note.id.inner(), community.local, &context.settings())?;
|
2021-10-28 11:46:48 +00:00
|
|
|
verify_person_in_community(
|
|
|
|
¬e.attributed_to,
|
|
|
|
&community.into(),
|
|
|
|
context,
|
|
|
|
request_counter,
|
|
|
|
)
|
|
|
|
.await?;
|
2021-09-25 15:44:52 +00:00
|
|
|
if post.locked {
|
2021-12-06 14:54:47 +00:00
|
|
|
return Err(LemmyError::from_message("Post is locked"));
|
2021-09-25 15:44:52 +00:00
|
|
|
}
|
2021-11-06 17:35:14 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Converts a `Note` to `Comment`.
|
|
|
|
///
|
|
|
|
/// If the parent community, post and comment(s) are not known locally, these are also fetched.
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-11-06 17:35:14 +00:00
|
|
|
async fn from_apub(
|
|
|
|
note: Note,
|
|
|
|
context: &LemmyContext,
|
|
|
|
request_counter: &mut i32,
|
|
|
|
) -> Result<ApubComment, LemmyError> {
|
|
|
|
let creator = note
|
|
|
|
.attributed_to
|
2021-12-06 22:54:34 +00:00
|
|
|
.dereference(context, context.client(), request_counter)
|
2021-11-06 17:35:14 +00:00
|
|
|
.await?;
|
|
|
|
let (post, parent_comment_id) = note.get_parents(context, request_counter).await?;
|
2020-10-12 14:10:09 +00:00
|
|
|
|
2021-10-21 17:25:35 +00:00
|
|
|
let content = if let SourceCompat::Lemmy(source) = ¬e.source {
|
|
|
|
source.content.clone()
|
|
|
|
} else {
|
|
|
|
parse_html(¬e.content)
|
|
|
|
};
|
|
|
|
let content_slurs_removed = remove_slurs(&content, &context.settings().slur_regex());
|
2020-10-12 14:10:09 +00:00
|
|
|
|
2021-07-31 14:57:37 +00:00
|
|
|
let form = CommentForm {
|
2020-10-12 14:10:09 +00:00
|
|
|
creator_id: creator.id,
|
|
|
|
post_id: post.id,
|
2021-07-31 14:57:37 +00:00
|
|
|
parent_id: parent_comment_id,
|
2020-10-12 14:10:09 +00:00
|
|
|
content: content_slurs_removed,
|
|
|
|
removed: None,
|
|
|
|
read: None,
|
2021-11-06 12:37:55 +00:00
|
|
|
published: note.published.map(|u| u.naive_local()),
|
|
|
|
updated: note.updated.map(|u| u.naive_local()),
|
2020-10-12 14:10:09 +00:00
|
|
|
deleted: None,
|
2021-11-06 12:37:55 +00:00
|
|
|
ap_id: Some(note.id.into()),
|
2021-03-20 20:59:07 +00:00
|
|
|
local: Some(false),
|
2021-07-31 14:57:37 +00:00
|
|
|
};
|
2021-10-18 21:36:44 +00:00
|
|
|
let comment = blocking(context.pool(), move |conn| Comment::upsert(conn, &form)).await??;
|
|
|
|
Ok(comment.into())
|
2020-10-12 14:10:09 +00:00
|
|
|
}
|
|
|
|
}
|
2021-10-21 17:25:35 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
2021-10-26 10:47:26 +00:00
|
|
|
pub(crate) mod tests {
|
2021-10-29 14:54:19 +00:00
|
|
|
use super::*;
|
2021-10-21 17:25:35 +00:00
|
|
|
use crate::objects::{
|
2021-11-01 13:05:20 +00:00
|
|
|
community::{tests::parse_lemmy_community, ApubCommunity},
|
|
|
|
person::{tests::parse_lemmy_person, ApubPerson},
|
2021-10-29 14:54:19 +00:00
|
|
|
post::ApubPost,
|
2021-10-21 17:25:35 +00:00
|
|
|
tests::{file_to_json_object, init_context},
|
|
|
|
};
|
2021-10-29 14:54:19 +00:00
|
|
|
use assert_json_diff::assert_json_include;
|
2021-11-23 12:20:01 +00:00
|
|
|
use lemmy_apub_lib::activity_queue::create_activity_queue;
|
2021-10-29 14:54:19 +00:00
|
|
|
use serial_test::serial;
|
2021-10-21 17:25:35 +00:00
|
|
|
|
2021-11-01 13:05:20 +00:00
|
|
|
async fn prepare_comment_test(
|
2021-10-21 17:25:35 +00:00
|
|
|
url: &Url,
|
|
|
|
context: &LemmyContext,
|
|
|
|
) -> (ApubPerson, ApubCommunity, ApubPost) {
|
2021-11-01 13:05:20 +00:00
|
|
|
let person = parse_lemmy_person(context).await;
|
|
|
|
let community = parse_lemmy_community(context).await;
|
2021-10-29 14:54:19 +00:00
|
|
|
let post_json = file_to_json_object("assets/lemmy/objects/page.json");
|
2021-11-06 17:35:14 +00:00
|
|
|
ApubPost::verify(&post_json, url, context, &mut 0)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
let post = ApubPost::from_apub(post_json, context, &mut 0)
|
2021-10-21 17:25:35 +00:00
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
(person, community, post)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn cleanup(data: (ApubPerson, ApubCommunity, ApubPost), context: &LemmyContext) {
|
|
|
|
Post::delete(&*context.pool().get().unwrap(), data.2.id).unwrap();
|
|
|
|
Community::delete(&*context.pool().get().unwrap(), data.1.id).unwrap();
|
|
|
|
Person::delete(&*context.pool().get().unwrap(), data.0.id).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
#[serial]
|
2021-10-26 10:47:26 +00:00
|
|
|
pub(crate) async fn test_parse_lemmy_comment() {
|
2021-12-06 22:54:34 +00:00
|
|
|
let client = reqwest::Client::new().into();
|
|
|
|
let manager = create_activity_queue(client);
|
2021-11-23 12:20:01 +00:00
|
|
|
let context = init_context(manager.queue_handle().clone());
|
2021-10-22 16:21:26 +00:00
|
|
|
let url = Url::parse("https://enterprise.lemmy.ml/comment/38741").unwrap();
|
2021-10-21 17:25:35 +00:00
|
|
|
let data = prepare_comment_test(&url, &context).await;
|
|
|
|
|
2021-11-06 12:37:55 +00:00
|
|
|
let json: Note = file_to_json_object("assets/lemmy/objects/note.json");
|
2021-10-21 17:25:35 +00:00
|
|
|
let mut request_counter = 0;
|
2021-11-06 17:35:14 +00:00
|
|
|
ApubComment::verify(&json, &url, &context, &mut request_counter)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
let comment = ApubComment::from_apub(json.clone(), &context, &mut request_counter)
|
2021-10-21 17:25:35 +00:00
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
|
2021-11-05 00:24:10 +00:00
|
|
|
assert_eq!(comment.ap_id, url.into());
|
2021-10-22 16:21:26 +00:00
|
|
|
assert_eq!(comment.content.len(), 14);
|
2021-10-21 17:25:35 +00:00
|
|
|
assert!(!comment.local);
|
|
|
|
assert_eq!(request_counter, 0);
|
|
|
|
|
2021-11-06 12:37:55 +00:00
|
|
|
let comment_id = comment.id;
|
|
|
|
let to_apub = comment.into_apub(&context).await.unwrap();
|
2021-10-21 17:25:35 +00:00
|
|
|
assert_json_include!(actual: json, expected: to_apub);
|
|
|
|
|
2021-11-06 12:37:55 +00:00
|
|
|
Comment::delete(&*context.pool().get().unwrap(), comment_id).unwrap();
|
2021-10-21 17:25:35 +00:00
|
|
|
cleanup(data, &context);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
#[serial]
|
2021-10-22 16:21:26 +00:00
|
|
|
async fn test_parse_pleroma_comment() {
|
2021-12-06 22:54:34 +00:00
|
|
|
let client = reqwest::Client::new().into();
|
|
|
|
let manager = create_activity_queue(client);
|
2021-11-23 12:20:01 +00:00
|
|
|
let context = init_context(manager.queue_handle().clone());
|
2021-10-22 16:21:26 +00:00
|
|
|
let url = Url::parse("https://enterprise.lemmy.ml/comment/38741").unwrap();
|
2021-10-21 17:25:35 +00:00
|
|
|
let data = prepare_comment_test(&url, &context).await;
|
|
|
|
|
|
|
|
let pleroma_url =
|
|
|
|
Url::parse("https://queer.hacktivis.me/objects/8d4973f4-53de-49cd-8c27-df160e16a9c2")
|
|
|
|
.unwrap();
|
2021-10-29 14:54:19 +00:00
|
|
|
let person_json = file_to_json_object("assets/pleroma/objects/person.json");
|
2021-11-06 17:35:14 +00:00
|
|
|
ApubPerson::verify(&person_json, &pleroma_url, &context, &mut 0)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
ApubPerson::from_apub(person_json, &context, &mut 0)
|
2021-10-21 17:25:35 +00:00
|
|
|
.await
|
|
|
|
.unwrap();
|
2021-10-29 14:54:19 +00:00
|
|
|
let json = file_to_json_object("assets/pleroma/objects/note.json");
|
2021-10-21 17:25:35 +00:00
|
|
|
let mut request_counter = 0;
|
2021-11-06 17:35:14 +00:00
|
|
|
ApubComment::verify(&json, &pleroma_url, &context, &mut request_counter)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
let comment = ApubComment::from_apub(json, &context, &mut request_counter)
|
2021-10-21 17:25:35 +00:00
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
|
2021-11-05 00:24:10 +00:00
|
|
|
assert_eq!(comment.ap_id, pleroma_url.into());
|
2021-10-21 17:25:35 +00:00
|
|
|
assert_eq!(comment.content.len(), 64);
|
|
|
|
assert!(!comment.local);
|
|
|
|
assert_eq!(request_counter, 0);
|
|
|
|
|
|
|
|
Comment::delete(&*context.pool().get().unwrap(), comment.id).unwrap();
|
|
|
|
cleanup(data, &context);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
#[serial]
|
|
|
|
async fn test_html_to_markdown_sanitize() {
|
|
|
|
let parsed = parse_html("<script></script><b>hello</b>");
|
|
|
|
assert_eq!(parsed, "**hello**");
|
|
|
|
}
|
|
|
|
}
|