]> Untitled Git - lemmy.git/blob - crates/apub/src/protocol/objects/group.rs
410c9e87f6148cc89d57f9e5c0affd990816a37f
[lemmy.git] / crates / apub / src / protocol / objects / group.rs
1 use crate::{
2   check_is_apub_id_valid,
3   collections::{
4     community_moderators::ApubCommunityModerators,
5     community_outbox::ApubCommunityOutbox,
6   },
7   objects::{
8     community::ApubCommunity,
9     read_from_string_or_source_opt,
10     verify_image_domain_matches,
11   },
12   protocol::{objects::Endpoints, ImageObject, Source},
13 };
14 use activitystreams_kinds::actor::GroupType;
15 use chrono::{DateTime, FixedOffset};
16 use lemmy_apub_lib::{object_id::ObjectId, signatures::PublicKey, verify::verify_domains_match};
17 use lemmy_db_schema::{naive_now, source::community::CommunityForm};
18 use lemmy_utils::{
19   utils::{check_slurs, check_slurs_opt},
20   LemmyError,
21 };
22 use lemmy_websocket::LemmyContext;
23 use serde::{Deserialize, Serialize};
24 use serde_with::skip_serializing_none;
25 use url::Url;
26
27 #[skip_serializing_none]
28 #[derive(Clone, Debug, Deserialize, Serialize)]
29 #[serde(rename_all = "camelCase")]
30 pub struct Group {
31   #[serde(rename = "type")]
32   pub(crate) kind: GroupType,
33   pub(crate) id: ObjectId<ApubCommunity>,
34   /// username, set at account creation and usually fixed after that
35   pub(crate) preferred_username: String,
36   pub(crate) inbox: Url,
37   pub(crate) followers: Url,
38   pub(crate) public_key: PublicKey,
39
40   /// title
41   pub(crate) name: Option<String>,
42   pub(crate) summary: Option<String>,
43   #[serde(default)]
44   #[serde(deserialize_with = "crate::deserialize_skip_error")]
45   pub(crate) source: Option<Source>,
46   pub(crate) icon: Option<ImageObject>,
47   /// banner
48   pub(crate) image: Option<ImageObject>,
49   // lemmy extension
50   pub(crate) sensitive: Option<bool>,
51   // lemmy extension
52   pub(crate) moderators: Option<ObjectId<ApubCommunityModerators>>,
53   pub(crate) outbox: ObjectId<ApubCommunityOutbox>,
54   pub(crate) endpoints: Option<Endpoints>,
55   pub(crate) published: Option<DateTime<FixedOffset>>,
56   pub(crate) updated: Option<DateTime<FixedOffset>>,
57 }
58
59 impl Group {
60   pub(crate) async fn verify(
61     &self,
62     expected_domain: &Url,
63     context: &LemmyContext,
64   ) -> Result<(), LemmyError> {
65     check_is_apub_id_valid(self.id.inner(), true, &context.settings())?;
66     verify_domains_match(expected_domain, self.id.inner())?;
67     verify_image_domain_matches(expected_domain, &self.icon)?;
68     verify_image_domain_matches(expected_domain, &self.image)?;
69
70     let slur_regex = &context.settings().slur_regex();
71     check_slurs(&self.preferred_username, slur_regex)?;
72     check_slurs_opt(&self.name, slur_regex)?;
73     let description = read_from_string_or_source_opt(&self.summary, &self.source);
74     check_slurs_opt(&description, slur_regex)?;
75     Ok(())
76   }
77
78   pub(crate) fn into_form(self) -> CommunityForm {
79     CommunityForm {
80       name: self.preferred_username.clone(),
81       title: self.name.unwrap_or(self.preferred_username),
82       description: read_from_string_or_source_opt(&self.summary, &self.source),
83       removed: None,
84       published: self.published.map(|u| u.naive_local()),
85       updated: self.updated.map(|u| u.naive_local()),
86       deleted: None,
87       nsfw: Some(self.sensitive.unwrap_or(false)),
88       actor_id: Some(self.id.into()),
89       local: Some(false),
90       private_key: None,
91       hidden: Some(false),
92       public_key: self.public_key.public_key_pem,
93       last_refreshed_at: Some(naive_now()),
94       icon: Some(self.icon.map(|i| i.url.into())),
95       banner: Some(self.image.map(|i| i.url.into())),
96       followers_url: Some(self.followers.into()),
97       inbox_url: Some(self.inbox.into()),
98       shared_inbox_url: Some(self.endpoints.map(|e| e.shared_inbox.into())),
99     }
100   }
101 }