]> Untitled Git - lemmy.git/blob - crates/apub/src/objects/post.rs
Merge pull request #1897 from LemmyNet/mastodon-compat
[lemmy.git] / crates / apub / src / objects / post.rs
1 use crate::{
2   activities::{verify_is_public, verify_person_in_community},
3   check_is_apub_id_valid,
4   protocol::{
5     objects::{page::Page, tombstone::Tombstone},
6     ImageObject,
7     Source,
8   },
9 };
10 use activitystreams::{
11   object::kind::{ImageType, PageType},
12   public,
13 };
14 use chrono::NaiveDateTime;
15 use lemmy_api_common::blocking;
16 use lemmy_apub_lib::{
17   object_id::ObjectId,
18   traits::ApubObject,
19   values::{MediaTypeHtml, MediaTypeMarkdown},
20   verify::verify_domains_match,
21 };
22 use lemmy_db_schema::{
23   self,
24   source::{
25     community::Community,
26     person::Person,
27     post::{Post, PostForm},
28   },
29   traits::Crud,
30 };
31 use lemmy_utils::{
32   request::fetch_site_data,
33   utils::{check_slurs, convert_datetime, markdown_to_html, remove_slurs},
34   LemmyError,
35 };
36 use lemmy_websocket::LemmyContext;
37 use std::ops::Deref;
38 use url::Url;
39
40 #[derive(Clone, Debug)]
41 pub struct ApubPost(Post);
42
43 impl Deref for ApubPost {
44   type Target = Post;
45   fn deref(&self) -> &Self::Target {
46     &self.0
47   }
48 }
49
50 impl From<Post> for ApubPost {
51   fn from(p: Post) -> Self {
52     ApubPost { 0: p }
53   }
54 }
55
56 #[async_trait::async_trait(?Send)]
57 impl ApubObject for ApubPost {
58   type DataType = LemmyContext;
59   type ApubType = Page;
60   type TombstoneType = Tombstone;
61
62   fn last_refreshed_at(&self) -> Option<NaiveDateTime> {
63     None
64   }
65
66   async fn read_from_apub_id(
67     object_id: Url,
68     context: &LemmyContext,
69   ) -> Result<Option<Self>, LemmyError> {
70     Ok(
71       blocking(context.pool(), move |conn| {
72         Post::read_from_apub_id(conn, object_id)
73       })
74       .await??
75       .map(Into::into),
76     )
77   }
78
79   async fn delete(self, context: &LemmyContext) -> Result<(), LemmyError> {
80     if !self.deleted {
81       blocking(context.pool(), move |conn| {
82         Post::update_deleted(conn, self.id, true)
83       })
84       .await??;
85     }
86     Ok(())
87   }
88
89   // Turn a Lemmy post into an ActivityPub page that can be sent out over the network.
90   async fn into_apub(self, context: &LemmyContext) -> Result<Page, LemmyError> {
91     let creator_id = self.creator_id;
92     let creator = blocking(context.pool(), move |conn| Person::read(conn, creator_id)).await??;
93     let community_id = self.community_id;
94     let community = blocking(context.pool(), move |conn| {
95       Community::read(conn, community_id)
96     })
97     .await??;
98
99     let source = self.body.clone().map(|body| Source {
100       content: body,
101       media_type: MediaTypeMarkdown::Markdown,
102     });
103     let image = self.thumbnail_url.clone().map(|thumb| ImageObject {
104       kind: ImageType::Image,
105       url: thumb.into(),
106     });
107
108     let page = Page {
109       r#type: PageType::Page,
110       id: ObjectId::new(self.ap_id.clone()),
111       attributed_to: ObjectId::new(creator.actor_id),
112       to: vec![community.actor_id.into(), public()],
113       cc: vec![],
114       name: self.name.clone(),
115       content: self.body.as_ref().map(|b| markdown_to_html(b)),
116       media_type: Some(MediaTypeHtml::Html),
117       source,
118       url: self.url.clone().map(|u| u.into()),
119       image,
120       comments_enabled: Some(!self.locked),
121       sensitive: Some(self.nsfw),
122       stickied: Some(self.stickied),
123       published: Some(convert_datetime(self.published)),
124       updated: self.updated.map(convert_datetime),
125       unparsed: Default::default(),
126     };
127     Ok(page)
128   }
129
130   fn to_tombstone(&self) -> Result<Tombstone, LemmyError> {
131     Ok(Tombstone::new(self.ap_id.clone().into()))
132   }
133
134   async fn verify(
135     page: &Page,
136     expected_domain: &Url,
137     context: &LemmyContext,
138     request_counter: &mut i32,
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     };
145
146     let community = page.extract_community(context, request_counter).await?;
147     check_is_apub_id_valid(page.id.inner(), community.local, &context.settings())?;
148     verify_person_in_community(&page.attributed_to, &community, context, request_counter).await?;
149     check_slurs(&page.name, &context.settings().slur_regex())?;
150     verify_domains_match(page.attributed_to.inner(), page.id.inner())?;
151     verify_is_public(&page.to, &page.cc)?;
152     Ok(())
153   }
154
155   async fn from_apub(
156     page: Page,
157     context: &LemmyContext,
158     request_counter: &mut i32,
159   ) -> Result<ApubPost, LemmyError> {
160     let creator = page
161       .attributed_to
162       .dereference(context, request_counter)
163       .await?;
164     let community = page.extract_community(context, request_counter).await?;
165
166     let thumbnail_url: Option<Url> = page.image.map(|i| i.url);
167     let (metadata_res, pictrs_thumbnail) = if let Some(url) = &page.url {
168       fetch_site_data(context.client(), &context.settings(), Some(url)).await
169     } else {
170       (None, thumbnail_url)
171     };
172     let (embed_title, embed_description, embed_html) = metadata_res
173       .map(|u| (u.title, u.description, u.html))
174       .unwrap_or((None, None, None));
175
176     let body_slurs_removed = page
177       .source
178       .as_ref()
179       .map(|s| remove_slurs(&s.content, &context.settings().slur_regex()));
180     let form = PostForm {
181       name: page.name,
182       url: page.url.map(|u| u.into()),
183       body: body_slurs_removed,
184       creator_id: creator.id,
185       community_id: community.id,
186       removed: None,
187       locked: page.comments_enabled.map(|e| !e),
188       published: page.published.map(|u| u.naive_local()),
189       updated: page.updated.map(|u| u.naive_local()),
190       deleted: None,
191       nsfw: page.sensitive,
192       stickied: page.stickied,
193       embed_title,
194       embed_description,
195       embed_html,
196       thumbnail_url: pictrs_thumbnail.map(|u| u.into()),
197       ap_id: Some(page.id.into()),
198       local: Some(false),
199     };
200     let post = blocking(context.pool(), move |conn| Post::upsert(conn, &form)).await??;
201     Ok(post.into())
202   }
203 }
204
205 #[cfg(test)]
206 mod tests {
207   use super::*;
208   use crate::objects::{
209     community::tests::parse_lemmy_community,
210     person::tests::parse_lemmy_person,
211     post::ApubPost,
212     tests::{file_to_json_object, init_context},
213   };
214   use serial_test::serial;
215
216   #[actix_rt::test]
217   #[serial]
218   async fn test_parse_lemmy_post() {
219     let context = init_context();
220     let community = parse_lemmy_community(&context).await;
221     let person = parse_lemmy_person(&context).await;
222
223     let json = file_to_json_object("assets/lemmy/objects/page.json");
224     let url = Url::parse("https://enterprise.lemmy.ml/post/55143").unwrap();
225     let mut request_counter = 0;
226     ApubPost::verify(&json, &url, &context, &mut request_counter)
227       .await
228       .unwrap();
229     let post = ApubPost::from_apub(json, &context, &mut request_counter)
230       .await
231       .unwrap();
232
233     assert_eq!(post.ap_id, url.into());
234     assert_eq!(post.name, "Post title");
235     assert!(post.body.is_some());
236     assert_eq!(post.body.as_ref().unwrap().len(), 45);
237     assert!(!post.locked);
238     assert!(post.stickied);
239     assert_eq!(request_counter, 0);
240
241     Post::delete(&*context.pool().get().unwrap(), post.id).unwrap();
242     Person::delete(&*context.pool().get().unwrap(), person.id).unwrap();
243     Community::delete(&*context.pool().get().unwrap(), community.id).unwrap();
244   }
245 }