]> Untitled Git - lemmy.git/blobdiff - crates/apub/src/protocol/objects/group.rs
Moving settings to Database. (#2492)
[lemmy.git] / crates / apub / src / protocol / objects / group.rs
index 57d0ae157a6daff0a2ddaf197eeedd97479a25de..5abfa2b28f582e22efeb1466765f13967430c633 100644 (file)
@@ -1,23 +1,33 @@
 use crate::{
-  check_is_apub_id_valid,
+  check_apub_id_valid_with_strictness,
   collections::{
     community_moderators::ApubCommunityModerators,
     community_outbox::ApubCommunityOutbox,
   },
-  objects::{
-    community::ApubCommunity,
-    read_from_string_or_source_opt,
-    verify_image_domain_matches,
+  fetch_local_site_data,
+  objects::{community::ApubCommunity, read_from_string_or_source_opt},
+  protocol::{
+    objects::{Endpoints, LanguageTag},
+    ImageObject,
+    Source,
   },
-  protocol::{objects::Endpoints, ImageObject, Source},
+};
+use activitypub_federation::{
+  core::{object_id::ObjectId, signatures::PublicKey},
+  deser::helpers::deserialize_skip_error,
+  utils::verify_domains_match,
 };
 use activitystreams_kinds::actor::GroupType;
 use chrono::{DateTime, FixedOffset};
-use lemmy_apub_lib::{object_id::ObjectId, signatures::PublicKey, verify::verify_domains_match};
-use lemmy_db_schema::{naive_now, source::community::CommunityForm};
+use lemmy_api_common::utils::{blocking, local_site_opt_to_slur_regex};
+use lemmy_db_schema::{
+  newtypes::InstanceId,
+  source::community::{CommunityInsertForm, CommunityUpdateForm},
+  utils::naive_now,
+};
 use lemmy_utils::{
+  error::LemmyError,
   utils::{check_slurs, check_slurs_opt},
-  LemmyError,
 };
 use lemmy_websocket::LemmyContext;
 use serde::{Deserialize, Serialize};
@@ -40,8 +50,7 @@ pub struct Group {
   /// title
   pub(crate) name: Option<String>,
   pub(crate) summary: Option<String>,
-  #[serde(default)]
-  #[serde(deserialize_with = "crate::deserialize_skip_error")]
+  #[serde(deserialize_with = "deserialize_skip_error", default)]
   pub(crate) source: Option<Source>,
   pub(crate) icon: Option<ImageObject>,
   /// banner
@@ -54,6 +63,8 @@ pub struct Group {
   pub(crate) posting_restricted_to_mods: Option<bool>,
   pub(crate) outbox: ObjectId<ApubCommunityOutbox>,
   pub(crate) endpoints: Option<Endpoints>,
+  #[serde(default)]
+  pub(crate) language: Vec<LanguageTag>,
   pub(crate) published: Option<DateTime<FixedOffset>>,
   pub(crate) updated: Option<DateTime<FixedOffset>>,
 }
@@ -64,24 +75,30 @@ impl Group {
     expected_domain: &Url,
     context: &LemmyContext,
   ) -> Result<(), LemmyError> {
-    check_is_apub_id_valid(self.id.inner(), true, &context.settings())?;
+    let local_site_data = blocking(context.pool(), fetch_local_site_data).await??;
+
+    check_apub_id_valid_with_strictness(
+      self.id.inner(),
+      true,
+      &local_site_data,
+      context.settings(),
+    )?;
     verify_domains_match(expected_domain, self.id.inner())?;
-    verify_image_domain_matches(expected_domain, &self.icon)?;
-    verify_image_domain_matches(expected_domain, &self.image)?;
 
-    let slur_regex = &context.settings().slur_regex();
+    let slur_regex = &local_site_opt_to_slur_regex(&local_site_data.local_site);
+
     check_slurs(&self.preferred_username, slur_regex)?;
     check_slurs_opt(&self.name, slur_regex)?;
-    let description = read_from_string_or_source_opt(&self.summary, &self.source);
+    let description = read_from_string_or_source_opt(&self.summary, &None, &self.source);
     check_slurs_opt(&description, slur_regex)?;
     Ok(())
   }
 
-  pub(crate) fn into_form(self) -> CommunityForm {
-    CommunityForm {
+  pub(crate) fn into_insert_form(self, instance_id: InstanceId) -> CommunityInsertForm {
+    CommunityInsertForm {
       name: self.preferred_username.clone(),
       title: self.name.unwrap_or(self.preferred_username),
-      description: read_from_string_or_source_opt(&self.summary, &self.source),
+      description: read_from_string_or_source_opt(&self.summary, &None, &self.source),
       removed: None,
       published: self.published.map(|u| u.naive_local()),
       updated: self.updated.map(|u| u.naive_local()),
@@ -93,6 +110,35 @@ impl Group {
       hidden: Some(false),
       public_key: self.public_key.public_key_pem,
       last_refreshed_at: Some(naive_now()),
+      icon: self.icon.map(|i| i.url.into()),
+      banner: self.image.map(|i| i.url.into()),
+      followers_url: Some(self.followers.into()),
+      inbox_url: Some(self.inbox.into()),
+      shared_inbox_url: self.endpoints.map(|e| e.shared_inbox.into()),
+      posting_restricted_to_mods: self.posting_restricted_to_mods,
+      instance_id,
+    }
+  }
+
+  pub(crate) fn into_update_form(self) -> CommunityUpdateForm {
+    CommunityUpdateForm {
+      title: Some(self.name.unwrap_or(self.preferred_username)),
+      description: Some(read_from_string_or_source_opt(
+        &self.summary,
+        &None,
+        &self.source,
+      )),
+      removed: None,
+      published: self.published.map(|u| u.naive_local()),
+      updated: Some(self.updated.map(|u| u.naive_local())),
+      deleted: None,
+      nsfw: Some(self.sensitive.unwrap_or(false)),
+      actor_id: Some(self.id.into()),
+      local: Some(false),
+      private_key: None,
+      hidden: Some(false),
+      public_key: Some(self.public_key.public_key_pem),
+      last_refreshed_at: Some(naive_now()),
       icon: Some(self.icon.map(|i| i.url.into())),
       banner: Some(self.image.map(|i| i.url.into())),
       followers_url: Some(self.followers.into()),