]> Untitled Git - lemmy.git/blob - crates/apub/src/protocol/objects/page.rs
0cd004799b2701a689ec0bcbae6c494d558bc1ac
[lemmy.git] / crates / apub / src / protocol / objects / page.rs
1 use crate::{
2   activities::{verify_is_public, verify_person_in_community},
3   fetcher::object_id::ObjectId,
4   objects::{community::ApubCommunity, person::ApubPerson, post::ApubPost},
5   protocol::{ImageObject, Source},
6 };
7 use activitystreams::{object::kind::PageType, unparsed::Unparsed};
8 use anyhow::anyhow;
9 use chrono::{DateTime, FixedOffset};
10 use lemmy_apub_lib::{values::MediaTypeHtml, verify::verify_domains_match};
11 use lemmy_utils::{utils::check_slurs, LemmyError};
12 use lemmy_websocket::LemmyContext;
13 use serde::{Deserialize, Serialize};
14 use serde_with::skip_serializing_none;
15 use url::Url;
16
17 #[skip_serializing_none]
18 #[derive(Clone, Debug, Deserialize, Serialize)]
19 #[serde(rename_all = "camelCase")]
20 pub struct Page {
21   pub(crate) r#type: PageType,
22   pub(crate) id: ObjectId<ApubPost>,
23   pub(crate) attributed_to: ObjectId<ApubPerson>,
24   pub(crate) to: Vec<Url>,
25   pub(crate) name: String,
26   pub(crate) content: Option<String>,
27   pub(crate) media_type: Option<MediaTypeHtml>,
28   pub(crate) source: Option<Source>,
29   pub(crate) url: Option<Url>,
30   pub(crate) image: Option<ImageObject>,
31   pub(crate) comments_enabled: Option<bool>,
32   pub(crate) sensitive: Option<bool>,
33   pub(crate) stickied: Option<bool>,
34   pub(crate) published: Option<DateTime<FixedOffset>>,
35   pub(crate) updated: Option<DateTime<FixedOffset>>,
36   #[serde(flatten)]
37   pub(crate) unparsed: Unparsed,
38 }
39
40 impl Page {
41   /// Only mods can change the post's stickied/locked status. So if either of these is changed from
42   /// the current value, it is a mod action and needs to be verified as such.
43   ///
44   /// Both stickied and locked need to be false on a newly created post (verified in [[CreatePost]].
45   pub(crate) async fn is_mod_action(&self, context: &LemmyContext) -> Result<bool, LemmyError> {
46     let old_post = ObjectId::<ApubPost>::new(self.id.clone())
47       .dereference_local(context)
48       .await;
49
50     let is_mod_action = if let Ok(old_post) = old_post {
51       self.stickied != Some(old_post.stickied) || self.comments_enabled != Some(!old_post.locked)
52     } else {
53       false
54     };
55     Ok(is_mod_action)
56   }
57
58   pub(crate) async fn verify(
59     &self,
60     context: &LemmyContext,
61     request_counter: &mut i32,
62   ) -> Result<(), LemmyError> {
63     let community = self.extract_community(context, request_counter).await?;
64
65     check_slurs(&self.name, &context.settings().slur_regex())?;
66     verify_domains_match(self.attributed_to.inner(), self.id.inner())?;
67     verify_person_in_community(&self.attributed_to, &community, context, request_counter).await?;
68     verify_is_public(&self.to.clone())?;
69     Ok(())
70   }
71
72   pub(crate) async fn extract_community(
73     &self,
74     context: &LemmyContext,
75     request_counter: &mut i32,
76   ) -> Result<ApubCommunity, LemmyError> {
77     let mut to_iter = self.to.iter();
78     loop {
79       if let Some(cid) = to_iter.next() {
80         let cid = ObjectId::new(cid.clone());
81         if let Ok(c) = cid.dereference(context, request_counter).await {
82           break Ok(c);
83         }
84       } else {
85         return Err(anyhow!("No community found in cc").into());
86       }
87     }
88   }
89 }