2021-03-25 19:19:40 +00:00
|
|
|
use crate::PerformCrud;
|
|
|
|
use actix_web::web::Data;
|
2021-04-23 06:40:10 +00:00
|
|
|
use lemmy_api_common::{
|
|
|
|
blocking,
|
|
|
|
comment::*,
|
|
|
|
get_local_user_view_from_jwt_opt,
|
|
|
|
user_show_bot_accounts,
|
|
|
|
};
|
2021-04-15 03:37:51 +00:00
|
|
|
use lemmy_db_queries::{from_opt_str_to_opt_enum, ListingType, SortType};
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_db_views::comment_view::CommentQueryBuilder;
|
|
|
|
use lemmy_utils::{ApiError, ConnectionId, LemmyError};
|
|
|
|
use lemmy_websocket::LemmyContext;
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl PerformCrud for GetComments {
|
|
|
|
type Response = GetCommentsResponse;
|
|
|
|
|
|
|
|
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, context.pool()).await?;
|
2021-04-21 21:41:14 +00:00
|
|
|
|
|
|
|
let show_bot_accounts = user_show_bot_accounts(&local_user_view);
|
2021-03-25 19:19:40 +00:00
|
|
|
let person_id = local_user_view.map(|u| u.person.id);
|
|
|
|
|
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 community_id = data.community_id;
|
|
|
|
let community_name = data.community_name.to_owned();
|
|
|
|
let saved_only = data.saved_only;
|
|
|
|
let page = data.page;
|
|
|
|
let limit = data.limit;
|
|
|
|
let comments = blocking(context.pool(), move |conn| {
|
|
|
|
CommentQueryBuilder::create(conn)
|
2021-04-15 03:37:51 +00:00
|
|
|
.listing_type(listing_type)
|
|
|
|
.sort(sort)
|
2021-03-25 19:19:40 +00:00
|
|
|
.saved_only(saved_only)
|
|
|
|
.community_id(community_id)
|
|
|
|
.community_name(community_name)
|
|
|
|
.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
|
|
|
.page(page)
|
|
|
|
.limit(limit)
|
|
|
|
.list()
|
|
|
|
})
|
2021-04-16 13:10:43 +00:00
|
|
|
.await?
|
|
|
|
.map_err(|_| ApiError::err("couldnt_get_comments"))?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
Ok(GetCommentsResponse { comments })
|
|
|
|
}
|
|
|
|
}
|