2021-10-16 13:33:38 +00:00
|
|
|
use crate::{
|
2024-02-15 13:52:04 +00:00
|
|
|
newtypes::{CommentId, CommentReportId, PersonId},
|
|
|
|
schema::comment_report::{
|
|
|
|
comment_id,
|
|
|
|
dsl::{comment_report, resolved, resolver_id, updated},
|
|
|
|
},
|
2020-12-21 13:38:34 +00:00
|
|
|
source::comment_report::{CommentReport, CommentReportForm},
|
2021-10-16 13:33:38 +00:00
|
|
|
traits::Reportable,
|
2022-11-09 10:05:00 +00:00
|
|
|
utils::{get_conn, naive_now, DbPool},
|
2020-12-21 13:38:34 +00:00
|
|
|
};
|
2022-11-19 04:33:54 +00:00
|
|
|
use diesel::{
|
|
|
|
dsl::{insert_into, update},
|
|
|
|
result::Error,
|
|
|
|
ExpressionMethods,
|
|
|
|
QueryDsl,
|
|
|
|
};
|
2022-11-09 10:05:00 +00:00
|
|
|
use diesel_async::RunQueryDsl;
|
2020-12-17 03:03:03 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
#[async_trait]
|
2021-08-17 18:04:58 +00:00
|
|
|
impl Reportable for CommentReport {
|
|
|
|
type Form = CommentReportForm;
|
2021-09-28 10:36:17 +00:00
|
|
|
type IdType = CommentReportId;
|
2024-02-15 13:52:04 +00:00
|
|
|
type ObjectIdType = CommentId;
|
2020-12-17 03:03:03 +00:00
|
|
|
/// creates a comment report and returns it
|
|
|
|
///
|
|
|
|
/// * `conn` - the postgres connection
|
|
|
|
/// * `comment_report_form` - the filled CommentReportForm to insert
|
2023-07-11 13:09:59 +00:00
|
|
|
async fn report(
|
|
|
|
pool: &mut DbPool<'_>,
|
|
|
|
comment_report_form: &CommentReportForm,
|
|
|
|
) -> Result<Self, Error> {
|
2022-11-09 10:05:00 +00:00
|
|
|
let conn = &mut get_conn(pool).await?;
|
2020-12-17 03:03:03 +00:00
|
|
|
insert_into(comment_report)
|
|
|
|
.values(comment_report_form)
|
|
|
|
.get_result::<Self>(conn)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2020-12-17 03:03:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// resolve a comment report
|
|
|
|
///
|
|
|
|
/// * `conn` - the postgres connection
|
|
|
|
/// * `report_id` - the id of the report to resolve
|
|
|
|
/// * `by_resolver_id` - the id of the user resolving the report
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn resolve(
|
2023-07-11 13:09:59 +00:00
|
|
|
pool: &mut DbPool<'_>,
|
2022-11-09 10:05:00 +00:00
|
|
|
report_id_: Self::IdType,
|
2021-03-18 20:25:21 +00:00
|
|
|
by_resolver_id: PersonId,
|
|
|
|
) -> Result<usize, Error> {
|
2022-11-09 10:05:00 +00:00
|
|
|
let conn = &mut get_conn(pool).await?;
|
|
|
|
update(comment_report.find(report_id_))
|
2020-12-17 03:03:03 +00:00
|
|
|
.set((
|
|
|
|
resolved.eq(true),
|
|
|
|
resolver_id.eq(by_resolver_id),
|
|
|
|
updated.eq(naive_now()),
|
|
|
|
))
|
|
|
|
.execute(conn)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2020-12-17 03:03:03 +00:00
|
|
|
}
|
|
|
|
|
2024-02-15 13:52:04 +00:00
|
|
|
async fn resolve_all_for_object(
|
|
|
|
pool: &mut DbPool<'_>,
|
|
|
|
comment_id_: CommentId,
|
|
|
|
by_resolver_id: PersonId,
|
|
|
|
) -> Result<usize, Error> {
|
|
|
|
let conn = &mut get_conn(pool).await?;
|
|
|
|
update(comment_report.filter(comment_id.eq(comment_id_)))
|
|
|
|
.set((
|
|
|
|
resolved.eq(true),
|
|
|
|
resolver_id.eq(by_resolver_id),
|
|
|
|
updated.eq(naive_now()),
|
|
|
|
))
|
|
|
|
.execute(conn)
|
|
|
|
.await
|
|
|
|
}
|
|
|
|
|
2020-12-17 03:03:03 +00:00
|
|
|
/// unresolve a comment report
|
|
|
|
///
|
|
|
|
/// * `conn` - the postgres connection
|
|
|
|
/// * `report_id` - the id of the report to unresolve
|
|
|
|
/// * `by_resolver_id` - the id of the user unresolving the report
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn unresolve(
|
2023-07-11 13:09:59 +00:00
|
|
|
pool: &mut DbPool<'_>,
|
2022-11-09 10:05:00 +00:00
|
|
|
report_id_: Self::IdType,
|
2021-03-18 20:25:21 +00:00
|
|
|
by_resolver_id: PersonId,
|
|
|
|
) -> Result<usize, Error> {
|
2022-11-09 10:05:00 +00:00
|
|
|
let conn = &mut get_conn(pool).await?;
|
|
|
|
update(comment_report.find(report_id_))
|
2020-12-17 03:03:03 +00:00
|
|
|
.set((
|
|
|
|
resolved.eq(false),
|
|
|
|
resolver_id.eq(by_resolver_id),
|
|
|
|
updated.eq(naive_now()),
|
|
|
|
))
|
|
|
|
.execute(conn)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2020-12-17 03:03:03 +00:00
|
|
|
}
|
|
|
|
}
|