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::{
|
2024-03-14 16:16:45 +00:00
|
|
|
page::{Attachment, AttributedTo, Hashtag, HashtagType, Page, PageType},
|
2022-08-22 20:55:10 +00:00
|
|
|
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-03-27 14:54:42 +00:00
|
|
|
request::generate_post_link_metadata,
|
2024-01-25 14:22:11 +00:00
|
|
|
utils::{
|
2024-03-15 11:03:29 +00:00
|
|
|
get_url_blocklist,
|
2024-01-25 14:22:11 +00:00
|
|
|
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,
|
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,
|
2024-04-10 14:03:51 +00:00
|
|
|
utils::naive_now,
|
2020-10-12 14:10:09 +00:00
|
|
|
};
|
2024-03-14 21:31:54 +00:00
|
|
|
use lemmy_db_views_actor::structs::CommunityModeratorView;
|
2020-10-12 14:10:09 +00:00
|
|
|
use lemmy_utils::{
|
2024-04-16 12:48:15 +00:00
|
|
|
error::{LemmyError, LemmyErrorType, LemmyResult},
|
2024-05-22 08:28:47 +00:00
|
|
|
spawn_try_task,
|
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>,
|
2024-04-10 14:14:11 +00:00
|
|
|
) -> LemmyResult<Option<Self>> {
|
2021-10-18 21:36:44 +00:00
|
|
|
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)]
|
2024-04-10 14:14:11 +00:00
|
|
|
async fn delete(self, context: &Data<Self::DataType>) -> LemmyResult<()> {
|
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)]
|
2024-04-10 14:14:11 +00:00
|
|
|
async fn into_json(self, context: &Data<Self::DataType>) -> LemmyResult<Page> {
|
2021-07-29 08:58:29 +00:00
|
|
|
let creator_id = self.creator_id;
|
2024-04-16 12:48:15 +00:00
|
|
|
let creator = Person::read(&mut context.pool(), creator_id)
|
|
|
|
.await?
|
|
|
|
.ok_or(LemmyErrorType::CouldntFindPerson)?;
|
2021-07-29 08:58:29 +00:00
|
|
|
let community_id = self.community_id;
|
2024-04-16 12:48:15 +00:00
|
|
|
let community = Community::read(&mut context.pool(), community_id)
|
|
|
|
.await?
|
|
|
|
.ok_or(LemmyErrorType::CouldntFindCommunity)?;
|
2023-07-11 13:09:59 +00:00
|
|
|
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();
|
2024-03-14 16:16:45 +00:00
|
|
|
let hashtag = Hashtag {
|
|
|
|
href: self.ap_id.clone().into(),
|
|
|
|
name: format!("#{}", &community.name),
|
|
|
|
kind: HashtagType::Hashtag,
|
|
|
|
};
|
2024-01-25 14:22:11 +00:00
|
|
|
|
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
|
|
|
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,
|
2024-03-14 16:16:45 +00:00
|
|
|
tag: vec![hashtag],
|
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>,
|
2024-04-10 14:14:11 +00:00
|
|
|
) -> LemmyResult<()> {
|
2024-05-15 11:36:00 +00:00
|
|
|
verify_domains_match(page.id.inner(), expected_domain)?;
|
|
|
|
verify_is_remote_object(&page.id, context)?;
|
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)]
|
2024-04-10 14:14:11 +00:00
|
|
|
async fn from_json(page: Page, context: &Data<Self::DataType>) -> LemmyResult<ApubPost> {
|
2023-03-21 15:03:05 +00:00
|
|
|
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 {
|
2024-03-14 21:31:54 +00:00
|
|
|
CommunityModeratorView::is_community_moderator(&mut context.pool(), community.id, creator.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
|
|
|
|
2024-03-05 10:34:57 +00:00
|
|
|
let first_attachment = page.attachment.first();
|
2024-03-27 14:54:42 +00:00
|
|
|
let local_site = LocalSite::read(&mut context.pool()).await.ok();
|
2024-03-05 10:34:57 +00:00
|
|
|
|
2024-05-15 11:36:00 +00:00
|
|
|
let url = if let Some(attachment) = first_attachment.cloned() {
|
|
|
|
Some(attachment.url())
|
|
|
|
} else if page.kind == PageType::Video {
|
|
|
|
// we cant display videos directly, so insert a link to external video page
|
|
|
|
Some(page.id.inner().clone())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
check_url_scheme(&url)?;
|
2023-06-30 10:42:42 +00:00
|
|
|
|
2024-05-15 11:36:00 +00:00
|
|
|
let alt_text = first_attachment.cloned().and_then(Attachment::alt_text);
|
2024-01-25 14:22:11 +00:00
|
|
|
|
2024-05-15 11:36:00 +00:00
|
|
|
let url = proxy_image_link_opt_apub(url, context).await?;
|
2023-06-30 10:42:42 +00:00
|
|
|
|
2024-05-15 11:36:00 +00:00
|
|
|
let slur_regex = &local_site_opt_to_slur_regex(&local_site);
|
|
|
|
let url_blocklist = get_url_blocklist(context).await?;
|
2022-10-27 09:24:07 +00:00
|
|
|
|
2024-05-15 11:36:00 +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, &url_blocklist, context).await?;
|
|
|
|
let language_id =
|
|
|
|
LanguageTag::to_language_id_single(page.language, &mut context.pool()).await?;
|
2022-04-25 21:11:34 +00:00
|
|
|
|
2024-05-15 11:36:00 +00:00
|
|
|
let form = PostInsertForm::builder()
|
|
|
|
.name(name)
|
|
|
|
.url(url.map(Into::into))
|
|
|
|
.body(body)
|
|
|
|
.alt_text(alt_text)
|
|
|
|
.creator_id(creator.id)
|
|
|
|
.community_id(community.id)
|
|
|
|
.published(page.published.map(Into::into))
|
|
|
|
.updated(page.updated.map(Into::into))
|
|
|
|
.deleted(Some(false))
|
|
|
|
.nsfw(page.sensitive)
|
|
|
|
.ap_id(Some(page.id.clone().into()))
|
|
|
|
.local(Some(false))
|
|
|
|
.language_id(language_id)
|
|
|
|
.build();
|
2022-04-11 23:03:31 +00:00
|
|
|
|
2024-04-10 14:03:51 +00:00
|
|
|
let timestamp = page.updated.or(page.published).unwrap_or_else(naive_now);
|
|
|
|
let post = Post::insert_apub(&mut context.pool(), timestamp, &form).await?;
|
2024-05-22 08:28:47 +00:00
|
|
|
let post_ = post.clone();
|
|
|
|
let context_ = context.reset_request_count();
|
2022-04-11 23:03:31 +00:00
|
|
|
|
2024-05-23 12:46:26 +00:00
|
|
|
// Generates a post thumbnail in background task, because some sites can be very slow to
|
|
|
|
// respond.
|
2024-05-22 08:28:47 +00:00
|
|
|
spawn_try_task(async move {
|
|
|
|
generate_post_link_metadata(post_, None, |_| None, local_site, context_).await
|
|
|
|
});
|
2024-03-27 14:54:42 +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;
|
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
|
|
|
}
|
|
|
|
}
|