2022-04-13 18:12:25 +00:00
|
|
|
use crate::Perform;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
use lemmy_api_common::{
|
|
|
|
comment::{ListCommentReports, ListCommentReportsResponse},
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2023-05-25 14:50:07 +00:00
|
|
|
utils::local_user_view_from_jwt,
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
2022-08-04 19:30:17 +00:00
|
|
|
use lemmy_db_views::comment_report_view::CommentReportQuery;
|
2023-06-06 16:27:22 +00:00
|
|
|
use lemmy_utils::error::LemmyError;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
/// Lists comment reports for a community if an id is supplied
|
|
|
|
/// or returns all comment reports for communities a user moderates
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl Perform for ListCommentReports {
|
|
|
|
type Response = ListCommentReportsResponse;
|
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
2022-04-13 18:12:25 +00:00
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
) -> Result<ListCommentReportsResponse, LemmyError> {
|
|
|
|
let data: &ListCommentReports = self;
|
2023-05-25 14:50:07 +00:00
|
|
|
let local_user_view = local_user_view_from_jwt(&data.auth, context).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
let person_id = local_user_view.person.id;
|
|
|
|
let admin = local_user_view.person.admin;
|
|
|
|
let community_id = data.community_id;
|
|
|
|
let unresolved_only = data.unresolved_only;
|
|
|
|
|
|
|
|
let page = data.page;
|
|
|
|
let limit = data.limit;
|
2022-11-09 10:05:00 +00:00
|
|
|
let comment_reports = CommentReportQuery::builder()
|
2023-07-11 13:09:59 +00:00
|
|
|
.pool(&mut context.pool())
|
2022-11-09 10:05:00 +00:00
|
|
|
.my_person_id(person_id)
|
|
|
|
.admin(admin)
|
|
|
|
.community_id(community_id)
|
|
|
|
.unresolved_only(unresolved_only)
|
|
|
|
.page(page)
|
|
|
|
.limit(limit)
|
|
|
|
.build()
|
|
|
|
.list()
|
|
|
|
.await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
Ok(ListCommentReportsResponse { comment_reports })
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|
|
|
|
}
|