2022-04-13 18:12:25 +00:00
|
|
|
use crate::PerformCrud;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
use lemmy_api_common::{
|
2022-05-03 17:44:13 +00:00
|
|
|
comment::{GetComments, GetCommentsResponse},
|
2022-07-08 10:21:33 +00:00
|
|
|
utils::{
|
|
|
|
blocking,
|
|
|
|
check_private_instance,
|
|
|
|
get_local_user_view_from_jwt_opt,
|
|
|
|
listing_type_with_site_default,
|
|
|
|
},
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
|
|
|
use lemmy_apub::{fetcher::resolve_actor_identifier, objects::community::ApubCommunity};
|
2022-07-30 03:55:59 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::{comment::Comment, community::Community},
|
|
|
|
traits::{Crud, DeleteableOrRemoveable},
|
|
|
|
};
|
2022-08-04 19:30:17 +00:00
|
|
|
use lemmy_db_views::comment_view::CommentQuery;
|
2022-06-02 14:33:41 +00:00
|
|
|
use lemmy_utils::{error::LemmyError, ConnectionId};
|
2022-04-13 18:12:25 +00:00
|
|
|
use lemmy_websocket::LemmyContext;
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl PerformCrud for GetComments {
|
|
|
|
type Response = GetCommentsResponse;
|
|
|
|
|
|
|
|
#[tracing::instrument(skip(context, _websocket_id))]
|
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
_websocket_id: Option<ConnectionId>,
|
|
|
|
) -> Result<GetCommentsResponse, LemmyError> {
|
|
|
|
let data: &GetComments = self;
|
|
|
|
let local_user_view =
|
|
|
|
get_local_user_view_from_jwt_opt(data.auth.as_ref(), context.pool(), context.secret())
|
|
|
|
.await?;
|
|
|
|
check_private_instance(&local_user_view, context.pool()).await?;
|
|
|
|
|
|
|
|
let community_id = data.community_id;
|
2022-07-08 10:21:33 +00:00
|
|
|
let listing_type = listing_type_with_site_default(data.type_, context.pool()).await?;
|
|
|
|
|
2022-04-13 18:12:25 +00:00
|
|
|
let community_actor_id = if let Some(name) = &data.community_name {
|
2022-09-28 20:54:32 +00:00
|
|
|
resolve_actor_identifier::<ApubCommunity, Community>(name, context, true)
|
2022-04-13 18:12:25 +00:00
|
|
|
.await
|
|
|
|
.ok()
|
|
|
|
.map(|c| c.actor_id)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
2022-05-06 20:55:07 +00:00
|
|
|
let sort = data.sort;
|
2022-07-30 03:55:59 +00:00
|
|
|
let max_depth = data.max_depth;
|
2022-04-13 18:12:25 +00:00
|
|
|
let saved_only = data.saved_only;
|
|
|
|
let page = data.page;
|
|
|
|
let limit = data.limit;
|
2022-07-30 03:55:59 +00:00
|
|
|
let parent_id = data.parent_id;
|
|
|
|
|
|
|
|
// If a parent_id is given, fetch the comment to get the path
|
|
|
|
let parent_path = if let Some(parent_id) = parent_id {
|
|
|
|
Some(
|
|
|
|
blocking(context.pool(), move |conn| Comment::read(conn, parent_id))
|
|
|
|
.await??
|
|
|
|
.path,
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2022-09-27 16:45:46 +00:00
|
|
|
let parent_path_cloned = parent_path.to_owned();
|
2022-07-30 03:55:59 +00:00
|
|
|
let post_id = data.post_id;
|
2022-08-19 14:27:39 +00:00
|
|
|
let local_user = local_user_view.map(|l| l.local_user);
|
2022-04-13 18:12:25 +00:00
|
|
|
let mut comments = blocking(context.pool(), move |conn| {
|
2022-08-04 19:30:17 +00:00
|
|
|
CommentQuery::builder()
|
|
|
|
.conn(conn)
|
|
|
|
.listing_type(Some(listing_type))
|
2022-04-13 18:12:25 +00:00
|
|
|
.sort(sort)
|
2022-07-30 03:55:59 +00:00
|
|
|
.max_depth(max_depth)
|
2022-04-13 18:12:25 +00:00
|
|
|
.saved_only(saved_only)
|
|
|
|
.community_id(community_id)
|
|
|
|
.community_actor_id(community_actor_id)
|
2022-09-27 16:45:46 +00:00
|
|
|
.parent_path(parent_path_cloned)
|
2022-07-30 03:55:59 +00:00
|
|
|
.post_id(post_id)
|
2022-08-19 14:27:39 +00:00
|
|
|
.local_user(local_user.as_ref())
|
2022-04-13 18:12:25 +00:00
|
|
|
.page(page)
|
|
|
|
.limit(limit)
|
2022-08-04 19:30:17 +00:00
|
|
|
.build()
|
2022-04-13 18:12:25 +00:00
|
|
|
.list()
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "couldnt_get_comments"))?;
|
|
|
|
|
|
|
|
// 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();
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(GetCommentsResponse { comments })
|
|
|
|
}
|
|
|
|
}
|