]> Untitled Git - lemmy.git/blobdiff - crates/apub/src/lib.rs
Remove federation settings, rely on sensible defaults instead (#2574)
[lemmy.git] / crates / apub / src / lib.rs
index 2f014e0dd1730dfa180a68a2a685f823aaca2e3a..f5d8d3565d84d74a8d1bd2dc005bebbb130467d7 100644 (file)
@@ -2,15 +2,21 @@ use crate::fetcher::post_or_comment::PostOrComment;
 use activitypub_federation::{
   core::signatures::PublicKey,
   traits::{Actor, ApubObject},
-  InstanceSettingsBuilder,
+  InstanceSettings,
   LocalInstance,
+  UrlVerifier,
 };
 use anyhow::Context;
-use lemmy_api_common::utils::blocking;
-use lemmy_db_schema::{newtypes::DbUrl, source::activity::Activity, utils::DbPool};
+use async_trait::async_trait;
+use lemmy_db_schema::{
+  newtypes::DbUrl,
+  source::{activity::Activity, instance::Instance, local_site::LocalSite},
+  utils::DbPool,
+};
 use lemmy_utils::{error::LemmyError, location_info, settings::structs::Settings};
 use lemmy_websocket::LemmyContext;
-use once_cell::sync::{Lazy, OnceCell};
+use once_cell::sync::Lazy;
+use tokio::sync::OnceCell;
 use url::{ParseError, Url};
 
 pub mod activities;
@@ -22,27 +28,57 @@ pub(crate) mod mentions;
 pub mod objects;
 pub mod protocol;
 
+const FEDERATION_HTTP_FETCH_LIMIT: i32 = 25;
+
 static CONTEXT: Lazy<Vec<serde_json::Value>> = Lazy::new(|| {
   serde_json::from_str(include_str!("../assets/lemmy/context.json")).expect("parse context")
 });
 
 // TODO: store this in context? but its only used in this crate, no need to expose it elsewhere
-fn local_instance(context: &LemmyContext) -> &'static LocalInstance {
-  static LOCAL_INSTANCE: OnceCell<LocalInstance> = OnceCell::new();
-  LOCAL_INSTANCE.get_or_init(|| {
-    let settings = InstanceSettingsBuilder::default()
-      .http_fetch_retry_limit(context.settings().federation.http_fetch_retry_limit)
-      .worker_count(context.settings().federation.worker_count)
-      .debug(context.settings().federation.debug)
-      .verify_url_function(|url| check_apub_id_valid(url, &Settings::get()))
-      .build()
-      .expect("configure federation");
-    LocalInstance::new(
-      context.settings().hostname,
-      context.client().clone(),
-      settings,
-    )
-  })
+// TODO this singleton needs to be redone to account for live data.
+async fn local_instance(context: &LemmyContext) -> &'static LocalInstance {
+  static LOCAL_INSTANCE: OnceCell<LocalInstance> = OnceCell::const_new();
+  LOCAL_INSTANCE
+    .get_or_init(|| async {
+      // Local site may be missing
+      let local_site = &LocalSite::read(context.pool()).await;
+      let worker_count = local_site
+        .as_ref()
+        .map(|l| l.federation_worker_count)
+        .unwrap_or(64) as u64;
+      let federation_debug = local_site
+        .as_ref()
+        .map(|l| l.federation_debug)
+        .unwrap_or(true);
+
+      let settings = InstanceSettings::builder()
+        .http_fetch_retry_limit(FEDERATION_HTTP_FETCH_LIMIT)
+        .worker_count(worker_count)
+        .debug(federation_debug)
+        .http_signature_compat(true)
+        .url_verifier(Box::new(VerifyUrlData(context.clone())))
+        .build()
+        .expect("configure federation");
+      LocalInstance::new(
+        context.settings().hostname.clone(),
+        context.client().clone(),
+        settings,
+      )
+    })
+    .await
+}
+
+#[derive(Clone)]
+struct VerifyUrlData(LemmyContext);
+
+#[async_trait]
+impl UrlVerifier for VerifyUrlData {
+  async fn verify(&self, url: &Url) -> Result<(), &'static str> {
+    let local_site_data = fetch_local_site_data(self.0.pool())
+      .await
+      .expect("read local site data");
+    check_apub_id_valid(url, &local_site_data, self.0.settings())
+  }
 }
 
 /// Checks if the ID is allowed for sending or receiving.
@@ -55,8 +91,12 @@ fn local_instance(context: &LemmyContext) -> &'static LocalInstance {
 ///
 /// `use_strict_allowlist` should be true only when parsing a remote community, or when parsing a
 /// post/comment in a local community.
-#[tracing::instrument(skip(settings))]
-fn check_apub_id_valid(apub_id: &Url, settings: &Settings) -> Result<(), &'static str> {
+#[tracing::instrument(skip(settings, local_site_data))]
+fn check_apub_id_valid(
+  apub_id: &Url,
+  local_site_data: &LocalSiteData,
+  settings: &Settings,
+) -> Result<(), &'static str> {
   let domain = apub_id.domain().expect("apud id has domain").to_string();
   let local_instance = settings
     .get_hostname_without_port()
@@ -65,7 +105,12 @@ fn check_apub_id_valid(apub_id: &Url, settings: &Settings) -> Result<(), &'stati
     return Ok(());
   }
 
-  if !settings.federation.enabled {
+  if !local_site_data
+    .local_site
+    .as_ref()
+    .map(|l| l.federation_enabled)
+    .unwrap_or(true)
+  {
     return Err("Federation disabled");
   }
 
@@ -73,13 +118,13 @@ fn check_apub_id_valid(apub_id: &Url, settings: &Settings) -> Result<(), &'stati
     return Err("Invalid protocol scheme");
   }
 
-  if let Some(blocked) = settings.to_owned().federation.blocked_instances {
+  if let Some(blocked) = local_site_data.blocked_instances.as_ref() {
     if blocked.contains(&domain) {
       return Err("Domain is blocked");
     }
   }
 
-  if let Some(allowed) = settings.to_owned().federation.allowed_instances {
+  if let Some(allowed) = local_site_data.allowed_instances.as_ref() {
     if !allowed.contains(&domain) {
       return Err("Domain is not in allowlist");
     }
@@ -88,13 +133,40 @@ fn check_apub_id_valid(apub_id: &Url, settings: &Settings) -> Result<(), &'stati
   Ok(())
 }
 
-#[tracing::instrument(skip(settings))]
+#[derive(Clone)]
+pub(crate) struct LocalSiteData {
+  local_site: Option<LocalSite>,
+  allowed_instances: Option<Vec<String>>,
+  blocked_instances: Option<Vec<String>>,
+}
+
+pub(crate) async fn fetch_local_site_data(
+  pool: &DbPool,
+) -> Result<LocalSiteData, diesel::result::Error> {
+  // LocalSite may be missing
+  let local_site = LocalSite::read(pool).await.ok();
+  let allowed = Instance::allowlist(pool).await?;
+  let blocked = Instance::blocklist(pool).await?;
+
+  // These can return empty vectors, so convert them to options
+  let allowed_instances = (!allowed.is_empty()).then_some(allowed);
+  let blocked_instances = (!blocked.is_empty()).then_some(blocked);
+
+  Ok(LocalSiteData {
+    local_site,
+    allowed_instances,
+    blocked_instances,
+  })
+}
+
+#[tracing::instrument(skip(settings, local_site_data))]
 pub(crate) fn check_apub_id_valid_with_strictness(
   apub_id: &Url,
   is_strict: bool,
+  local_site_data: &LocalSiteData,
   settings: &Settings,
 ) -> Result<(), LemmyError> {
-  check_apub_id_valid(apub_id, settings).map_err(LemmyError::from_message)?;
+  check_apub_id_valid(apub_id, local_site_data, settings).map_err(LemmyError::from_message)?;
   let domain = apub_id.domain().expect("apud id has domain").to_string();
   let local_instance = settings
     .get_hostname_without_port()
@@ -103,15 +175,15 @@ pub(crate) fn check_apub_id_valid_with_strictness(
     return Ok(());
   }
 
-  if let Some(mut allowed) = settings.to_owned().federation.allowed_instances {
-    // Only check allowlist if this is a community, or strict allowlist is enabled.
-    let strict_allowlist = settings.to_owned().federation.strict_allowlist;
-    if is_strict || strict_allowlist {
+  if let Some(allowed) = local_site_data.allowed_instances.as_ref() {
+    // Only check allowlist if this is a community
+    if is_strict {
       // need to allow this explicitly because apub receive might contain objects from our local
       // instance.
-      allowed.push(local_instance);
+      let mut allowed_and_local = allowed.clone();
+      allowed_and_local.push(local_instance);
 
-      if !allowed.contains(&domain) {
+      if !allowed_and_local.contains(&domain) {
         return Err(LemmyError::from_message(
           "Federation forbidden by strict allowlist",
         ));
@@ -169,7 +241,7 @@ pub fn generate_shared_inbox_url(actor_id: &DbUrl) -> Result<DbUrl, LemmyError>
     if let Some(port) = actor_id.port() {
       format!(":{}", port)
     } else {
-      "".to_string()
+      String::new()
     },
   );
   Ok(Url::parse(&url)?.into())
@@ -193,13 +265,8 @@ async fn insert_activity(
   sensitive: bool,
   pool: &DbPool,
 ) -> Result<bool, LemmyError> {
-  let ap_id = ap_id.to_owned().into();
-  Ok(
-    blocking(pool, move |conn| {
-      Activity::insert(conn, ap_id, activity, local, sensitive)
-    })
-    .await??,
-  )
+  let ap_id = ap_id.clone().into();
+  Ok(Activity::insert(pool, ap_id, activity, local, Some(sensitive)).await?)
 }
 
 /// Common methods provided by ActivityPub actors (community and person). Not all methods are