]> 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 471a7564f5dfc6f5a8b628d26f298085b414ce76..f5d8d3565d84d74a8d1bd2dc005bebbb130467d7 100644 (file)
@@ -4,10 +4,10 @@ use activitypub_federation::{
   traits::{Actor, ApubObject},
   InstanceSettings,
   LocalInstance,
+  UrlVerifier,
 };
 use anyhow::Context;
-use diesel::PgConnection;
-use lemmy_api_common::utils::blocking;
+use async_trait::async_trait;
 use lemmy_db_schema::{
   newtypes::DbUrl,
   source::{activity::Activity, instance::Instance, local_site::LocalSite},
@@ -15,7 +15,8 @@ use lemmy_db_schema::{
 };
 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;
@@ -27,49 +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
 // TODO this singleton needs to be redone to account for live data.
-fn local_instance(context: &LemmyContext) -> &'static LocalInstance {
-  static LOCAL_INSTANCE: OnceCell<LocalInstance> = OnceCell::new();
-  LOCAL_INSTANCE.get_or_init(|| {
-    let conn = &mut context
-      .pool()
-      .get()
-      .expect("getting connection for LOCAL_INSTANCE init");
-    // Local site may be missing
-    let local_site = &LocalSite::read(conn);
-    let worker_count = local_site
-      .as_ref()
-      .map(|l| l.federation_worker_count)
-      .unwrap_or(64) as u64;
-    let http_fetch_retry_limit = local_site
-      .as_ref()
-      .map(|l| l.federation_http_fetch_retry_limit)
-      .unwrap_or(25);
-    let federation_debug = local_site
-      .as_ref()
-      .map(|l| l.federation_debug)
-      .unwrap_or(true);
-
-    let settings = InstanceSettings::builder()
-      .http_fetch_retry_limit(http_fetch_retry_limit)
-      .worker_count(worker_count)
-      .debug(federation_debug)
-      // TODO No idea why, but you can't pass context.settings() to the verify_url_function closure
-      // without the value getting captured.
-      .http_signature_compat(true)
-      .build()
-      .expect("configure federation");
-    LocalInstance::new(
-      context.settings().hostname.to_owned(),
-      context.client().clone(),
-      settings,
-    )
-  })
+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.
@@ -83,7 +92,6 @@ 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, local_site_data))]
-// TODO This function needs to be called by incoming activities
 fn check_apub_id_valid(
   apub_id: &Url,
   local_site_data: &LocalSiteData,
@@ -132,17 +140,17 @@ pub(crate) struct LocalSiteData {
   blocked_instances: Option<Vec<String>>,
 }
 
-pub(crate) fn fetch_local_site_data(
-  conn: &mut PgConnection,
+pub(crate) async fn fetch_local_site_data(
+  pool: &DbPool,
 ) -> Result<LocalSiteData, diesel::result::Error> {
   // LocalSite may be missing
-  let local_site = LocalSite::read(conn).ok();
-  let allowed = Instance::allowlist(conn)?;
-  let blocked = Instance::blocklist(conn)?;
+  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(|| allowed);
-  let blocked_instances = (!blocked.is_empty()).then(|| blocked);
+  let allowed_instances = (!allowed.is_empty()).then_some(allowed);
+  let blocked_instances = (!blocked.is_empty()).then_some(blocked);
 
   Ok(LocalSiteData {
     local_site,
@@ -168,16 +176,11 @@ pub(crate) fn check_apub_id_valid_with_strictness(
   }
 
   if let Some(allowed) = local_site_data.allowed_instances.as_ref() {
-    // Only check allowlist if this is a community, or strict allowlist is enabled.
-    let strict_allowlist = local_site_data
-      .local_site
-      .as_ref()
-      .map(|l| l.federation_strict_allowlist)
-      .unwrap_or(true);
-    if is_strict || strict_allowlist {
+    // 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.
-      let mut allowed_and_local = allowed.to_owned();
+      let mut allowed_and_local = allowed.clone();
       allowed_and_local.push(local_instance);
 
       if !allowed_and_local.contains(&domain) {
@@ -238,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())
@@ -262,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, Some(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