]> Untitled Git - lemmy.git/blob - crates/apub/src/http/post.rs
Merge pull request #1877 from LemmyNet/refactor-apub-2
[lemmy.git] / crates / apub / src / http / post.rs
1 use crate::{
2   http::{create_apub_response, create_apub_tombstone_response},
3   objects::post::ApubPost,
4 };
5 use actix_web::{body::Body, web, HttpResponse};
6 use diesel::result::Error::NotFound;
7 use lemmy_api_common::blocking;
8 use lemmy_apub_lib::traits::ApubObject;
9 use lemmy_db_schema::{newtypes::PostId, source::post::Post, traits::Crud};
10 use lemmy_utils::LemmyError;
11 use lemmy_websocket::LemmyContext;
12 use serde::Deserialize;
13
14 #[derive(Deserialize)]
15 pub(crate) struct PostQuery {
16   post_id: String,
17 }
18
19 /// Return the ActivityPub json representation of a local post over HTTP.
20 pub(crate) async fn get_apub_post(
21   info: web::Path<PostQuery>,
22   context: web::Data<LemmyContext>,
23 ) -> Result<HttpResponse<Body>, LemmyError> {
24   let id = PostId(info.post_id.parse::<i32>()?);
25   let post: ApubPost = blocking(context.pool(), move |conn| Post::read(conn, id))
26     .await??
27     .into();
28   if !post.local {
29     return Err(NotFound.into());
30   }
31
32   if !post.deleted {
33     Ok(create_apub_response(&post.into_apub(&context).await?))
34   } else {
35     Ok(create_apub_tombstone_response(&post.to_tombstone()?))
36   }
37 }