]> Untitled Git - lemmy.git/blob - crates/apub/src/objects/post.rs
Activitypub crate rewrite (#2782)
[lemmy.git] / crates / apub / src / objects / post.rs
1 use crate::{
2   activities::{verify_is_public, verify_person_in_community},
3   check_apub_id_valid_with_strictness,
4   fetch_local_site_data,
5   objects::{read_from_string_or_source_opt, verify_is_remote_object},
6   protocol::{
7     objects::{
8       page::{Attachment, AttributedTo, Page, PageType},
9       LanguageTag,
10     },
11     ImageObject,
12     InCommunity,
13     Source,
14   },
15 };
16 use activitypub_federation::{
17   config::Data,
18   kinds::public,
19   protocol::{values::MediaTypeMarkdownOrHtml, verification::verify_domains_match},
20   traits::Object,
21 };
22 use anyhow::anyhow;
23 use chrono::NaiveDateTime;
24 use html2md::parse_html;
25 use lemmy_api_common::{
26   context::LemmyContext,
27   request::fetch_site_data,
28   utils::{is_mod_or_admin, local_site_opt_to_slur_regex},
29 };
30 use lemmy_db_schema::{
31   self,
32   source::{
33     community::Community,
34     local_site::LocalSite,
35     moderator::{ModFeaturePost, ModFeaturePostForm, ModLockPost, ModLockPostForm},
36     person::Person,
37     post::{Post, PostInsertForm, PostUpdateForm},
38   },
39   traits::Crud,
40 };
41 use lemmy_utils::{
42   error::LemmyError,
43   utils::{
44     markdown::markdown_to_html,
45     slurs::{check_slurs_opt, remove_slurs},
46     time::convert_datetime,
47   },
48 };
49 use std::ops::Deref;
50 use url::Url;
51
52 const MAX_TITLE_LENGTH: usize = 200;
53
54 #[derive(Clone, Debug)]
55 pub struct ApubPost(pub(crate) Post);
56
57 impl Deref for ApubPost {
58   type Target = Post;
59   fn deref(&self) -> &Self::Target {
60     &self.0
61   }
62 }
63
64 impl From<Post> for ApubPost {
65   fn from(p: Post) -> Self {
66     ApubPost(p)
67   }
68 }
69
70 #[async_trait::async_trait]
71 impl Object for ApubPost {
72   type DataType = LemmyContext;
73   type Kind = Page;
74   type Error = LemmyError;
75
76   fn last_refreshed_at(&self) -> Option<NaiveDateTime> {
77     None
78   }
79
80   #[tracing::instrument(skip_all)]
81   async fn read_from_id(
82     object_id: Url,
83     context: &Data<Self::DataType>,
84   ) -> Result<Option<Self>, LemmyError> {
85     Ok(
86       Post::read_from_apub_id(context.pool(), object_id)
87         .await?
88         .map(Into::into),
89     )
90   }
91
92   #[tracing::instrument(skip_all)]
93   async fn delete(self, context: &Data<Self::DataType>) -> Result<(), LemmyError> {
94     if !self.deleted {
95       let form = PostUpdateForm::builder().deleted(Some(true)).build();
96       Post::update(context.pool(), self.id, &form).await?;
97     }
98     Ok(())
99   }
100
101   // Turn a Lemmy post into an ActivityPub page that can be sent out over the network.
102   #[tracing::instrument(skip_all)]
103   async fn into_json(self, context: &Data<Self::DataType>) -> Result<Page, LemmyError> {
104     let creator_id = self.creator_id;
105     let creator = Person::read(context.pool(), creator_id).await?;
106     let community_id = self.community_id;
107     let community = Community::read(context.pool(), community_id).await?;
108     let language = LanguageTag::new_single(self.language_id, context.pool()).await?;
109
110     let page = Page {
111       kind: PageType::Page,
112       id: self.ap_id.clone().into(),
113       attributed_to: AttributedTo::Lemmy(creator.actor_id.into()),
114       to: vec![community.actor_id.clone().into(), public()],
115       cc: vec![],
116       name: Some(self.name.clone()),
117       content: self.body.as_ref().map(|b| markdown_to_html(b)),
118       media_type: Some(MediaTypeMarkdownOrHtml::Html),
119       source: self.body.clone().map(Source::new),
120       attachment: self.url.clone().map(Attachment::new).into_iter().collect(),
121       image: self.thumbnail_url.clone().map(ImageObject::new),
122       comments_enabled: Some(!self.locked),
123       sensitive: Some(self.nsfw),
124       stickied: Some(self.featured_community),
125       language,
126       published: Some(convert_datetime(self.published)),
127       updated: self.updated.map(convert_datetime),
128       audience: Some(community.actor_id.into()),
129       in_reply_to: None,
130     };
131     Ok(page)
132   }
133
134   #[tracing::instrument(skip_all)]
135   async fn verify(
136     page: &Page,
137     expected_domain: &Url,
138     context: &Data<Self::DataType>,
139   ) -> Result<(), LemmyError> {
140     // We can't verify the domain in case of mod action, because the mod may be on a different
141     // instance from the post author.
142     if !page.is_mod_action(context).await? {
143       verify_domains_match(page.id.inner(), expected_domain)?;
144       verify_is_remote_object(page.id.inner(), context.settings())?;
145     };
146
147     let local_site_data = fetch_local_site_data(context.pool()).await?;
148
149     let community = page.community(context).await?;
150     check_apub_id_valid_with_strictness(
151       page.id.inner(),
152       community.local,
153       &local_site_data,
154       context.settings(),
155     )?;
156     verify_person_in_community(&page.creator()?, &community, context).await?;
157
158     let slur_regex = &local_site_opt_to_slur_regex(&local_site_data.local_site);
159     check_slurs_opt(&page.name, slur_regex)?;
160
161     verify_domains_match(page.creator()?.inner(), page.id.inner())?;
162     verify_is_public(&page.to, &page.cc)?;
163     Ok(())
164   }
165
166   #[tracing::instrument(skip_all)]
167   async fn from_json(page: Page, context: &Data<Self::DataType>) -> Result<ApubPost, LemmyError> {
168     let creator = page.creator()?.dereference(context).await?;
169     let community = page.community(context).await?;
170     if community.posting_restricted_to_mods {
171       is_mod_or_admin(context.pool(), creator.id, community.id).await?;
172     }
173     let mut name = page
174       .name
175       .clone()
176       .or_else(|| {
177         page
178           .content
179           .clone()
180           .as_ref()
181           .and_then(|c| parse_html(c).lines().next().map(ToString::to_string))
182       })
183       .ok_or_else(|| anyhow!("Object must have name or content"))?;
184     if name.chars().count() > MAX_TITLE_LENGTH {
185       name = name.chars().take(MAX_TITLE_LENGTH).collect();
186     }
187
188     let form = if !page.is_mod_action(context).await? {
189       let first_attachment = page.attachment.into_iter().map(Attachment::url).next();
190       let url = if first_attachment.is_some() {
191         first_attachment
192       } else if page.kind == PageType::Video {
193         // we cant display videos directly, so insert a link to external video page
194         Some(page.id.inner().clone())
195       } else {
196         None
197       };
198       let (metadata_res, thumbnail_url) = if let Some(url) = &url {
199         fetch_site_data(context.client(), context.settings(), Some(url)).await
200       } else {
201         (None, page.image.map(|i| i.url.into()))
202       };
203       let (embed_title, embed_description, embed_video_url) = metadata_res
204         .map(|u| (u.title, u.description, u.embed_video_url))
205         .unwrap_or_default();
206       let local_site = LocalSite::read(context.pool()).await.ok();
207       let slur_regex = &local_site_opt_to_slur_regex(&local_site);
208
209       let body_slurs_removed =
210         read_from_string_or_source_opt(&page.content, &page.media_type, &page.source)
211           .map(|s| remove_slurs(&s, slur_regex));
212       let language_id = LanguageTag::to_language_id_single(page.language, context.pool()).await?;
213
214       PostInsertForm {
215         name,
216         url: url.map(Into::into),
217         body: body_slurs_removed,
218         creator_id: creator.id,
219         community_id: community.id,
220         removed: None,
221         locked: page.comments_enabled.map(|e| !e),
222         published: page.published.map(|u| u.naive_local()),
223         updated: page.updated.map(|u| u.naive_local()),
224         deleted: Some(false),
225         nsfw: page.sensitive,
226         embed_title,
227         embed_description,
228         embed_video_url,
229         thumbnail_url,
230         ap_id: Some(page.id.clone().into()),
231         local: Some(false),
232         language_id,
233         featured_community: page.stickied,
234         featured_local: None,
235       }
236     } else {
237       // if is mod action, only update locked/stickied fields, nothing else
238       PostInsertForm::builder()
239         .name(name)
240         .creator_id(creator.id)
241         .community_id(community.id)
242         .ap_id(Some(page.id.clone().into()))
243         .locked(page.comments_enabled.map(|e| !e))
244         .featured_community(page.stickied)
245         .updated(page.updated.map(|u| u.naive_local()))
246         .build()
247     };
248     // read existing, local post if any (for generating mod log)
249     let old_post = page.id.dereference_local(context).await;
250
251     let post = Post::create(context.pool(), &form).await?;
252
253     // write mod log entries for feature/lock
254     if Page::is_featured_changed(&old_post, &page.stickied) {
255       let form = ModFeaturePostForm {
256         mod_person_id: creator.id,
257         post_id: post.id,
258         featured: post.featured_community,
259         is_featured_community: true,
260       };
261       ModFeaturePost::create(context.pool(), &form).await?;
262     }
263     if Page::is_locked_changed(&old_post, &page.comments_enabled) {
264       let form = ModLockPostForm {
265         mod_person_id: creator.id,
266         post_id: post.id,
267         locked: Some(post.locked),
268       };
269       ModLockPost::create(context.pool(), &form).await?;
270     }
271
272     Ok(post.into())
273   }
274 }
275
276 #[cfg(test)]
277 mod tests {
278   use super::*;
279   use crate::{
280     objects::{
281       community::tests::parse_lemmy_community,
282       person::tests::parse_lemmy_person,
283       post::ApubPost,
284       tests::init_context,
285     },
286     protocol::tests::file_to_json_object,
287   };
288   use lemmy_db_schema::source::site::Site;
289   use serial_test::serial;
290
291   #[actix_rt::test]
292   #[serial]
293   async fn test_parse_lemmy_post() {
294     let context = init_context().await;
295     let (person, site) = parse_lemmy_person(&context).await;
296     let community = parse_lemmy_community(&context).await;
297
298     let json = file_to_json_object("assets/lemmy/objects/page.json").unwrap();
299     let url = Url::parse("https://enterprise.lemmy.ml/post/55143").unwrap();
300     ApubPost::verify(&json, &url, &context).await.unwrap();
301     let post = ApubPost::from_json(json, &context).await.unwrap();
302
303     assert_eq!(post.ap_id, url.into());
304     assert_eq!(post.name, "Post title");
305     assert!(post.body.is_some());
306     assert_eq!(post.body.as_ref().unwrap().len(), 45);
307     assert!(!post.locked);
308     assert!(post.featured_community);
309     assert_eq!(context.request_count(), 0);
310
311     Post::delete(context.pool(), post.id).await.unwrap();
312     Person::delete(context.pool(), person.id).await.unwrap();
313     Community::delete(context.pool(), community.id)
314       .await
315       .unwrap();
316     Site::delete(context.pool(), site.id).await.unwrap();
317   }
318 }