2022-05-03 17:44:13 +00:00
|
|
|
use crate::structs::CommentReportView;
|
2022-11-09 10:05:00 +00:00
|
|
|
use diesel::{
|
2022-11-19 04:33:54 +00:00
|
|
|
dsl::now,
|
2022-11-09 10:05:00 +00:00
|
|
|
result::Error,
|
|
|
|
BoolExpressionMethods,
|
|
|
|
ExpressionMethods,
|
|
|
|
JoinOnDsl,
|
|
|
|
NullableExpressionMethods,
|
|
|
|
QueryDsl,
|
|
|
|
};
|
|
|
|
use diesel_async::RunQueryDsl;
|
2021-10-16 13:33:38 +00:00
|
|
|
use lemmy_db_schema::{
|
2022-05-03 17:44:13 +00:00
|
|
|
aggregates::structs::CommentAggregates,
|
2021-10-16 13:33:38 +00:00
|
|
|
newtypes::{CommentReportId, CommunityId, PersonId},
|
2021-09-28 10:36:17 +00:00
|
|
|
schema::{
|
|
|
|
comment,
|
|
|
|
comment_aggregates,
|
|
|
|
comment_like,
|
|
|
|
comment_report,
|
|
|
|
community,
|
|
|
|
community_moderator,
|
|
|
|
community_person_ban,
|
|
|
|
person,
|
|
|
|
post,
|
|
|
|
},
|
2020-12-18 18:38:32 +00:00
|
|
|
source::{
|
|
|
|
comment::Comment,
|
2020-12-21 13:38:34 +00:00
|
|
|
comment_report::CommentReport,
|
2021-09-28 10:36:17 +00:00
|
|
|
community::{Community, CommunityPersonBan, CommunitySafe},
|
2022-09-26 14:09:32 +00:00
|
|
|
person::{Person, PersonSafe},
|
2020-12-18 18:38:32 +00:00
|
|
|
post::Post,
|
|
|
|
},
|
2022-08-04 19:30:17 +00:00
|
|
|
traits::{ToSafe, ViewToVec},
|
2022-11-09 10:05:00 +00:00
|
|
|
utils::{get_conn, limit_and_offset, DbPool},
|
2020-12-18 16:17:21 +00:00
|
|
|
};
|
2022-08-04 19:30:17 +00:00
|
|
|
use typed_builder::TypedBuilder;
|
2020-12-17 03:03:03 +00:00
|
|
|
|
|
|
|
type CommentReportViewTuple = (
|
|
|
|
CommentReport,
|
|
|
|
Comment,
|
|
|
|
Post,
|
|
|
|
CommunitySafe,
|
2021-03-10 22:33:55 +00:00
|
|
|
PersonSafe,
|
2022-09-26 14:09:32 +00:00
|
|
|
PersonSafe,
|
2021-09-28 10:36:17 +00:00
|
|
|
CommentAggregates,
|
|
|
|
Option<CommunityPersonBan>,
|
|
|
|
Option<i16>,
|
2022-09-26 14:09:32 +00:00
|
|
|
Option<PersonSafe>,
|
2020-12-17 03:03:03 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
impl CommentReportView {
|
|
|
|
/// returns the CommentReportView for the provided report_id
|
|
|
|
///
|
|
|
|
/// * `report_id` - the report id to obtain
|
2022-11-09 10:05:00 +00:00
|
|
|
pub async fn read(
|
|
|
|
pool: &DbPool,
|
2021-09-28 10:36:17 +00:00
|
|
|
report_id: CommentReportId,
|
|
|
|
my_person_id: PersonId,
|
|
|
|
) -> Result<Self, Error> {
|
2022-11-09 10:05:00 +00:00
|
|
|
let conn = &mut get_conn(pool).await?;
|
|
|
|
|
2022-09-26 14:09:32 +00:00
|
|
|
let (person_alias_1, person_alias_2) = diesel::alias!(person as person1, person as person2);
|
|
|
|
|
2021-09-28 10:36:17 +00:00
|
|
|
let (
|
|
|
|
comment_report,
|
|
|
|
comment,
|
|
|
|
post,
|
|
|
|
community,
|
|
|
|
creator,
|
|
|
|
comment_creator,
|
|
|
|
counts,
|
|
|
|
creator_banned_from_community,
|
|
|
|
comment_like,
|
|
|
|
resolver,
|
|
|
|
) = comment_report::table
|
|
|
|
.find(report_id)
|
|
|
|
.inner_join(comment::table)
|
|
|
|
.inner_join(post::table.on(comment::post_id.eq(post::id)))
|
|
|
|
.inner_join(community::table.on(post::community_id.eq(community::id)))
|
|
|
|
.inner_join(person::table.on(comment_report::creator_id.eq(person::id)))
|
2022-09-26 14:09:32 +00:00
|
|
|
.inner_join(person_alias_1.on(comment::creator_id.eq(person_alias_1.field(person::id))))
|
2021-09-28 10:36:17 +00:00
|
|
|
.inner_join(
|
|
|
|
comment_aggregates::table.on(comment_report::comment_id.eq(comment_aggregates::comment_id)),
|
|
|
|
)
|
|
|
|
.left_join(
|
|
|
|
community_person_ban::table.on(
|
|
|
|
community::id
|
|
|
|
.eq(community_person_ban::community_id)
|
2022-01-08 12:37:07 +00:00
|
|
|
.and(community_person_ban::person_id.eq(comment::creator_id))
|
|
|
|
.and(
|
|
|
|
community_person_ban::expires
|
|
|
|
.is_null()
|
|
|
|
.or(community_person_ban::expires.gt(now)),
|
|
|
|
),
|
2021-09-28 10:36:17 +00:00
|
|
|
),
|
|
|
|
)
|
|
|
|
.left_join(
|
|
|
|
comment_like::table.on(
|
|
|
|
comment::id
|
|
|
|
.eq(comment_like::comment_id)
|
|
|
|
.and(comment_like::person_id.eq(my_person_id)),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
.left_join(
|
2022-09-26 14:09:32 +00:00
|
|
|
person_alias_2
|
|
|
|
.on(comment_report::resolver_id.eq(person_alias_2.field(person::id).nullable())),
|
2021-09-28 10:36:17 +00:00
|
|
|
)
|
|
|
|
.select((
|
|
|
|
comment_report::all_columns,
|
|
|
|
comment::all_columns,
|
|
|
|
post::all_columns,
|
|
|
|
Community::safe_columns_tuple(),
|
|
|
|
Person::safe_columns_tuple(),
|
2022-09-26 14:09:32 +00:00
|
|
|
person_alias_1.fields(Person::safe_columns_tuple()),
|
2021-09-28 10:36:17 +00:00
|
|
|
comment_aggregates::all_columns,
|
|
|
|
community_person_ban::all_columns.nullable(),
|
|
|
|
comment_like::score.nullable(),
|
2022-09-26 14:09:32 +00:00
|
|
|
person_alias_2
|
|
|
|
.fields(Person::safe_columns_tuple())
|
|
|
|
.nullable(),
|
2021-09-28 10:36:17 +00:00
|
|
|
))
|
2022-11-09 10:05:00 +00:00
|
|
|
.first::<CommentReportViewTuple>(conn)
|
|
|
|
.await?;
|
2021-09-28 10:36:17 +00:00
|
|
|
|
2022-03-30 14:58:03 +00:00
|
|
|
let my_vote = comment_like;
|
2020-12-17 03:03:03 +00:00
|
|
|
|
|
|
|
Ok(Self {
|
|
|
|
comment_report,
|
|
|
|
comment,
|
|
|
|
post,
|
|
|
|
community,
|
|
|
|
creator,
|
|
|
|
comment_creator,
|
2021-09-28 10:36:17 +00:00
|
|
|
counts,
|
|
|
|
creator_banned_from_community: creator_banned_from_community.is_some(),
|
|
|
|
my_vote,
|
2020-12-17 03:03:03 +00:00
|
|
|
resolver,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-10-12 12:02:16 +00:00
|
|
|
/// Returns the current unresolved post report count for the communities you mod
|
2022-11-09 10:05:00 +00:00
|
|
|
pub async fn get_report_count(
|
|
|
|
pool: &DbPool,
|
2021-09-28 10:36:17 +00:00
|
|
|
my_person_id: PersonId,
|
2021-10-12 12:02:16 +00:00
|
|
|
admin: bool,
|
2021-09-28 10:36:17 +00:00
|
|
|
community_id: Option<CommunityId>,
|
2021-03-18 20:25:21 +00:00
|
|
|
) -> Result<i64, Error> {
|
2022-11-19 04:33:54 +00:00
|
|
|
use diesel::dsl::count;
|
2021-09-28 10:36:17 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let conn = &mut get_conn(pool).await?;
|
|
|
|
|
2021-09-28 10:36:17 +00:00
|
|
|
let mut query = comment_report::table
|
2020-12-17 03:03:03 +00:00
|
|
|
.inner_join(comment::table)
|
|
|
|
.inner_join(post::table.on(comment::post_id.eq(post::id)))
|
2021-09-28 10:36:17 +00:00
|
|
|
.filter(comment_report::resolved.eq(false))
|
|
|
|
.into_boxed();
|
|
|
|
|
|
|
|
if let Some(community_id) = community_id {
|
|
|
|
query = query.filter(post::community_id.eq(community_id))
|
|
|
|
}
|
|
|
|
|
2021-11-23 15:54:30 +00:00
|
|
|
// If its not an admin, get only the ones you mod
|
|
|
|
if !admin {
|
|
|
|
query
|
|
|
|
.inner_join(
|
|
|
|
community_moderator::table.on(
|
|
|
|
community_moderator::community_id
|
|
|
|
.eq(post::community_id)
|
|
|
|
.and(community_moderator::person_id.eq(my_person_id)),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
.select(count(comment_report::id))
|
|
|
|
.first::<i64>(conn)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2021-11-23 15:54:30 +00:00
|
|
|
} else {
|
2022-11-09 10:05:00 +00:00
|
|
|
query
|
|
|
|
.select(count(comment_report::id))
|
|
|
|
.first::<i64>(conn)
|
|
|
|
.await
|
2021-11-23 15:54:30 +00:00
|
|
|
}
|
2020-12-17 03:03:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-04 19:30:17 +00:00
|
|
|
#[derive(TypedBuilder)]
|
|
|
|
#[builder(field_defaults(default))]
|
|
|
|
pub struct CommentReportQuery<'a> {
|
|
|
|
#[builder(!default)]
|
2022-11-09 10:05:00 +00:00
|
|
|
pool: &'a DbPool,
|
2022-08-04 19:30:17 +00:00
|
|
|
#[builder(!default)]
|
2021-09-28 10:36:17 +00:00
|
|
|
my_person_id: PersonId,
|
2022-08-04 19:30:17 +00:00
|
|
|
#[builder(!default)]
|
2021-10-12 12:02:16 +00:00
|
|
|
admin: bool,
|
2021-09-28 10:36:17 +00:00
|
|
|
community_id: Option<CommunityId>,
|
2020-12-17 03:03:03 +00:00
|
|
|
page: Option<i64>,
|
|
|
|
limit: Option<i64>,
|
2021-09-28 10:36:17 +00:00
|
|
|
unresolved_only: Option<bool>,
|
2020-12-17 03:03:03 +00:00
|
|
|
}
|
|
|
|
|
2022-08-04 19:30:17 +00:00
|
|
|
impl<'a> CommentReportQuery<'a> {
|
2022-11-09 10:05:00 +00:00
|
|
|
pub async fn list(self) -> Result<Vec<CommentReportView>, Error> {
|
|
|
|
let conn = &mut get_conn(self.pool).await?;
|
|
|
|
|
2022-09-26 14:09:32 +00:00
|
|
|
let (person_alias_1, person_alias_2) = diesel::alias!(person as person1, person as person2);
|
|
|
|
|
2020-12-17 03:03:03 +00:00
|
|
|
let mut query = comment_report::table
|
|
|
|
.inner_join(comment::table)
|
|
|
|
.inner_join(post::table.on(comment::post_id.eq(post::id)))
|
|
|
|
.inner_join(community::table.on(post::community_id.eq(community::id)))
|
2021-03-10 22:33:55 +00:00
|
|
|
.inner_join(person::table.on(comment_report::creator_id.eq(person::id)))
|
2022-09-26 14:09:32 +00:00
|
|
|
.inner_join(person_alias_1.on(comment::creator_id.eq(person_alias_1.field(person::id))))
|
2021-09-28 10:36:17 +00:00
|
|
|
.inner_join(
|
|
|
|
comment_aggregates::table.on(comment_report::comment_id.eq(comment_aggregates::comment_id)),
|
|
|
|
)
|
|
|
|
.left_join(
|
|
|
|
community_person_ban::table.on(
|
|
|
|
community::id
|
|
|
|
.eq(community_person_ban::community_id)
|
2022-01-08 12:37:07 +00:00
|
|
|
.and(community_person_ban::person_id.eq(comment::creator_id))
|
|
|
|
.and(
|
|
|
|
community_person_ban::expires
|
|
|
|
.is_null()
|
|
|
|
.or(community_person_ban::expires.gt(now)),
|
|
|
|
),
|
2021-09-28 10:36:17 +00:00
|
|
|
),
|
|
|
|
)
|
|
|
|
.left_join(
|
|
|
|
comment_like::table.on(
|
|
|
|
comment::id
|
|
|
|
.eq(comment_like::comment_id)
|
|
|
|
.and(comment_like::person_id.eq(self.my_person_id)),
|
|
|
|
),
|
|
|
|
)
|
2020-12-17 03:03:03 +00:00
|
|
|
.left_join(
|
2022-09-26 14:09:32 +00:00
|
|
|
person_alias_2
|
|
|
|
.on(comment_report::resolver_id.eq(person_alias_2.field(person::id).nullable())),
|
2020-12-17 03:03:03 +00:00
|
|
|
)
|
|
|
|
.select((
|
|
|
|
comment_report::all_columns,
|
|
|
|
comment::all_columns,
|
|
|
|
post::all_columns,
|
|
|
|
Community::safe_columns_tuple(),
|
2021-03-10 22:33:55 +00:00
|
|
|
Person::safe_columns_tuple(),
|
2022-09-26 14:09:32 +00:00
|
|
|
person_alias_1.fields(Person::safe_columns_tuple()),
|
2021-09-28 10:36:17 +00:00
|
|
|
comment_aggregates::all_columns,
|
|
|
|
community_person_ban::all_columns.nullable(),
|
|
|
|
comment_like::score.nullable(),
|
2022-09-26 14:09:32 +00:00
|
|
|
person_alias_2
|
|
|
|
.fields(Person::safe_columns_tuple())
|
|
|
|
.nullable(),
|
2020-12-17 03:03:03 +00:00
|
|
|
))
|
|
|
|
.into_boxed();
|
|
|
|
|
2021-09-28 10:36:17 +00:00
|
|
|
if let Some(community_id) = self.community_id {
|
|
|
|
query = query.filter(post::community_id.eq(community_id));
|
2020-12-17 03:03:03 +00:00
|
|
|
}
|
|
|
|
|
2022-08-04 19:30:17 +00:00
|
|
|
if self.unresolved_only.unwrap_or(true) {
|
2021-09-28 10:36:17 +00:00
|
|
|
query = query.filter(comment_report::resolved.eq(false));
|
2020-12-17 03:03:03 +00:00
|
|
|
}
|
|
|
|
|
2022-07-08 10:21:33 +00:00
|
|
|
let (limit, offset) = limit_and_offset(self.page, self.limit)?;
|
2020-12-17 03:03:03 +00:00
|
|
|
|
2021-11-23 15:54:30 +00:00
|
|
|
query = query
|
|
|
|
.order_by(comment_report::published.desc())
|
2020-12-17 03:03:03 +00:00
|
|
|
.limit(limit)
|
2021-11-23 15:54:30 +00:00
|
|
|
.offset(offset);
|
|
|
|
|
|
|
|
// If its not an admin, get only the ones you mod
|
|
|
|
let res = if !self.admin {
|
|
|
|
query
|
|
|
|
.inner_join(
|
|
|
|
community_moderator::table.on(
|
|
|
|
community_moderator::community_id
|
|
|
|
.eq(post::community_id)
|
|
|
|
.and(community_moderator::person_id.eq(self.my_person_id)),
|
|
|
|
),
|
|
|
|
)
|
2022-11-09 10:05:00 +00:00
|
|
|
.load::<CommentReportViewTuple>(conn)
|
|
|
|
.await?
|
2021-11-23 15:54:30 +00:00
|
|
|
} else {
|
2022-11-09 10:05:00 +00:00
|
|
|
query.load::<CommentReportViewTuple>(conn).await?
|
2021-11-23 15:54:30 +00:00
|
|
|
};
|
2020-12-17 03:03:03 +00:00
|
|
|
|
2020-12-23 21:56:20 +00:00
|
|
|
Ok(CommentReportView::from_tuple_to_vec(res))
|
2020-12-17 03:03:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ViewToVec for CommentReportView {
|
|
|
|
type DbTuple = CommentReportViewTuple;
|
2020-12-23 21:56:20 +00:00
|
|
|
fn from_tuple_to_vec(items: Vec<Self::DbTuple>) -> Vec<Self> {
|
|
|
|
items
|
2022-08-04 19:30:17 +00:00
|
|
|
.into_iter()
|
2020-12-17 03:03:03 +00:00
|
|
|
.map(|a| Self {
|
2022-08-04 19:30:17 +00:00
|
|
|
comment_report: a.0,
|
|
|
|
comment: a.1,
|
|
|
|
post: a.2,
|
|
|
|
community: a.3,
|
|
|
|
creator: a.4,
|
|
|
|
comment_creator: a.5,
|
|
|
|
counts: a.6,
|
2021-09-28 10:36:17 +00:00
|
|
|
creator_banned_from_community: a.7.is_some(),
|
|
|
|
my_vote: a.8,
|
2022-08-04 19:30:17 +00:00
|
|
|
resolver: a.9,
|
2020-12-17 03:03:03 +00:00
|
|
|
})
|
|
|
|
.collect::<Vec<Self>>()
|
|
|
|
}
|
|
|
|
}
|
2021-09-28 10:36:17 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2022-08-04 19:30:17 +00:00
|
|
|
use crate::comment_report_view::{CommentReportQuery, CommentReportView};
|
2021-10-16 13:33:38 +00:00
|
|
|
use lemmy_db_schema::{
|
2022-05-03 17:44:13 +00:00
|
|
|
aggregates::structs::CommentAggregates,
|
2022-11-19 04:33:54 +00:00
|
|
|
source::{
|
|
|
|
comment::{Comment, CommentInsertForm},
|
|
|
|
comment_report::{CommentReport, CommentReportForm},
|
|
|
|
community::{
|
|
|
|
Community,
|
|
|
|
CommunityInsertForm,
|
|
|
|
CommunityModerator,
|
|
|
|
CommunityModeratorForm,
|
|
|
|
CommunitySafe,
|
|
|
|
},
|
|
|
|
instance::Instance,
|
|
|
|
person::{Person, PersonInsertForm, PersonSafe},
|
|
|
|
post::{Post, PostInsertForm},
|
|
|
|
},
|
2021-10-16 13:33:38 +00:00
|
|
|
traits::{Crud, Joinable, Reportable},
|
2022-11-09 10:05:00 +00:00
|
|
|
utils::build_db_pool_for_tests,
|
2021-09-28 10:36:17 +00:00
|
|
|
};
|
|
|
|
use serial_test::serial;
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
#[tokio::test]
|
2021-09-28 10:36:17 +00:00
|
|
|
#[serial]
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn test_crud() {
|
|
|
|
let pool = &build_db_pool_for_tests().await;
|
2021-09-28 10:36:17 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let inserted_instance = Instance::create(pool, "my_domain.tld").await.unwrap();
|
2022-10-27 09:24:07 +00:00
|
|
|
|
|
|
|
let new_person = PersonInsertForm::builder()
|
|
|
|
.name("timmy_crv".into())
|
|
|
|
.public_key("pubkey".to_string())
|
|
|
|
.instance_id(inserted_instance.id)
|
|
|
|
.build();
|
2021-09-28 10:36:17 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let inserted_timmy = Person::create(pool, &new_person).await.unwrap();
|
2021-09-28 10:36:17 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let new_person_2 = PersonInsertForm::builder()
|
|
|
|
.name("sara_crv".into())
|
|
|
|
.public_key("pubkey".to_string())
|
|
|
|
.instance_id(inserted_instance.id)
|
|
|
|
.build();
|
2021-09-28 10:36:17 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let inserted_sara = Person::create(pool, &new_person_2).await.unwrap();
|
2021-09-28 10:36:17 +00:00
|
|
|
|
|
|
|
// Add a third person, since new ppl can only report something once.
|
2022-10-27 09:24:07 +00:00
|
|
|
let new_person_3 = PersonInsertForm::builder()
|
|
|
|
.name("jessica_crv".into())
|
|
|
|
.public_key("pubkey".to_string())
|
|
|
|
.instance_id(inserted_instance.id)
|
|
|
|
.build();
|
2021-09-28 10:36:17 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let inserted_jessica = Person::create(pool, &new_person_3).await.unwrap();
|
2021-09-28 10:36:17 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let new_community = CommunityInsertForm::builder()
|
|
|
|
.name("test community crv".to_string())
|
|
|
|
.title("nada".to_owned())
|
|
|
|
.public_key("pubkey".to_string())
|
|
|
|
.instance_id(inserted_instance.id)
|
|
|
|
.build();
|
2021-09-28 10:36:17 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let inserted_community = Community::create(pool, &new_community).await.unwrap();
|
2021-09-28 10:36:17 +00:00
|
|
|
|
|
|
|
// Make timmy a mod
|
|
|
|
let timmy_moderator_form = CommunityModeratorForm {
|
|
|
|
community_id: inserted_community.id,
|
|
|
|
person_id: inserted_timmy.id,
|
|
|
|
};
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let _inserted_moderator = CommunityModerator::join(pool, &timmy_moderator_form)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2021-09-28 10:36:17 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let new_post = PostInsertForm::builder()
|
|
|
|
.name("A test post crv".into())
|
|
|
|
.creator_id(inserted_timmy.id)
|
|
|
|
.community_id(inserted_community.id)
|
|
|
|
.build();
|
2021-09-28 10:36:17 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let inserted_post = Post::create(pool, &new_post).await.unwrap();
|
2021-09-28 10:36:17 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let comment_form = CommentInsertForm::builder()
|
|
|
|
.content("A test comment 32".into())
|
|
|
|
.creator_id(inserted_timmy.id)
|
|
|
|
.post_id(inserted_post.id)
|
|
|
|
.build();
|
2021-09-28 10:36:17 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let inserted_comment = Comment::create(pool, &comment_form, None).await.unwrap();
|
2021-09-28 10:36:17 +00:00
|
|
|
|
|
|
|
// sara reports
|
|
|
|
let sara_report_form = CommentReportForm {
|
|
|
|
creator_id: inserted_sara.id,
|
|
|
|
comment_id: inserted_comment.id,
|
|
|
|
original_comment_text: "this was it at time of creation".into(),
|
|
|
|
reason: "from sara".into(),
|
|
|
|
};
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let inserted_sara_report = CommentReport::report(pool, &sara_report_form)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2021-09-28 10:36:17 +00:00
|
|
|
|
|
|
|
// jessica reports
|
|
|
|
let jessica_report_form = CommentReportForm {
|
|
|
|
creator_id: inserted_jessica.id,
|
|
|
|
comment_id: inserted_comment.id,
|
|
|
|
original_comment_text: "this was it at time of creation".into(),
|
|
|
|
reason: "from jessica".into(),
|
|
|
|
};
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let inserted_jessica_report = CommentReport::report(pool, &jessica_report_form)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2021-09-28 10:36:17 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let agg = CommentAggregates::read(pool, inserted_comment.id)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2021-09-28 10:36:17 +00:00
|
|
|
|
|
|
|
let read_jessica_report_view =
|
2022-11-09 10:05:00 +00:00
|
|
|
CommentReportView::read(pool, inserted_jessica_report.id, inserted_timmy.id)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2021-09-28 10:36:17 +00:00
|
|
|
let expected_jessica_report_view = CommentReportView {
|
2022-11-19 04:33:54 +00:00
|
|
|
comment_report: inserted_jessica_report.clone(),
|
|
|
|
comment: inserted_comment.clone(),
|
2021-09-28 10:36:17 +00:00
|
|
|
post: inserted_post,
|
|
|
|
community: CommunitySafe {
|
|
|
|
id: inserted_community.id,
|
|
|
|
name: inserted_community.name,
|
|
|
|
icon: None,
|
|
|
|
removed: false,
|
|
|
|
deleted: false,
|
|
|
|
nsfw: false,
|
2022-11-19 04:33:54 +00:00
|
|
|
actor_id: inserted_community.actor_id.clone(),
|
2021-09-28 10:36:17 +00:00
|
|
|
local: true,
|
|
|
|
title: inserted_community.title,
|
|
|
|
description: None,
|
|
|
|
updated: None,
|
|
|
|
banner: None,
|
2022-02-18 02:30:47 +00:00
|
|
|
hidden: false,
|
2022-04-28 20:32:32 +00:00
|
|
|
posting_restricted_to_mods: false,
|
2021-09-28 10:36:17 +00:00
|
|
|
published: inserted_community.published,
|
2022-10-27 09:24:07 +00:00
|
|
|
instance_id: inserted_instance.id,
|
2021-09-28 10:36:17 +00:00
|
|
|
},
|
|
|
|
creator: PersonSafe {
|
|
|
|
id: inserted_jessica.id,
|
|
|
|
name: inserted_jessica.name,
|
|
|
|
display_name: None,
|
|
|
|
published: inserted_jessica.published,
|
|
|
|
avatar: None,
|
2022-11-19 04:33:54 +00:00
|
|
|
actor_id: inserted_jessica.actor_id.clone(),
|
2021-09-28 10:36:17 +00:00
|
|
|
local: true,
|
|
|
|
banned: false,
|
|
|
|
deleted: false,
|
|
|
|
admin: false,
|
|
|
|
bot_account: false,
|
|
|
|
bio: None,
|
|
|
|
banner: None,
|
|
|
|
updated: None,
|
2022-11-19 04:33:54 +00:00
|
|
|
inbox_url: inserted_jessica.inbox_url.clone(),
|
2021-09-28 10:36:17 +00:00
|
|
|
shared_inbox_url: None,
|
|
|
|
matrix_user_id: None,
|
2022-01-08 12:37:07 +00:00
|
|
|
ban_expires: None,
|
2022-10-27 09:24:07 +00:00
|
|
|
instance_id: inserted_instance.id,
|
2021-09-28 10:36:17 +00:00
|
|
|
},
|
2022-09-26 14:09:32 +00:00
|
|
|
comment_creator: PersonSafe {
|
2021-09-28 10:36:17 +00:00
|
|
|
id: inserted_timmy.id,
|
2022-11-19 04:33:54 +00:00
|
|
|
name: inserted_timmy.name.clone(),
|
2021-09-28 10:36:17 +00:00
|
|
|
display_name: None,
|
|
|
|
published: inserted_timmy.published,
|
|
|
|
avatar: None,
|
2022-11-19 04:33:54 +00:00
|
|
|
actor_id: inserted_timmy.actor_id.clone(),
|
2021-09-28 10:36:17 +00:00
|
|
|
local: true,
|
|
|
|
banned: false,
|
|
|
|
deleted: false,
|
|
|
|
admin: false,
|
|
|
|
bot_account: false,
|
|
|
|
bio: None,
|
|
|
|
banner: None,
|
|
|
|
updated: None,
|
2022-11-19 04:33:54 +00:00
|
|
|
inbox_url: inserted_timmy.inbox_url.clone(),
|
2021-09-28 10:36:17 +00:00
|
|
|
shared_inbox_url: None,
|
|
|
|
matrix_user_id: None,
|
2022-01-08 12:37:07 +00:00
|
|
|
ban_expires: None,
|
2022-10-27 09:24:07 +00:00
|
|
|
instance_id: inserted_instance.id,
|
2021-09-28 10:36:17 +00:00
|
|
|
},
|
|
|
|
creator_banned_from_community: false,
|
|
|
|
counts: CommentAggregates {
|
|
|
|
id: agg.id,
|
|
|
|
comment_id: inserted_comment.id,
|
|
|
|
score: 0,
|
|
|
|
upvotes: 0,
|
|
|
|
downvotes: 0,
|
|
|
|
published: agg.published,
|
2022-07-30 03:55:59 +00:00
|
|
|
child_count: 0,
|
2021-09-28 10:36:17 +00:00
|
|
|
},
|
|
|
|
my_vote: None,
|
|
|
|
resolver: None,
|
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(read_jessica_report_view, expected_jessica_report_view);
|
|
|
|
|
|
|
|
let mut expected_sara_report_view = expected_jessica_report_view.clone();
|
|
|
|
expected_sara_report_view.comment_report = inserted_sara_report;
|
|
|
|
expected_sara_report_view.creator = PersonSafe {
|
|
|
|
id: inserted_sara.id,
|
|
|
|
name: inserted_sara.name,
|
|
|
|
display_name: None,
|
|
|
|
published: inserted_sara.published,
|
|
|
|
avatar: None,
|
2022-11-19 04:33:54 +00:00
|
|
|
actor_id: inserted_sara.actor_id.clone(),
|
2021-09-28 10:36:17 +00:00
|
|
|
local: true,
|
|
|
|
banned: false,
|
|
|
|
deleted: false,
|
|
|
|
admin: false,
|
|
|
|
bot_account: false,
|
|
|
|
bio: None,
|
|
|
|
banner: None,
|
|
|
|
updated: None,
|
2022-11-19 04:33:54 +00:00
|
|
|
inbox_url: inserted_sara.inbox_url.clone(),
|
2021-09-28 10:36:17 +00:00
|
|
|
shared_inbox_url: None,
|
|
|
|
matrix_user_id: None,
|
2022-01-08 12:37:07 +00:00
|
|
|
ban_expires: None,
|
2022-10-27 09:24:07 +00:00
|
|
|
instance_id: inserted_instance.id,
|
2021-09-28 10:36:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Do a batch read of timmys reports
|
2022-08-04 19:30:17 +00:00
|
|
|
let reports = CommentReportQuery::builder()
|
2022-11-09 10:05:00 +00:00
|
|
|
.pool(pool)
|
2022-08-04 19:30:17 +00:00
|
|
|
.my_person_id(inserted_timmy.id)
|
|
|
|
.admin(false)
|
|
|
|
.build()
|
2021-09-28 10:36:17 +00:00
|
|
|
.list()
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2021-09-28 10:36:17 +00:00
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
reports,
|
|
|
|
[
|
2022-11-19 04:33:54 +00:00
|
|
|
expected_jessica_report_view.clone(),
|
|
|
|
expected_sara_report_view.clone()
|
2021-09-28 10:36:17 +00:00
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Make sure the counts are correct
|
2022-11-09 10:05:00 +00:00
|
|
|
let report_count = CommentReportView::get_report_count(pool, inserted_timmy.id, false, None)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2021-09-28 10:36:17 +00:00
|
|
|
assert_eq!(2, report_count);
|
|
|
|
|
|
|
|
// Try to resolve the report
|
2022-11-09 10:05:00 +00:00
|
|
|
CommentReport::resolve(pool, inserted_jessica_report.id, inserted_timmy.id)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2021-09-28 10:36:17 +00:00
|
|
|
let read_jessica_report_view_after_resolve =
|
2022-11-09 10:05:00 +00:00
|
|
|
CommentReportView::read(pool, inserted_jessica_report.id, inserted_timmy.id)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2021-09-28 10:36:17 +00:00
|
|
|
|
|
|
|
let mut expected_jessica_report_view_after_resolve = expected_jessica_report_view;
|
|
|
|
expected_jessica_report_view_after_resolve
|
|
|
|
.comment_report
|
|
|
|
.resolved = true;
|
|
|
|
expected_jessica_report_view_after_resolve
|
|
|
|
.comment_report
|
|
|
|
.resolver_id = Some(inserted_timmy.id);
|
|
|
|
expected_jessica_report_view_after_resolve
|
|
|
|
.comment_report
|
|
|
|
.updated = read_jessica_report_view_after_resolve
|
|
|
|
.comment_report
|
|
|
|
.updated;
|
2022-09-26 14:09:32 +00:00
|
|
|
expected_jessica_report_view_after_resolve.resolver = Some(PersonSafe {
|
2021-09-28 10:36:17 +00:00
|
|
|
id: inserted_timmy.id,
|
2022-11-19 04:33:54 +00:00
|
|
|
name: inserted_timmy.name.clone(),
|
2021-09-28 10:36:17 +00:00
|
|
|
display_name: None,
|
|
|
|
published: inserted_timmy.published,
|
|
|
|
avatar: None,
|
2022-11-19 04:33:54 +00:00
|
|
|
actor_id: inserted_timmy.actor_id.clone(),
|
2021-09-28 10:36:17 +00:00
|
|
|
local: true,
|
|
|
|
banned: false,
|
|
|
|
deleted: false,
|
|
|
|
admin: false,
|
|
|
|
bot_account: false,
|
|
|
|
bio: None,
|
|
|
|
banner: None,
|
|
|
|
updated: None,
|
2022-11-19 04:33:54 +00:00
|
|
|
inbox_url: inserted_timmy.inbox_url.clone(),
|
2021-09-28 10:36:17 +00:00
|
|
|
shared_inbox_url: None,
|
|
|
|
matrix_user_id: None,
|
2022-01-08 12:37:07 +00:00
|
|
|
ban_expires: None,
|
2022-10-27 09:24:07 +00:00
|
|
|
instance_id: inserted_instance.id,
|
2021-09-28 10:36:17 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
read_jessica_report_view_after_resolve,
|
|
|
|
expected_jessica_report_view_after_resolve
|
|
|
|
);
|
|
|
|
|
|
|
|
// Do a batch read of timmys reports
|
|
|
|
// It should only show saras, which is unresolved
|
2022-08-04 19:30:17 +00:00
|
|
|
let reports_after_resolve = CommentReportQuery::builder()
|
2022-11-09 10:05:00 +00:00
|
|
|
.pool(pool)
|
2022-08-04 19:30:17 +00:00
|
|
|
.my_person_id(inserted_timmy.id)
|
|
|
|
.admin(false)
|
|
|
|
.build()
|
2021-09-28 10:36:17 +00:00
|
|
|
.list()
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2021-09-28 10:36:17 +00:00
|
|
|
.unwrap();
|
|
|
|
assert_eq!(reports_after_resolve[0], expected_sara_report_view);
|
2022-08-04 19:30:17 +00:00
|
|
|
assert_eq!(reports_after_resolve.len(), 1);
|
2021-09-28 10:36:17 +00:00
|
|
|
|
|
|
|
// Make sure the counts are correct
|
|
|
|
let report_count_after_resolved =
|
2022-11-09 10:05:00 +00:00
|
|
|
CommentReportView::get_report_count(pool, inserted_timmy.id, false, None)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2021-09-28 10:36:17 +00:00
|
|
|
assert_eq!(1, report_count_after_resolved);
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
Person::delete(pool, inserted_timmy.id).await.unwrap();
|
|
|
|
Person::delete(pool, inserted_sara.id).await.unwrap();
|
|
|
|
Person::delete(pool, inserted_jessica.id).await.unwrap();
|
|
|
|
Community::delete(pool, inserted_community.id)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
Instance::delete(pool, inserted_instance.id).await.unwrap();
|
2021-09-28 10:36:17 +00:00
|
|
|
}
|
|
|
|
}
|