2023-07-28 14:39:38 +00:00
|
|
|
use actix_web::web::{Data, Json, Query};
|
2021-12-15 19:49:59 +00:00
|
|
|
use lemmy_api_common::{
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2022-04-19 19:05:08 +00:00
|
|
|
post::{GetPost, GetPostResponse},
|
2024-11-13 15:05:16 +00:00
|
|
|
utils::{check_private_instance, is_mod_or_admin_opt, update_read_comments},
|
2021-11-16 17:03:09 +00:00
|
|
|
};
|
2022-07-30 03:55:59 +00:00
|
|
|
use lemmy_db_schema::{
|
2024-11-13 15:05:16 +00:00
|
|
|
source::{
|
|
|
|
comment::Comment,
|
|
|
|
post::{Post, PostRead},
|
|
|
|
},
|
2023-03-01 03:46:15 +00:00
|
|
|
traits::Crud,
|
2022-07-30 03:55:59 +00:00
|
|
|
};
|
2023-09-21 10:42:28 +00:00
|
|
|
use lemmy_db_views::{
|
|
|
|
post_view::PostQuery,
|
2024-02-16 12:24:35 +00:00
|
|
|
structs::{LocalUserView, PostView, SiteView},
|
2023-09-21 10:42:28 +00:00
|
|
|
};
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_views_actor::structs::{CommunityModeratorView, CommunityView};
|
2024-05-27 10:55:44 +00:00
|
|
|
use lemmy_utils::error::{LemmyErrorType, LemmyResult};
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-07-28 14:39:38 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
pub async fn get_post(
|
|
|
|
data: Query<GetPost>,
|
|
|
|
context: Data<LemmyContext>,
|
2023-09-21 10:42:28 +00:00
|
|
|
local_user_view: Option<LocalUserView>,
|
2024-04-10 14:14:11 +00:00
|
|
|
) -> LemmyResult<Json<GetPostResponse>> {
|
2024-09-16 15:18:16 +00:00
|
|
|
let local_site = SiteView::read_local(&mut context.pool()).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2024-02-16 12:24:35 +00:00
|
|
|
check_private_instance(&local_user_view, &local_site.local_site)?;
|
2021-04-21 21:41:14 +00:00
|
|
|
|
2023-07-28 14:39:38 +00:00
|
|
|
let person_id = local_user_view.as_ref().map(|u| u.person.id);
|
2021-12-15 19:49:59 +00:00
|
|
|
|
2023-07-28 14:39:38 +00:00
|
|
|
// I'd prefer fetching the post_view by a comment join, but it adds a lot of boilerplate
|
|
|
|
let post_id = if let Some(id) = data.id {
|
|
|
|
id
|
|
|
|
} else if let Some(comment_id) = data.comment_id {
|
|
|
|
Comment::read(&mut context.pool(), comment_id)
|
2024-04-16 12:48:15 +00:00
|
|
|
.await?
|
2023-07-28 14:39:38 +00:00
|
|
|
.post_id
|
|
|
|
} else {
|
2024-09-23 15:26:50 +00:00
|
|
|
Err(LemmyErrorType::NotFound)?
|
2023-07-28 14:39:38 +00:00
|
|
|
};
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-07-28 14:39:38 +00:00
|
|
|
// Check to see if the person is a mod or admin, to show deleted / removed
|
2024-09-23 15:26:50 +00:00
|
|
|
let community_id = Post::read_xx(&mut context.pool(), post_id)
|
2024-04-16 12:48:15 +00:00
|
|
|
.await?
|
|
|
|
.community_id;
|
|
|
|
|
2023-07-28 14:39:38 +00:00
|
|
|
let is_mod_or_admin = is_mod_or_admin_opt(
|
|
|
|
&mut context.pool(),
|
|
|
|
local_user_view.as_ref(),
|
|
|
|
Some(community_id),
|
|
|
|
)
|
|
|
|
.await
|
|
|
|
.is_ok();
|
2022-07-30 03:55:59 +00:00
|
|
|
|
2024-07-07 16:28:42 +00:00
|
|
|
let local_user = local_user_view.map(|l| l.local_user);
|
|
|
|
let post_view = PostView::read(
|
|
|
|
&mut context.pool(),
|
|
|
|
post_id,
|
|
|
|
local_user.as_ref(),
|
|
|
|
is_mod_or_admin,
|
|
|
|
)
|
2024-09-23 15:26:50 +00:00
|
|
|
.await?;
|
2023-03-01 03:46:15 +00:00
|
|
|
|
2023-07-28 14:39:38 +00:00
|
|
|
let post_id = post_view.post.id;
|
|
|
|
if let Some(person_id) = person_id {
|
2024-11-13 15:05:16 +00:00
|
|
|
PostRead::mark_as_read(&mut context.pool(), post_id, person_id).await?;
|
2024-05-27 10:55:44 +00:00
|
|
|
|
|
|
|
update_read_comments(
|
|
|
|
person_id,
|
|
|
|
post_id,
|
|
|
|
post_view.counts.comments,
|
|
|
|
&mut context.pool(),
|
|
|
|
)
|
|
|
|
.await?;
|
2023-07-28 14:39:38 +00:00
|
|
|
}
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-07-28 14:39:38 +00:00
|
|
|
// Necessary for the sidebar subscribed
|
|
|
|
let community_view = CommunityView::read(
|
|
|
|
&mut context.pool(),
|
|
|
|
community_id,
|
2024-07-07 16:28:42 +00:00
|
|
|
local_user.as_ref(),
|
2023-08-11 09:13:14 +00:00
|
|
|
is_mod_or_admin,
|
2023-07-28 14:39:38 +00:00
|
|
|
)
|
2024-09-23 15:26:50 +00:00
|
|
|
.await?;
|
2021-04-24 22:26:50 +00:00
|
|
|
|
2023-07-28 14:39:38 +00:00
|
|
|
let moderators = CommunityModeratorView::for_community(&mut context.pool(), community_id).await?;
|
2021-10-27 13:34:18 +00:00
|
|
|
|
2023-07-28 14:39:38 +00:00
|
|
|
// Fetch the cross_posts
|
|
|
|
let cross_posts = if let Some(url) = &post_view.post.url {
|
|
|
|
let mut x_posts = PostQuery {
|
2024-09-23 15:27:06 +00:00
|
|
|
url_only: Some(true),
|
|
|
|
search_term: Some(url.inner().as_str().into()),
|
2024-07-07 16:28:42 +00:00
|
|
|
local_user: local_user.as_ref(),
|
2023-07-28 14:39:38 +00:00
|
|
|
..Default::default()
|
|
|
|
}
|
2024-02-16 12:24:35 +00:00
|
|
|
.list(&local_site.site, &mut context.pool())
|
2023-07-28 14:39:38 +00:00
|
|
|
.await?;
|
2023-06-21 08:56:44 +00:00
|
|
|
|
2023-07-28 14:39:38 +00:00
|
|
|
// Don't return this post as one of the cross_posts
|
|
|
|
x_posts.retain(|x| x.post.id != post_id);
|
|
|
|
x_posts
|
|
|
|
} else {
|
|
|
|
Vec::new()
|
|
|
|
};
|
2023-04-19 20:16:19 +00:00
|
|
|
|
2023-07-28 14:39:38 +00:00
|
|
|
// Return the jwt
|
|
|
|
Ok(Json(GetPostResponse {
|
|
|
|
post_view,
|
|
|
|
community_view,
|
|
|
|
moderators,
|
|
|
|
cross_posts,
|
|
|
|
}))
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|