2021-03-25 19:19:40 +00:00
|
|
|
use crate::PerformCrud;
|
|
|
|
use actix_web::web::Data;
|
2021-04-26 14:44:19 +00:00
|
|
|
use lemmy_api_common::{blocking, get_local_user_view_from_jwt_opt, mark_post_as_read, post::*};
|
2021-07-20 04:29:50 +00:00
|
|
|
use lemmy_apub::{build_actor_id_from_shortname, EndpointType};
|
2021-10-16 13:33:38 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
from_opt_str_to_opt_enum,
|
|
|
|
traits::DeleteableOrRemoveable,
|
|
|
|
ListingType,
|
|
|
|
SortType,
|
|
|
|
};
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_db_views::{
|
|
|
|
comment_view::CommentQueryBuilder,
|
|
|
|
post_view::{PostQueryBuilder, PostView},
|
|
|
|
};
|
|
|
|
use lemmy_db_views_actor::{
|
|
|
|
community_moderator_view::CommunityModeratorView,
|
|
|
|
community_view::CommunityView,
|
|
|
|
};
|
|
|
|
use lemmy_utils::{ApiError, ConnectionId, LemmyError};
|
|
|
|
use lemmy_websocket::{messages::GetPostUsersOnline, LemmyContext};
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl PerformCrud for GetPost {
|
|
|
|
type Response = GetPostResponse;
|
|
|
|
|
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
_websocket_id: Option<ConnectionId>,
|
|
|
|
) -> Result<GetPostResponse, LemmyError> {
|
2021-07-05 16:07:26 +00:00
|
|
|
let data: &GetPost = self;
|
2021-09-22 15:57:09 +00:00
|
|
|
let local_user_view =
|
|
|
|
get_local_user_view_from_jwt_opt(&data.auth, context.pool(), context.secret()).await?;
|
2021-04-21 21:41:14 +00:00
|
|
|
|
2021-04-26 14:44:19 +00:00
|
|
|
let show_bot_accounts = local_user_view
|
|
|
|
.as_ref()
|
|
|
|
.map(|t| t.local_user.show_bot_accounts);
|
2021-03-25 19:19:40 +00:00
|
|
|
let person_id = local_user_view.map(|u| u.person.id);
|
|
|
|
|
|
|
|
let id = data.id;
|
2021-07-30 18:44:15 +00:00
|
|
|
let mut post_view = blocking(context.pool(), move |conn| {
|
2021-03-25 19:19:40 +00:00
|
|
|
PostView::read(conn, id, person_id)
|
|
|
|
})
|
|
|
|
.await?
|
2021-10-13 19:50:21 +00:00
|
|
|
.map_err(|e| ApiError::err("couldnt_find_post", e))?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2021-07-30 18:44:15 +00:00
|
|
|
// Blank out deleted info
|
|
|
|
if post_view.post.deleted || post_view.post.removed {
|
|
|
|
post_view.post = post_view.post.blank_out_deleted_or_removed_info();
|
|
|
|
}
|
|
|
|
|
2021-04-24 22:26:50 +00:00
|
|
|
// Mark the post as read
|
|
|
|
if let Some(person_id) = person_id {
|
|
|
|
mark_post_as_read(person_id, id, context.pool()).await?;
|
|
|
|
}
|
|
|
|
|
2021-03-25 19:19:40 +00:00
|
|
|
let id = data.id;
|
2021-07-30 18:44:15 +00:00
|
|
|
let mut comments = blocking(context.pool(), move |conn| {
|
2021-03-25 19:19:40 +00:00
|
|
|
CommentQueryBuilder::create(conn)
|
|
|
|
.my_person_id(person_id)
|
2021-04-21 21:41:14 +00:00
|
|
|
.show_bot_accounts(show_bot_accounts)
|
2021-03-25 19:19:40 +00:00
|
|
|
.post_id(id)
|
|
|
|
.limit(9999)
|
|
|
|
.list()
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
2021-07-30 18:44:15 +00:00
|
|
|
// Blank out deleted or removed info
|
|
|
|
for cv in comments
|
|
|
|
.iter_mut()
|
|
|
|
.filter(|cv| cv.comment.deleted || cv.comment.removed)
|
|
|
|
{
|
|
|
|
cv.comment = cv.to_owned().comment.blank_out_deleted_or_removed_info();
|
|
|
|
}
|
|
|
|
|
2021-03-25 19:19:40 +00:00
|
|
|
let community_id = post_view.community.id;
|
|
|
|
let moderators = blocking(context.pool(), move |conn| {
|
|
|
|
CommunityModeratorView::for_community(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
// Necessary for the sidebar
|
2021-07-30 18:44:15 +00:00
|
|
|
let mut community_view = blocking(context.pool(), move |conn| {
|
2021-03-25 19:19:40 +00:00
|
|
|
CommunityView::read(conn, community_id, person_id)
|
|
|
|
})
|
|
|
|
.await?
|
2021-10-13 19:50:21 +00:00
|
|
|
.map_err(|e| ApiError::err("couldnt_find_community", e))?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2021-07-30 18:44:15 +00:00
|
|
|
// Blank out deleted or removed info
|
|
|
|
if community_view.community.deleted || community_view.community.removed {
|
|
|
|
community_view.community = community_view.community.blank_out_deleted_or_removed_info();
|
|
|
|
}
|
|
|
|
|
2021-03-25 19:19:40 +00:00
|
|
|
let online = context
|
|
|
|
.chat_server()
|
|
|
|
.send(GetPostUsersOnline { post_id: data.id })
|
|
|
|
.await
|
|
|
|
.unwrap_or(1);
|
|
|
|
|
|
|
|
// Return the jwt
|
|
|
|
Ok(GetPostResponse {
|
|
|
|
post_view,
|
|
|
|
community_view,
|
|
|
|
comments,
|
|
|
|
moderators,
|
|
|
|
online,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl PerformCrud for GetPosts {
|
|
|
|
type Response = GetPostsResponse;
|
|
|
|
|
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
_websocket_id: Option<ConnectionId>,
|
|
|
|
) -> Result<GetPostsResponse, LemmyError> {
|
2021-07-05 16:07:26 +00:00
|
|
|
let data: &GetPosts = self;
|
2021-09-22 15:57:09 +00:00
|
|
|
let local_user_view =
|
|
|
|
get_local_user_view_from_jwt_opt(&data.auth, context.pool(), context.secret()).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2021-03-25 19:30:15 +00:00
|
|
|
let person_id = local_user_view.to_owned().map(|l| l.person.id);
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2021-04-26 14:44:19 +00:00
|
|
|
let show_nsfw = local_user_view.as_ref().map(|t| t.local_user.show_nsfw);
|
|
|
|
let show_bot_accounts = local_user_view
|
|
|
|
.as_ref()
|
|
|
|
.map(|t| t.local_user.show_bot_accounts);
|
|
|
|
let show_read_posts = local_user_view
|
|
|
|
.as_ref()
|
|
|
|
.map(|t| t.local_user.show_read_posts);
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2021-04-15 03:37:51 +00:00
|
|
|
let sort: Option<SortType> = from_opt_str_to_opt_enum(&data.sort);
|
|
|
|
let listing_type: Option<ListingType> = from_opt_str_to_opt_enum(&data.type_);
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
let page = data.page;
|
|
|
|
let limit = data.limit;
|
|
|
|
let community_id = data.community_id;
|
2021-07-20 04:29:50 +00:00
|
|
|
let community_actor_id = data
|
|
|
|
.community_name
|
|
|
|
.as_ref()
|
2021-09-22 15:57:09 +00:00
|
|
|
.map(|t| build_actor_id_from_shortname(EndpointType::Community, t, &context.settings()).ok())
|
2021-07-20 04:29:50 +00:00
|
|
|
.unwrap_or(None);
|
2021-03-25 19:19:40 +00:00
|
|
|
let saved_only = data.saved_only;
|
|
|
|
|
2021-07-30 18:44:15 +00:00
|
|
|
let mut posts = blocking(context.pool(), move |conn| {
|
2021-03-25 19:19:40 +00:00
|
|
|
PostQueryBuilder::create(conn)
|
2021-04-15 03:37:51 +00:00
|
|
|
.listing_type(listing_type)
|
|
|
|
.sort(sort)
|
2021-03-25 19:19:40 +00:00
|
|
|
.show_nsfw(show_nsfw)
|
2021-04-21 21:41:14 +00:00
|
|
|
.show_bot_accounts(show_bot_accounts)
|
2021-04-24 22:26:50 +00:00
|
|
|
.show_read_posts(show_read_posts)
|
2021-03-25 19:19:40 +00:00
|
|
|
.community_id(community_id)
|
2021-07-20 04:29:50 +00:00
|
|
|
.community_actor_id(community_actor_id)
|
2021-03-25 19:19:40 +00:00
|
|
|
.saved_only(saved_only)
|
|
|
|
.my_person_id(person_id)
|
|
|
|
.page(page)
|
|
|
|
.limit(limit)
|
|
|
|
.list()
|
|
|
|
})
|
|
|
|
.await?
|
2021-10-13 19:50:21 +00:00
|
|
|
.map_err(|e| ApiError::err("couldnt_get_posts", e))?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2021-07-30 18:44:15 +00:00
|
|
|
// Blank out deleted or removed info
|
|
|
|
for pv in posts
|
|
|
|
.iter_mut()
|
|
|
|
.filter(|p| p.post.deleted || p.post.removed)
|
|
|
|
{
|
|
|
|
pv.post = pv.to_owned().post.blank_out_deleted_or_removed_info();
|
|
|
|
}
|
|
|
|
|
2021-03-25 19:19:40 +00:00
|
|
|
Ok(GetPostsResponse { posts })
|
|
|
|
}
|
|
|
|
}
|