2022-11-28 14:29:33 +00:00
|
|
|
use crate::{
|
2023-04-12 14:40:59 +00:00
|
|
|
api::{listing_type_with_default, PerformApub},
|
2022-11-28 14:29:33 +00:00
|
|
|
fetcher::resolve_actor_identifier,
|
|
|
|
objects::community::ApubCommunity,
|
|
|
|
};
|
2023-03-21 15:03:05 +00:00
|
|
|
use activitypub_federation::config::Data;
|
2022-04-13 18:12:25 +00:00
|
|
|
use lemmy_api_common::{
|
2022-05-03 17:44:13 +00:00
|
|
|
comment::{GetComments, GetCommentsResponse},
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2023-05-25 14:50:07 +00:00
|
|
|
utils::{check_private_instance, local_user_view_from_jwt_opt},
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
2022-07-30 03:55:59 +00:00
|
|
|
use lemmy_db_schema::{
|
2022-10-27 09:24:07 +00:00
|
|
|
source::{comment::Comment, community::Community, local_site::LocalSite},
|
2023-03-01 03:46:15 +00:00
|
|
|
traits::Crud,
|
2022-07-30 03:55:59 +00:00
|
|
|
};
|
2022-08-04 19:30:17 +00:00
|
|
|
use lemmy_db_views::comment_view::CommentQuery;
|
2023-06-06 16:27:22 +00:00
|
|
|
use lemmy_utils::error::LemmyError;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-03-21 15:03:05 +00:00
|
|
|
#[async_trait::async_trait]
|
2022-11-28 14:29:33 +00:00
|
|
|
impl PerformApub for GetComments {
|
2022-04-13 18:12:25 +00:00
|
|
|
type Response = GetCommentsResponse;
|
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
async fn perform(&self, context: &Data<LemmyContext>) -> Result<GetCommentsResponse, LemmyError> {
|
2022-04-13 18:12:25 +00:00
|
|
|
let data: &GetComments = self;
|
2023-05-25 14:50:07 +00:00
|
|
|
let local_user_view = local_user_view_from_jwt_opt(data.auth.as_ref(), context).await;
|
2022-11-09 10:05:00 +00:00
|
|
|
let local_site = LocalSite::read(context.pool()).await?;
|
2022-10-27 09:24:07 +00:00
|
|
|
check_private_instance(&local_user_view, &local_site)?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-04-12 14:40:59 +00:00
|
|
|
let community_id = if let Some(name) = &data.community_name {
|
2023-03-21 15:03:05 +00:00
|
|
|
resolve_actor_identifier::<ApubCommunity, Community>(name, context, &None, true)
|
2022-04-13 18:12:25 +00:00
|
|
|
.await
|
|
|
|
.ok()
|
2023-04-12 14:40:59 +00:00
|
|
|
.map(|c| c.id)
|
2022-04-13 18:12:25 +00:00
|
|
|
} else {
|
2023-04-12 14:40:59 +00:00
|
|
|
data.community_id
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
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;
|
|
|
|
|
2023-04-12 14:40:59 +00:00
|
|
|
let listing_type = listing_type_with_default(data.type_, &local_site, community_id)?;
|
|
|
|
|
2022-07-30 03:55:59 +00:00
|
|
|
// If a parent_id is given, fetch the comment to get the path
|
|
|
|
let parent_path = if let Some(parent_id) = parent_id {
|
2022-11-09 10:05:00 +00:00
|
|
|
Some(Comment::read(context.pool(), parent_id).await?.path)
|
2022-07-30 03:55:59 +00:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2022-11-19 04:33:54 +00:00
|
|
|
let parent_path_cloned = parent_path.clone();
|
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);
|
2023-03-01 03:46:15 +00:00
|
|
|
let comments = CommentQuery::builder()
|
2022-11-09 10:05:00 +00:00
|
|
|
.pool(context.pool())
|
|
|
|
.listing_type(Some(listing_type))
|
|
|
|
.sort(sort)
|
|
|
|
.max_depth(max_depth)
|
|
|
|
.saved_only(saved_only)
|
|
|
|
.community_id(community_id)
|
|
|
|
.parent_path(parent_path_cloned)
|
|
|
|
.post_id(post_id)
|
|
|
|
.local_user(local_user.as_ref())
|
|
|
|
.page(page)
|
|
|
|
.limit(limit)
|
|
|
|
.build()
|
|
|
|
.list()
|
|
|
|
.await
|
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "couldnt_get_comments"))?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
Ok(GetCommentsResponse { comments })
|
|
|
|
}
|
|
|
|
}
|