2020-10-12 14:10:09 +00:00
|
|
|
use crate::{
|
2021-11-06 17:35:14 +00:00
|
|
|
activities::{verify_is_public, verify_person_in_community},
|
2022-06-02 14:33:41 +00:00
|
|
|
check_apub_id_valid_with_strictness,
|
2023-07-05 15:08:02 +00:00
|
|
|
local_site_data_cached,
|
2022-04-25 21:11:34 +00:00
|
|
|
objects::{read_from_string_or_source_opt, verify_is_remote_object},
|
2021-10-28 21:17:59 +00:00
|
|
|
protocol::{
|
2022-08-22 20:55:10 +00:00
|
|
|
objects::{
|
|
|
|
page::{Attachment, AttributedTo, Page, PageType},
|
|
|
|
LanguageTag,
|
|
|
|
},
|
2021-10-28 11:46:48 +00:00
|
|
|
ImageObject,
|
2022-12-01 20:52:49 +00:00
|
|
|
InCommunity,
|
2022-04-01 18:25:19 +00:00
|
|
|
Source,
|
2021-10-28 11:46:48 +00:00
|
|
|
},
|
2020-10-12 14:10:09 +00:00
|
|
|
};
|
2022-06-02 14:33:41 +00:00
|
|
|
use activitypub_federation::{
|
2023-03-21 15:03:05 +00:00
|
|
|
config::Data,
|
|
|
|
kinds::public,
|
|
|
|
protocol::{values::MediaTypeMarkdownOrHtml, verification::verify_domains_match},
|
|
|
|
traits::Object,
|
2022-06-02 14:33:41 +00:00
|
|
|
};
|
2023-01-20 17:43:23 +00:00
|
|
|
use anyhow::anyhow;
|
2023-08-24 15:27:00 +00:00
|
|
|
use chrono::{DateTime, Utc};
|
2023-10-13 00:36:02 +00:00
|
|
|
use html2text::{from_read_with_decorator, render::text_renderer::TrivialDecorator};
|
2022-11-26 02:04:46 +00:00
|
|
|
use lemmy_api_common::{
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2024-01-25 14:22:11 +00:00
|
|
|
request::fetch_link_metadata_opt,
|
|
|
|
utils::{
|
|
|
|
is_mod_or_admin,
|
|
|
|
local_site_opt_to_sensitive,
|
|
|
|
local_site_opt_to_slur_regex,
|
|
|
|
process_markdown_opt,
|
|
|
|
proxy_image_link_opt_apub,
|
|
|
|
},
|
2022-11-26 02:04:46 +00:00
|
|
|
};
|
2021-03-02 12:41:48 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::{
|
|
|
|
community::Community,
|
2022-10-27 09:24:07 +00:00
|
|
|
local_site::LocalSite,
|
2023-06-07 19:18:17 +00:00
|
|
|
moderator::{ModLockPost, ModLockPostForm},
|
2021-03-10 22:33:55 +00:00
|
|
|
person::Person,
|
2022-10-27 09:24:07 +00:00
|
|
|
post::{Post, PostInsertForm, PostUpdateForm},
|
2021-03-02 12:41:48 +00:00
|
|
|
},
|
2021-10-16 13:33:38 +00:00
|
|
|
traits::Crud,
|
2020-10-12 14:10:09 +00:00
|
|
|
};
|
|
|
|
use lemmy_utils::{
|
2022-06-02 14:33:41 +00:00
|
|
|
error::LemmyError,
|
2024-01-25 14:22:11 +00:00
|
|
|
utils::{markdown::markdown_to_html, slurs::check_slurs_opt, validation::check_url_scheme},
|
2020-10-12 14:10:09 +00:00
|
|
|
};
|
2021-10-18 21:36:44 +00:00
|
|
|
use std::ops::Deref;
|
2023-10-13 00:36:02 +00:00
|
|
|
use stringreader::StringReader;
|
2020-10-12 14:10:09 +00:00
|
|
|
use url::Url;
|
|
|
|
|
2023-02-10 18:35:23 +00:00
|
|
|
const MAX_TITLE_LENGTH: usize = 200;
|
2023-01-20 17:43:23 +00:00
|
|
|
|
2024-01-25 16:04:25 +00:00
|
|
|
#[derive(Clone, Debug, PartialEq)]
|
2022-11-28 14:29:33 +00:00
|
|
|
pub struct ApubPost(pub(crate) Post);
|
2021-10-18 21:36:44 +00:00
|
|
|
|
|
|
|
impl Deref for ApubPost {
|
|
|
|
type Target = Post;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<Post> for ApubPost {
|
|
|
|
fn from(p: Post) -> Self {
|
2022-03-30 14:58:03 +00:00
|
|
|
ApubPost(p)
|
2021-10-18 21:36:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-21 15:03:05 +00:00
|
|
|
#[async_trait::async_trait]
|
|
|
|
impl Object for ApubPost {
|
2021-10-18 21:36:44 +00:00
|
|
|
type DataType = LemmyContext;
|
2023-03-21 15:03:05 +00:00
|
|
|
type Kind = Page;
|
2022-06-02 14:33:41 +00:00
|
|
|
type Error = LemmyError;
|
2021-10-18 21:36:44 +00:00
|
|
|
|
2023-08-24 15:27:00 +00:00
|
|
|
fn last_refreshed_at(&self) -> Option<DateTime<Utc>> {
|
2021-10-18 21:36:44 +00:00
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2023-03-21 15:03:05 +00:00
|
|
|
async fn read_from_id(
|
2021-10-18 21:36:44 +00:00
|
|
|
object_id: Url,
|
2023-03-21 15:03:05 +00:00
|
|
|
context: &Data<Self::DataType>,
|
2021-10-18 21:36:44 +00:00
|
|
|
) -> Result<Option<Self>, LemmyError> {
|
|
|
|
Ok(
|
2023-07-11 13:09:59 +00:00
|
|
|
Post::read_from_apub_id(&mut context.pool(), object_id)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await?
|
|
|
|
.map(Into::into),
|
2021-10-18 21:36:44 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2023-03-21 15:03:05 +00:00
|
|
|
async fn delete(self, context: &Data<Self::DataType>) -> Result<(), LemmyError> {
|
2021-11-03 17:47:24 +00:00
|
|
|
if !self.deleted {
|
2023-08-08 09:41:41 +00:00
|
|
|
let form = PostUpdateForm {
|
|
|
|
deleted: Some(true),
|
|
|
|
..Default::default()
|
|
|
|
};
|
2023-07-11 13:09:59 +00:00
|
|
|
Post::update(&mut context.pool(), self.id, &form).await?;
|
2021-11-03 17:47:24 +00:00
|
|
|
}
|
2021-10-18 21:36:44 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2021-07-29 08:58:29 +00:00
|
|
|
|
|
|
|
// Turn a Lemmy post into an ActivityPub page that can be sent out over the network.
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2023-03-21 15:03:05 +00:00
|
|
|
async fn into_json(self, context: &Data<Self::DataType>) -> Result<Page, LemmyError> {
|
2021-07-29 08:58:29 +00:00
|
|
|
let creator_id = self.creator_id;
|
2023-07-11 13:09:59 +00:00
|
|
|
let creator = Person::read(&mut context.pool(), creator_id).await?;
|
2021-07-29 08:58:29 +00:00
|
|
|
let community_id = self.community_id;
|
2023-07-11 13:09:59 +00:00
|
|
|
let community = Community::read(&mut context.pool(), community_id).await?;
|
|
|
|
let language = LanguageTag::new_single(self.language_id, &mut context.pool()).await?;
|
2021-07-29 08:58:29 +00:00
|
|
|
|
2024-01-25 14:22:11 +00:00
|
|
|
let attachment = self
|
|
|
|
.url
|
|
|
|
.clone()
|
2024-03-05 10:34:57 +00:00
|
|
|
.map(|url| {
|
|
|
|
Attachment::new(
|
|
|
|
url.into(),
|
|
|
|
self.url_content_type.clone(),
|
|
|
|
self.alt_text.clone(),
|
|
|
|
)
|
|
|
|
})
|
2024-01-25 14:22:11 +00:00
|
|
|
.into_iter()
|
|
|
|
.collect();
|
|
|
|
|
2021-07-29 08:58:29 +00:00
|
|
|
let page = Page {
|
2022-05-06 23:53:33 +00:00
|
|
|
kind: PageType::Page,
|
2023-03-21 15:03:05 +00:00
|
|
|
id: self.ap_id.clone().into(),
|
|
|
|
attributed_to: AttributedTo::Lemmy(creator.actor_id.into()),
|
2022-12-01 20:52:49 +00:00
|
|
|
to: vec![community.actor_id.clone().into(), public()],
|
2021-11-06 17:44:34 +00:00
|
|
|
cc: vec![],
|
2023-01-20 17:43:23 +00:00
|
|
|
name: Some(self.name.clone()),
|
2021-07-29 08:58:29 +00:00
|
|
|
content: self.body.as_ref().map(|b| markdown_to_html(b)),
|
2022-05-06 23:53:33 +00:00
|
|
|
media_type: Some(MediaTypeMarkdownOrHtml::Html),
|
2022-04-01 18:25:19 +00:00
|
|
|
source: self.body.clone().map(Source::new),
|
2024-01-25 14:22:11 +00:00
|
|
|
attachment,
|
2022-03-24 16:33:42 +00:00
|
|
|
image: self.thumbnail_url.clone().map(ImageObject::new),
|
2021-07-29 08:58:29 +00:00
|
|
|
comments_enabled: Some(!self.locked),
|
|
|
|
sensitive: Some(self.nsfw),
|
2022-10-06 18:27:58 +00:00
|
|
|
language,
|
2023-10-17 17:25:35 +00:00
|
|
|
published: Some(self.published),
|
|
|
|
updated: self.updated,
|
2023-03-21 15:03:05 +00:00
|
|
|
audience: Some(community.actor_id.into()),
|
2023-01-20 17:43:23 +00:00
|
|
|
in_reply_to: None,
|
2021-07-29 08:58:29 +00:00
|
|
|
};
|
|
|
|
Ok(page)
|
|
|
|
}
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-11-06 17:35:14 +00:00
|
|
|
async fn verify(
|
|
|
|
page: &Page,
|
2021-08-12 12:48:09 +00:00
|
|
|
expected_domain: &Url,
|
2023-03-21 15:03:05 +00:00
|
|
|
context: &Data<Self::DataType>,
|
2021-11-06 17:35:14 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
2021-08-12 12:48:09 +00:00
|
|
|
// We can't verify the domain in case of mod action, because the mod may be on a different
|
|
|
|
// instance from the post author.
|
2021-11-03 16:26:09 +00:00
|
|
|
if !page.is_mod_action(context).await? {
|
|
|
|
verify_domains_match(page.id.inner(), expected_domain)?;
|
2022-06-22 20:24:54 +00:00
|
|
|
verify_is_remote_object(page.id.inner(), context.settings())?;
|
2021-08-12 12:48:09 +00:00
|
|
|
};
|
2021-11-06 17:35:14 +00:00
|
|
|
|
2023-03-21 15:03:05 +00:00
|
|
|
let community = page.community(context).await?;
|
2023-07-05 15:08:02 +00:00
|
|
|
check_apub_id_valid_with_strictness(page.id.inner(), community.local, context).await?;
|
2023-03-21 15:03:05 +00:00
|
|
|
verify_person_in_community(&page.creator()?, &community, context).await?;
|
2022-10-27 09:24:07 +00:00
|
|
|
|
2023-07-11 13:09:59 +00:00
|
|
|
let local_site_data = local_site_data_cached(&mut context.pool()).await?;
|
2022-10-27 09:24:07 +00:00
|
|
|
let slur_regex = &local_site_opt_to_slur_regex(&local_site_data.local_site);
|
2023-01-20 17:43:23 +00:00
|
|
|
check_slurs_opt(&page.name, slur_regex)?;
|
2022-10-27 09:24:07 +00:00
|
|
|
|
2022-05-06 23:53:33 +00:00
|
|
|
verify_domains_match(page.creator()?.inner(), page.id.inner())?;
|
2021-11-06 17:44:34 +00:00
|
|
|
verify_is_public(&page.to, &page.cc)?;
|
2021-11-06 17:35:14 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2023-03-21 15:03:05 +00:00
|
|
|
async fn from_json(page: Page, context: &Data<Self::DataType>) -> Result<ApubPost, LemmyError> {
|
|
|
|
let creator = page.creator()?.dereference(context).await?;
|
|
|
|
let community = page.community(context).await?;
|
2023-02-05 17:31:09 +00:00
|
|
|
if community.posting_restricted_to_mods {
|
2023-10-13 13:48:18 +00:00
|
|
|
is_mod_or_admin(&mut context.pool(), &creator, community.id).await?;
|
2023-02-05 17:31:09 +00:00
|
|
|
}
|
2023-01-20 17:43:23 +00:00
|
|
|
let mut name = page
|
|
|
|
.name
|
|
|
|
.clone()
|
|
|
|
.or_else(|| {
|
2023-10-13 00:36:02 +00:00
|
|
|
// Posts coming from Mastodon or similar platforms don't have a title. Instead we take the
|
|
|
|
// first line of the content and convert it from HTML to plaintext. We also remove mentions
|
|
|
|
// of the community name.
|
2023-01-20 17:43:23 +00:00
|
|
|
page
|
|
|
|
.content
|
2023-10-13 00:36:02 +00:00
|
|
|
.as_deref()
|
|
|
|
.map(StringReader::new)
|
|
|
|
.map(|c| from_read_with_decorator(c, MAX_TITLE_LENGTH, TrivialDecorator::new()))
|
|
|
|
.and_then(|c| {
|
|
|
|
c.lines().next().map(|s| {
|
|
|
|
s.replace(&format!("@{}", community.name), "")
|
|
|
|
.trim()
|
|
|
|
.to_string()
|
|
|
|
})
|
|
|
|
})
|
2023-01-20 17:43:23 +00:00
|
|
|
})
|
|
|
|
.ok_or_else(|| anyhow!("Object must have name or content"))?;
|
|
|
|
if name.chars().count() > MAX_TITLE_LENGTH {
|
|
|
|
name = name.chars().take(MAX_TITLE_LENGTH).collect();
|
|
|
|
}
|
2020-10-12 14:10:09 +00:00
|
|
|
|
2023-05-18 11:22:05 +00:00
|
|
|
// read existing, local post if any (for generating mod log)
|
|
|
|
let old_post = page.id.dereference_local(context).await;
|
|
|
|
|
2024-03-05 10:34:57 +00:00
|
|
|
let first_attachment = page.attachment.first();
|
|
|
|
|
2022-04-25 21:11:34 +00:00
|
|
|
let form = if !page.is_mod_action(context).await? {
|
2024-03-05 10:34:57 +00:00
|
|
|
let url = if let Some(attachment) = first_attachment.cloned() {
|
|
|
|
Some(attachment.url())
|
2022-05-06 23:53:33 +00:00
|
|
|
} else if page.kind == PageType::Video {
|
|
|
|
// we cant display videos directly, so insert a link to external video page
|
|
|
|
Some(page.id.inner().clone())
|
2022-04-25 21:11:34 +00:00
|
|
|
} else {
|
2022-12-09 16:21:17 +00:00
|
|
|
None
|
2022-04-25 21:11:34 +00:00
|
|
|
};
|
2023-07-06 12:29:51 +00:00
|
|
|
check_url_scheme(&url)?;
|
2023-06-30 10:42:42 +00:00
|
|
|
|
2024-03-05 10:34:57 +00:00
|
|
|
let alt_text = first_attachment.cloned().and_then(Attachment::alt_text);
|
2023-07-11 13:09:59 +00:00
|
|
|
let local_site = LocalSite::read(&mut context.pool()).await.ok();
|
2023-06-30 10:42:42 +00:00
|
|
|
let allow_sensitive = local_site_opt_to_sensitive(&local_site);
|
|
|
|
let page_is_sensitive = page.sensitive.unwrap_or(false);
|
2024-01-25 14:22:11 +00:00
|
|
|
let allow_generate_thumbnail = allow_sensitive || !page_is_sensitive;
|
|
|
|
let mut thumbnail_url = page.image.map(|i| i.url);
|
|
|
|
let do_generate_thumbnail = thumbnail_url.is_none() && allow_generate_thumbnail;
|
|
|
|
|
|
|
|
// Generate local thumbnail only if no thumbnail was federated and 'sensitive' attributes allow it.
|
|
|
|
let metadata = fetch_link_metadata_opt(url.as_ref(), do_generate_thumbnail, context).await;
|
|
|
|
if let Some(thumbnail_url_) = metadata.thumbnail {
|
|
|
|
thumbnail_url = Some(thumbnail_url_.into());
|
|
|
|
}
|
|
|
|
let url = proxy_image_link_opt_apub(url, context).await?;
|
|
|
|
let thumbnail_url = proxy_image_link_opt_apub(thumbnail_url, context).await?;
|
2023-06-30 10:42:42 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let slur_regex = &local_site_opt_to_slur_regex(&local_site);
|
|
|
|
|
2024-01-25 14:22:11 +00:00
|
|
|
let body = read_from_string_or_source_opt(&page.content, &page.media_type, &page.source);
|
|
|
|
let body = process_markdown_opt(&body, slur_regex, context).await?;
|
2023-07-11 13:09:59 +00:00
|
|
|
let language_id =
|
|
|
|
LanguageTag::to_language_id_single(page.language, &mut context.pool()).await?;
|
2022-04-25 21:11:34 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
PostInsertForm {
|
2023-01-20 17:43:23 +00:00
|
|
|
name,
|
2022-10-27 09:24:07 +00:00
|
|
|
url: url.map(Into::into),
|
2023-09-13 17:27:31 +00:00
|
|
|
body,
|
2024-03-05 10:34:57 +00:00
|
|
|
alt_text,
|
2022-04-25 21:11:34 +00:00
|
|
|
creator_id: creator.id,
|
|
|
|
community_id: community.id,
|
|
|
|
removed: None,
|
|
|
|
locked: page.comments_enabled.map(|e| !e),
|
2023-08-24 15:27:00 +00:00
|
|
|
published: page.published.map(Into::into),
|
|
|
|
updated: page.updated.map(Into::into),
|
2022-11-03 13:39:30 +00:00
|
|
|
deleted: Some(false),
|
2022-04-25 21:11:34 +00:00
|
|
|
nsfw: page.sensitive,
|
2024-01-25 14:22:11 +00:00
|
|
|
embed_title: metadata.opengraph_data.title,
|
|
|
|
embed_description: metadata.opengraph_data.description,
|
|
|
|
embed_video_url: metadata.opengraph_data.embed_video_url,
|
2022-10-27 09:24:07 +00:00
|
|
|
thumbnail_url,
|
2022-04-25 21:11:34 +00:00
|
|
|
ap_id: Some(page.id.clone().into()),
|
|
|
|
local: Some(false),
|
2022-10-06 18:27:58 +00:00
|
|
|
language_id,
|
2023-06-07 19:18:17 +00:00
|
|
|
featured_community: None,
|
2022-12-12 11:17:10 +00:00
|
|
|
featured_local: None,
|
2024-01-25 14:22:11 +00:00
|
|
|
url_content_type: metadata.content_type,
|
2022-04-25 21:11:34 +00:00
|
|
|
}
|
2022-04-01 18:25:19 +00:00
|
|
|
} else {
|
2022-04-25 21:11:34 +00:00
|
|
|
// if is mod action, only update locked/stickied fields, nothing else
|
2022-10-27 09:24:07 +00:00
|
|
|
PostInsertForm::builder()
|
2023-01-20 17:43:23 +00:00
|
|
|
.name(name)
|
2022-10-27 09:24:07 +00:00
|
|
|
.creator_id(creator.id)
|
|
|
|
.community_id(community.id)
|
|
|
|
.ap_id(Some(page.id.clone().into()))
|
|
|
|
.locked(page.comments_enabled.map(|e| !e))
|
2023-08-24 15:27:00 +00:00
|
|
|
.updated(page.updated.map(Into::into))
|
2022-10-27 09:24:07 +00:00
|
|
|
.build()
|
2021-07-27 22:18:50 +00:00
|
|
|
};
|
2022-04-11 23:03:31 +00:00
|
|
|
|
2023-07-11 13:09:59 +00:00
|
|
|
let post = Post::create(&mut context.pool(), &form).await?;
|
2022-04-11 23:03:31 +00:00
|
|
|
|
2023-06-07 19:18:17 +00:00
|
|
|
// write mod log entry for lock
|
2022-04-11 23:03:31 +00:00
|
|
|
if Page::is_locked_changed(&old_post, &page.comments_enabled) {
|
|
|
|
let form = ModLockPostForm {
|
|
|
|
mod_person_id: creator.id,
|
|
|
|
post_id: post.id,
|
|
|
|
locked: Some(post.locked),
|
|
|
|
};
|
2023-07-11 13:09:59 +00:00
|
|
|
ModLockPost::create(&mut context.pool(), &form).await?;
|
2022-04-11 23:03:31 +00:00
|
|
|
}
|
|
|
|
|
2021-10-18 21:36:44 +00:00
|
|
|
Ok(post.into())
|
2020-10-12 14:10:09 +00:00
|
|
|
}
|
|
|
|
}
|
2021-10-21 17:25:35 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2022-02-17 22:04:01 +00:00
|
|
|
use crate::{
|
|
|
|
objects::{
|
2024-03-06 16:21:46 +00:00
|
|
|
community::tests::parse_lemmy_community,
|
2023-10-13 00:36:02 +00:00
|
|
|
person::{tests::parse_lemmy_person, ApubPerson},
|
2022-02-17 22:04:01 +00:00
|
|
|
},
|
|
|
|
protocol::tests::file_to_json_object,
|
2021-10-21 17:25:35 +00:00
|
|
|
};
|
2022-02-07 19:23:12 +00:00
|
|
|
use lemmy_db_schema::source::site::Site;
|
2023-11-17 03:51:33 +00:00
|
|
|
use lemmy_utils::error::LemmyResult;
|
2024-01-04 09:47:18 +00:00
|
|
|
use pretty_assertions::assert_eq;
|
2021-10-21 17:25:35 +00:00
|
|
|
use serial_test::serial;
|
|
|
|
|
2023-06-26 08:24:11 +00:00
|
|
|
#[tokio::test]
|
2021-10-21 17:25:35 +00:00
|
|
|
#[serial]
|
2023-11-17 03:51:33 +00:00
|
|
|
async fn test_parse_lemmy_post() -> LemmyResult<()> {
|
2024-01-25 14:22:11 +00:00
|
|
|
let context = LemmyContext::init_test_context().await;
|
2023-11-17 03:51:33 +00:00
|
|
|
let (person, site) = parse_lemmy_person(&context).await?;
|
|
|
|
let community = parse_lemmy_community(&context).await?;
|
2021-11-01 13:05:20 +00:00
|
|
|
|
2023-11-17 03:51:33 +00:00
|
|
|
let json = file_to_json_object("assets/lemmy/objects/page.json")?;
|
|
|
|
let url = Url::parse("https://enterprise.lemmy.ml/post/55143")?;
|
|
|
|
ApubPost::verify(&json, &url, &context).await?;
|
|
|
|
let post = ApubPost::from_json(json, &context).await?;
|
2021-10-21 17:25:35 +00:00
|
|
|
|
2021-11-05 00:24:10 +00:00
|
|
|
assert_eq!(post.ap_id, url.into());
|
2021-10-22 16:21:26 +00:00
|
|
|
assert_eq!(post.name, "Post title");
|
2021-10-21 17:25:35 +00:00
|
|
|
assert!(post.body.is_some());
|
2023-11-17 03:51:33 +00:00
|
|
|
assert_eq!(post.body.as_ref().map(std::string::String::len), Some(45));
|
2021-10-21 17:25:35 +00:00
|
|
|
assert!(!post.locked);
|
2023-06-07 19:18:17 +00:00
|
|
|
assert!(!post.featured_community);
|
2023-03-21 15:03:05 +00:00
|
|
|
assert_eq!(context.request_count(), 0);
|
2021-10-21 17:25:35 +00:00
|
|
|
|
2024-03-06 16:21:46 +00:00
|
|
|
Post::delete(&mut context.pool(), post.id).await?;
|
|
|
|
Person::delete(&mut context.pool(), person.id).await?;
|
|
|
|
Community::delete(&mut context.pool(), community.id).await?;
|
|
|
|
Site::delete(&mut context.pool(), site.id).await?;
|
2023-11-17 03:51:33 +00:00
|
|
|
Ok(())
|
2023-10-13 00:36:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
#[serial]
|
2023-11-17 03:51:33 +00:00
|
|
|
async fn test_convert_mastodon_post_title() -> LemmyResult<()> {
|
2024-01-25 14:22:11 +00:00
|
|
|
let context = LemmyContext::init_test_context().await;
|
2023-11-17 03:51:33 +00:00
|
|
|
let community = parse_lemmy_community(&context).await?;
|
2023-10-13 00:36:02 +00:00
|
|
|
|
2024-03-06 16:21:46 +00:00
|
|
|
let json = file_to_json_object("assets/mastodon/objects/person.json")?;
|
|
|
|
let person = ApubPerson::from_json(json, &context).await?;
|
|
|
|
|
2023-11-17 03:51:33 +00:00
|
|
|
let json = file_to_json_object("assets/mastodon/objects/page.json")?;
|
|
|
|
let post = ApubPost::from_json(json, &context).await?;
|
2023-10-13 00:36:02 +00:00
|
|
|
|
|
|
|
assert_eq!(post.name, "Variable never resetting at refresh");
|
|
|
|
|
2023-11-17 03:51:33 +00:00
|
|
|
Post::delete(&mut context.pool(), post.id).await?;
|
|
|
|
Person::delete(&mut context.pool(), person.id).await?;
|
|
|
|
Community::delete(&mut context.pool(), community.id).await?;
|
|
|
|
Ok(())
|
2021-10-21 17:25:35 +00:00
|
|
|
}
|
|
|
|
}
|