2020-12-17 03:03:03 +00:00
|
|
|
use diesel::{result::Error, *};
|
2020-12-21 23:27:42 +00:00
|
|
|
use lemmy_db_queries::{limit_and_offset, MaybeOptional, ToSafe, ViewToVec};
|
2020-12-18 17:27:25 +00:00
|
|
|
use lemmy_db_schema::{
|
2021-03-11 04:43:11 +00:00
|
|
|
schema::{community, person, person_alias_1, person_alias_2, post, post_report},
|
2020-12-18 18:38:32 +00:00
|
|
|
source::{
|
2020-12-21 12:28:12 +00:00
|
|
|
community::{Community, CommunitySafe},
|
2021-03-11 04:43:11 +00:00
|
|
|
person::{Person, PersonAlias1, PersonAlias2, PersonSafe, PersonSafeAlias1, PersonSafeAlias2},
|
2020-12-18 18:38:32 +00:00
|
|
|
post::Post,
|
2020-12-21 13:38:34 +00:00
|
|
|
post_report::PostReport,
|
2020-12-18 18:38:32 +00:00
|
|
|
},
|
2021-03-18 20:25:21 +00:00
|
|
|
CommunityId,
|
2020-12-18 17:27:25 +00:00
|
|
|
};
|
2020-12-17 03:03:03 +00:00
|
|
|
use serde::Serialize;
|
|
|
|
|
|
|
|
#[derive(Debug, PartialEq, Serialize, Clone)]
|
|
|
|
pub struct PostReportView {
|
|
|
|
pub post_report: PostReport,
|
|
|
|
pub post: Post,
|
|
|
|
pub community: CommunitySafe,
|
2021-03-10 22:33:55 +00:00
|
|
|
pub creator: PersonSafe,
|
|
|
|
pub post_creator: PersonSafeAlias1,
|
|
|
|
pub resolver: Option<PersonSafeAlias2>,
|
2020-12-17 03:03:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type PostReportViewTuple = (
|
|
|
|
PostReport,
|
|
|
|
Post,
|
|
|
|
CommunitySafe,
|
2021-03-10 22:33:55 +00:00
|
|
|
PersonSafe,
|
|
|
|
PersonSafeAlias1,
|
|
|
|
Option<PersonSafeAlias2>,
|
2020-12-17 03:03:03 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
impl PostReportView {
|
|
|
|
/// returns the PostReportView for the provided report_id
|
|
|
|
///
|
|
|
|
/// * `report_id` - the report id to obtain
|
|
|
|
pub fn read(conn: &PgConnection, report_id: i32) -> Result<Self, Error> {
|
|
|
|
let (post_report, post, community, creator, post_creator, resolver) = post_report::table
|
|
|
|
.find(report_id)
|
|
|
|
.inner_join(post::table)
|
|
|
|
.inner_join(community::table.on(post::community_id.eq(community::id)))
|
2021-03-10 22:33:55 +00:00
|
|
|
.inner_join(person::table.on(post_report::creator_id.eq(person::id)))
|
|
|
|
.inner_join(person_alias_1::table.on(post::creator_id.eq(person_alias_1::id)))
|
2021-03-11 04:43:11 +00:00
|
|
|
.left_join(
|
|
|
|
person_alias_2::table.on(post_report::resolver_id.eq(person_alias_2::id.nullable())),
|
|
|
|
)
|
2020-12-17 03:03:03 +00:00
|
|
|
.select((
|
|
|
|
post_report::all_columns,
|
|
|
|
post::all_columns,
|
|
|
|
Community::safe_columns_tuple(),
|
2021-03-10 22:33:55 +00:00
|
|
|
Person::safe_columns_tuple(),
|
|
|
|
PersonAlias1::safe_columns_tuple(),
|
|
|
|
PersonAlias2::safe_columns_tuple().nullable(),
|
2020-12-17 03:03:03 +00:00
|
|
|
))
|
|
|
|
.first::<PostReportViewTuple>(conn)?;
|
|
|
|
|
|
|
|
Ok(Self {
|
|
|
|
post_report,
|
|
|
|
post,
|
|
|
|
community,
|
|
|
|
creator,
|
|
|
|
post_creator,
|
|
|
|
resolver,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
/// returns the current unresolved post report count for the supplied community ids
|
|
|
|
///
|
|
|
|
/// * `community_ids` - a Vec<i32> of community_ids to get a count for
|
|
|
|
/// TODO this eq_any is a bad way to do this, would be better to join to communitymoderator
|
2021-03-10 22:33:55 +00:00
|
|
|
/// for a person id
|
2021-03-18 20:25:21 +00:00
|
|
|
pub fn get_report_count(
|
|
|
|
conn: &PgConnection,
|
|
|
|
community_ids: &[CommunityId],
|
|
|
|
) -> Result<i64, Error> {
|
2020-12-17 03:03:03 +00:00
|
|
|
use diesel::dsl::*;
|
|
|
|
post_report::table
|
|
|
|
.inner_join(post::table)
|
|
|
|
.filter(
|
|
|
|
post_report::resolved
|
|
|
|
.eq(false)
|
|
|
|
.and(post::community_id.eq_any(community_ids)),
|
|
|
|
)
|
|
|
|
.select(count(post_report::id))
|
|
|
|
.first::<i64>(conn)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct PostReportQueryBuilder<'a> {
|
|
|
|
conn: &'a PgConnection,
|
2021-03-18 20:25:21 +00:00
|
|
|
community_ids: Option<Vec<CommunityId>>, // TODO bad way to do this
|
2020-12-17 03:03:03 +00:00
|
|
|
page: Option<i64>,
|
|
|
|
limit: Option<i64>,
|
|
|
|
resolved: Option<bool>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> PostReportQueryBuilder<'a> {
|
|
|
|
pub fn create(conn: &'a PgConnection) -> Self {
|
|
|
|
PostReportQueryBuilder {
|
|
|
|
conn,
|
|
|
|
community_ids: None,
|
|
|
|
page: None,
|
|
|
|
limit: None,
|
|
|
|
resolved: Some(false),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-18 20:25:21 +00:00
|
|
|
pub fn community_ids<T: MaybeOptional<Vec<CommunityId>>>(mut self, community_ids: T) -> Self {
|
2020-12-17 03:03:03 +00:00
|
|
|
self.community_ids = community_ids.get_optional();
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn page<T: MaybeOptional<i64>>(mut self, page: T) -> Self {
|
|
|
|
self.page = page.get_optional();
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn limit<T: MaybeOptional<i64>>(mut self, limit: T) -> Self {
|
|
|
|
self.limit = limit.get_optional();
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn resolved<T: MaybeOptional<bool>>(mut self, resolved: T) -> Self {
|
|
|
|
self.resolved = resolved.get_optional();
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn list(self) -> Result<Vec<PostReportView>, Error> {
|
|
|
|
let mut query = post_report::table
|
|
|
|
.inner_join(post::table)
|
|
|
|
.inner_join(community::table.on(post::community_id.eq(community::id)))
|
2021-03-10 22:33:55 +00:00
|
|
|
.inner_join(person::table.on(post_report::creator_id.eq(person::id)))
|
|
|
|
.inner_join(person_alias_1::table.on(post::creator_id.eq(person_alias_1::id)))
|
2021-03-11 04:43:11 +00:00
|
|
|
.left_join(
|
|
|
|
person_alias_2::table.on(post_report::resolver_id.eq(person_alias_2::id.nullable())),
|
|
|
|
)
|
2020-12-17 03:03:03 +00:00
|
|
|
.select((
|
|
|
|
post_report::all_columns,
|
|
|
|
post::all_columns,
|
|
|
|
Community::safe_columns_tuple(),
|
2021-03-10 22:33:55 +00:00
|
|
|
Person::safe_columns_tuple(),
|
|
|
|
PersonAlias1::safe_columns_tuple(),
|
|
|
|
PersonAlias2::safe_columns_tuple().nullable(),
|
2020-12-17 03:03:03 +00:00
|
|
|
))
|
|
|
|
.into_boxed();
|
|
|
|
|
|
|
|
if let Some(comm_ids) = self.community_ids {
|
|
|
|
query = query.filter(post::community_id.eq_any(comm_ids));
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(resolved_flag) = self.resolved {
|
|
|
|
query = query.filter(post_report::resolved.eq(resolved_flag));
|
|
|
|
}
|
|
|
|
|
|
|
|
let (limit, offset) = limit_and_offset(self.page, self.limit);
|
|
|
|
|
|
|
|
let res = query
|
|
|
|
.order_by(post_report::published.asc())
|
|
|
|
.limit(limit)
|
|
|
|
.offset(offset)
|
|
|
|
.load::<PostReportViewTuple>(self.conn)?;
|
|
|
|
|
2020-12-23 21:56:20 +00:00
|
|
|
Ok(PostReportView::from_tuple_to_vec(res))
|
2020-12-17 03:03:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ViewToVec for PostReportView {
|
|
|
|
type DbTuple = PostReportViewTuple;
|
2020-12-23 21:56:20 +00:00
|
|
|
fn from_tuple_to_vec(items: Vec<Self::DbTuple>) -> Vec<Self> {
|
|
|
|
items
|
2020-12-17 03:03:03 +00:00
|
|
|
.iter()
|
|
|
|
.map(|a| Self {
|
|
|
|
post_report: a.0.to_owned(),
|
|
|
|
post: a.1.to_owned(),
|
|
|
|
community: a.2.to_owned(),
|
|
|
|
creator: a.3.to_owned(),
|
|
|
|
post_creator: a.4.to_owned(),
|
|
|
|
resolver: a.5.to_owned(),
|
|
|
|
})
|
|
|
|
.collect::<Vec<Self>>()
|
|
|
|
}
|
|
|
|
}
|