2020-10-12 14:10:09 +00:00
|
|
|
use crate::{
|
2021-07-31 14:57:37 +00:00
|
|
|
activities::{extract_community, verify_person_in_community},
|
2021-10-06 20:20:05 +00:00
|
|
|
context::lemmy_context,
|
2021-09-25 15:44:52 +00:00
|
|
|
fetcher::object_id::ObjectId,
|
2021-08-12 12:48:09 +00:00
|
|
|
objects::{create_tombstone, FromApub, ImageObject, Source, ToApub},
|
2020-10-12 14:10:09 +00:00
|
|
|
};
|
|
|
|
use activitystreams::{
|
2021-07-27 22:18:50 +00:00
|
|
|
base::AnyBase,
|
|
|
|
object::{
|
|
|
|
kind::{ImageType, PageType},
|
|
|
|
Tombstone,
|
|
|
|
},
|
|
|
|
primitives::OneOrMany,
|
2021-02-10 13:01:02 +00:00
|
|
|
public,
|
2021-07-27 22:18:50 +00:00
|
|
|
unparsed::Unparsed,
|
2020-10-12 14:10:09 +00:00
|
|
|
};
|
2021-07-27 22:18:50 +00:00
|
|
|
use chrono::{DateTime, FixedOffset};
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_api_common::blocking;
|
2021-07-30 14:35:32 +00:00
|
|
|
use lemmy_apub_lib::{
|
2021-10-06 20:20:05 +00:00
|
|
|
traits::ActorType,
|
2021-07-30 14:35:32 +00:00
|
|
|
values::{MediaTypeHtml, MediaTypeMarkdown},
|
2021-10-06 20:20:05 +00:00
|
|
|
verify::verify_domains_match,
|
2021-07-30 14:35:32 +00:00
|
|
|
};
|
2021-03-02 12:41:48 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
self,
|
|
|
|
source::{
|
|
|
|
community::Community,
|
2021-03-10 22:33:55 +00:00
|
|
|
person::Person,
|
2021-03-11 04:43:11 +00:00
|
|
|
post::{Post, PostForm},
|
2021-03-02 12:41:48 +00:00
|
|
|
},
|
2021-10-16 13:33:38 +00:00
|
|
|
traits::Crud,
|
|
|
|
DbPool,
|
2020-10-12 14:10:09 +00:00
|
|
|
};
|
|
|
|
use lemmy_utils::{
|
2021-08-19 14:12:49 +00:00
|
|
|
request::fetch_site_data,
|
2021-07-27 22:18:50 +00:00
|
|
|
utils::{check_slurs, convert_datetime, markdown_to_html, remove_slurs},
|
2020-10-12 14:10:09 +00:00
|
|
|
LemmyError,
|
|
|
|
};
|
|
|
|
use lemmy_websocket::LemmyContext;
|
2021-07-31 14:57:37 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2021-08-12 12:48:09 +00:00
|
|
|
use serde_with::skip_serializing_none;
|
2020-10-12 14:10:09 +00:00
|
|
|
use url::Url;
|
|
|
|
|
2021-08-12 12:48:09 +00:00
|
|
|
#[skip_serializing_none]
|
2021-07-31 14:57:37 +00:00
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
2021-07-27 22:18:50 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct Page {
|
|
|
|
#[serde(rename = "@context")]
|
|
|
|
context: OneOrMany<AnyBase>,
|
|
|
|
r#type: PageType,
|
2021-08-12 12:48:09 +00:00
|
|
|
id: Url,
|
2021-09-25 15:44:52 +00:00
|
|
|
pub(crate) attributed_to: ObjectId<Person>,
|
2021-07-27 22:18:50 +00:00
|
|
|
to: [Url; 2],
|
|
|
|
name: String,
|
|
|
|
content: Option<String>,
|
|
|
|
media_type: MediaTypeHtml,
|
|
|
|
source: Option<Source>,
|
|
|
|
url: Option<Url>,
|
|
|
|
image: Option<ImageObject>,
|
|
|
|
pub(crate) comments_enabled: Option<bool>,
|
|
|
|
sensitive: Option<bool>,
|
|
|
|
pub(crate) stickied: Option<bool>,
|
|
|
|
published: DateTime<FixedOffset>,
|
|
|
|
updated: Option<DateTime<FixedOffset>>,
|
|
|
|
#[serde(flatten)]
|
|
|
|
unparsed: Unparsed,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Page {
|
2021-08-12 12:48:09 +00:00
|
|
|
pub(crate) fn id_unchecked(&self) -> &Url {
|
|
|
|
&self.id
|
|
|
|
}
|
|
|
|
pub(crate) fn id(&self, expected_domain: &Url) -> Result<&Url, LemmyError> {
|
|
|
|
verify_domains_match(&self.id, expected_domain)?;
|
|
|
|
Ok(&self.id)
|
|
|
|
}
|
|
|
|
|
2021-07-27 22:18:50 +00:00
|
|
|
/// Only mods can change the post's stickied/locked status. So if either of these is changed from
|
|
|
|
/// the current value, it is a mod action and needs to be verified as such.
|
2020-10-19 14:29:35 +00:00
|
|
|
///
|
2021-07-27 22:18:50 +00:00
|
|
|
/// Both stickied and locked need to be false on a newly created post (verified in [[CreatePost]].
|
2021-10-06 20:20:05 +00:00
|
|
|
pub(crate) async fn is_mod_action(&self, context: &LemmyContext) -> Result<bool, LemmyError> {
|
|
|
|
let old_post = ObjectId::<Post>::new(self.id.clone())
|
|
|
|
.dereference_local(context)
|
|
|
|
.await;
|
2021-07-27 22:18:50 +00:00
|
|
|
|
|
|
|
let is_mod_action = if let Ok(old_post) = old_post {
|
|
|
|
self.stickied != Some(old_post.stickied) || self.comments_enabled != Some(!old_post.locked)
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
};
|
|
|
|
Ok(is_mod_action)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) async fn verify(
|
|
|
|
&self,
|
2021-07-31 14:57:37 +00:00
|
|
|
context: &LemmyContext,
|
|
|
|
request_counter: &mut i32,
|
2021-07-27 22:18:50 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
2021-07-31 14:57:37 +00:00
|
|
|
let community = extract_community(&self.to, context, request_counter).await?;
|
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
check_slurs(&self.name, &context.settings().slur_regex())?;
|
2021-10-06 20:20:05 +00:00
|
|
|
verify_domains_match(self.attributed_to.inner(), &self.id.clone())?;
|
2021-07-31 14:57:37 +00:00
|
|
|
verify_person_in_community(
|
|
|
|
&self.attributed_to,
|
2021-09-25 15:44:52 +00:00
|
|
|
&ObjectId::new(community.actor_id()),
|
2021-07-31 14:57:37 +00:00
|
|
|
context,
|
|
|
|
request_counter,
|
|
|
|
)
|
|
|
|
.await?;
|
2021-07-27 22:18:50 +00:00
|
|
|
Ok(())
|
2020-12-08 17:38:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-29 08:58:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl ToApub for Post {
|
|
|
|
type ApubType = Page;
|
|
|
|
|
|
|
|
// Turn a Lemmy post into an ActivityPub page that can be sent out over the network.
|
|
|
|
async fn to_apub(&self, pool: &DbPool) -> Result<Page, LemmyError> {
|
|
|
|
let creator_id = self.creator_id;
|
|
|
|
let creator = blocking(pool, move |conn| Person::read(conn, creator_id)).await??;
|
|
|
|
let community_id = self.community_id;
|
|
|
|
let community = blocking(pool, move |conn| Community::read(conn, community_id)).await??;
|
|
|
|
|
|
|
|
let source = self.body.clone().map(|body| Source {
|
|
|
|
content: body,
|
|
|
|
media_type: MediaTypeMarkdown::Markdown,
|
|
|
|
});
|
|
|
|
let image = self.thumbnail_url.clone().map(|thumb| ImageObject {
|
2021-08-12 12:48:09 +00:00
|
|
|
kind: ImageType::Image,
|
2021-07-29 08:58:29 +00:00
|
|
|
url: thumb.into(),
|
|
|
|
});
|
|
|
|
|
|
|
|
let page = Page {
|
|
|
|
context: lemmy_context(),
|
|
|
|
r#type: PageType::Page,
|
|
|
|
id: self.ap_id.clone().into(),
|
2021-09-25 15:44:52 +00:00
|
|
|
attributed_to: ObjectId::new(creator.actor_id),
|
2021-07-29 08:58:29 +00:00
|
|
|
to: [community.actor_id.into(), public()],
|
|
|
|
name: self.name.clone(),
|
|
|
|
content: self.body.as_ref().map(|b| markdown_to_html(b)),
|
2021-07-30 14:35:32 +00:00
|
|
|
media_type: MediaTypeHtml::Html,
|
2021-07-29 08:58:29 +00:00
|
|
|
source,
|
|
|
|
url: self.url.clone().map(|u| u.into()),
|
|
|
|
image,
|
|
|
|
comments_enabled: Some(!self.locked),
|
|
|
|
sensitive: Some(self.nsfw),
|
|
|
|
stickied: Some(self.stickied),
|
|
|
|
published: convert_datetime(self.published),
|
|
|
|
updated: self.updated.map(convert_datetime),
|
|
|
|
unparsed: Default::default(),
|
|
|
|
};
|
|
|
|
Ok(page)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn to_tombstone(&self) -> Result<Tombstone, LemmyError> {
|
|
|
|
create_tombstone(
|
|
|
|
self.deleted,
|
|
|
|
self.ap_id.to_owned().into(),
|
|
|
|
self.updated,
|
|
|
|
PageType::Page,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-08 17:38:48 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2021-07-27 22:18:50 +00:00
|
|
|
impl FromApub for Post {
|
|
|
|
type ApubType = Page;
|
|
|
|
|
2020-12-08 17:38:48 +00:00
|
|
|
async fn from_apub(
|
2021-07-27 22:18:50 +00:00
|
|
|
page: &Page,
|
2020-12-08 17:38:48 +00:00
|
|
|
context: &LemmyContext,
|
2021-08-12 12:48:09 +00:00
|
|
|
expected_domain: &Url,
|
2020-10-22 18:27:32 +00:00
|
|
|
request_counter: &mut i32,
|
2021-07-27 22:18:50 +00:00
|
|
|
) -> Result<Post, 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-10-06 20:20:05 +00:00
|
|
|
let ap_id = if page.is_mod_action(context).await? {
|
2021-08-12 12:48:09 +00:00
|
|
|
page.id_unchecked()
|
|
|
|
} else {
|
|
|
|
page.id(expected_domain)?
|
|
|
|
};
|
|
|
|
let ap_id = Some(ap_id.clone().into());
|
2021-09-25 15:44:52 +00:00
|
|
|
let creator = page
|
|
|
|
.attributed_to
|
|
|
|
.dereference(context, request_counter)
|
|
|
|
.await?;
|
2021-07-27 22:18:50 +00:00
|
|
|
let community = extract_community(&page.to, context, request_counter).await?;
|
2020-10-12 14:10:09 +00:00
|
|
|
|
2021-07-27 22:18:50 +00:00
|
|
|
let thumbnail_url: Option<Url> = page.image.clone().map(|i| i.url);
|
2021-08-19 14:12:49 +00:00
|
|
|
let (metadata_res, pictrs_thumbnail) = if let Some(url) = &page.url {
|
2021-09-22 15:57:09 +00:00
|
|
|
fetch_site_data(context.client(), &context.settings(), Some(url)).await
|
2021-08-04 21:13:51 +00:00
|
|
|
} else {
|
|
|
|
(None, thumbnail_url)
|
|
|
|
};
|
2021-08-19 14:12:49 +00:00
|
|
|
let (embed_title, embed_description, embed_html) = metadata_res
|
2021-08-04 21:13:51 +00:00
|
|
|
.map(|u| (u.title, u.description, u.html))
|
|
|
|
.unwrap_or((None, None, None));
|
2020-10-12 14:10:09 +00:00
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
let body_slurs_removed = page
|
|
|
|
.source
|
|
|
|
.as_ref()
|
|
|
|
.map(|s| remove_slurs(&s.content, &context.settings().slur_regex()));
|
2021-07-27 22:18:50 +00:00
|
|
|
let form = PostForm {
|
|
|
|
name: page.name.clone(),
|
|
|
|
url: page.url.clone().map(|u| u.into()),
|
2020-10-12 14:10:09 +00:00
|
|
|
body: body_slurs_removed,
|
|
|
|
creator_id: creator.id,
|
|
|
|
community_id: community.id,
|
|
|
|
removed: None,
|
2021-07-27 22:18:50 +00:00
|
|
|
locked: page.comments_enabled.map(|e| !e),
|
|
|
|
published: Some(page.published.naive_local()),
|
|
|
|
updated: page.updated.map(|u| u.naive_local()),
|
2020-10-12 14:10:09 +00:00
|
|
|
deleted: None,
|
2021-07-27 22:18:50 +00:00
|
|
|
nsfw: page.sensitive,
|
|
|
|
stickied: page.stickied,
|
2021-08-04 21:13:51 +00:00
|
|
|
embed_title,
|
|
|
|
embed_description,
|
|
|
|
embed_html,
|
2021-03-02 12:41:48 +00:00
|
|
|
thumbnail_url: pictrs_thumbnail.map(|u| u.into()),
|
2021-08-12 12:48:09 +00:00
|
|
|
ap_id,
|
2021-03-20 20:59:07 +00:00
|
|
|
local: Some(false),
|
2021-07-27 22:18:50 +00:00
|
|
|
};
|
|
|
|
Ok(blocking(context.pool(), move |conn| Post::upsert(conn, &form)).await??)
|
2020-10-12 14:10:09 +00:00
|
|
|
}
|
|
|
|
}
|