]> Untitled Git - lemmy.git/blobdiff - crates/apub/src/http/post.rs
Make functions work with both connection and pool (#3420)
[lemmy.git] / crates / apub / src / http / post.rs
index 52fe002a969e1151b20b23116d214126372ca03f..4da3dc14ffaa5207f1ce9027a3fd06058d9669d7 100644 (file)
@@ -1,14 +1,12 @@
 use crate::{
-  http::{create_apub_response, create_apub_tombstone_response},
+  http::{create_apub_response, create_apub_tombstone_response, err_object_not_local},
   objects::post::ApubPost,
 };
-use actix_web::{body::Body, web, HttpResponse};
-use diesel::result::Error::NotFound;
-use lemmy_api_common::blocking;
-use lemmy_apub_lib::traits::ApubObject;
+use activitypub_federation::{config::Data, traits::Object};
+use actix_web::{web, HttpResponse};
+use lemmy_api_common::context::LemmyContext;
 use lemmy_db_schema::{newtypes::PostId, source::post::Post, traits::Crud};
-use lemmy_utils::LemmyError;
-use lemmy_websocket::LemmyContext;
+use lemmy_utils::error::LemmyError;
 use serde::Deserialize;
 
 #[derive(Deserialize)]
@@ -17,21 +15,20 @@ pub(crate) struct PostQuery {
 }
 
 /// Return the ActivityPub json representation of a local post over HTTP.
+#[tracing::instrument(skip_all)]
 pub(crate) async fn get_apub_post(
   info: web::Path<PostQuery>,
-  context: web::Data<LemmyContext>,
-) -> Result<HttpResponse<Body>, LemmyError> {
+  context: Data<LemmyContext>,
+) -> Result<HttpResponse, LemmyError> {
   let id = PostId(info.post_id.parse::<i32>()?);
-  let post: ApubPost = blocking(context.pool(), move |conn| Post::read(conn, id))
-    .await??
-    .into();
+  let post: ApubPost = Post::read(&mut context.pool(), id).await?.into();
   if !post.local {
-    return Err(NotFound.into());
+    return Err(err_object_not_local());
   }
 
-  if !post.deleted {
-    Ok(create_apub_response(&post.into_apub(&context).await?))
+  if !post.deleted && !post.removed {
+    create_apub_response(&post.into_json(&context).await?)
   } else {
-    Ok(create_apub_tombstone_response(&post.to_tombstone()?))
+    create_apub_tombstone_response(post.ap_id.clone())
   }
 }