lemmy/crates/db_views_moderator/src/mod_remove_comment_view.rs

96 lines
2.6 KiB
Rust
Raw Normal View History

2020-12-16 21:28:18 +00:00
use diesel::{result::Error, *};
use lemmy_db_schema::{
2021-10-16 13:33:38 +00:00
limit_and_offset,
newtypes::{CommunityId, PersonId},
2021-03-11 04:43:11 +00:00
schema::{comment, community, mod_remove_comment, person, person_alias_1, post},
source::{
comment::Comment,
2020-12-21 12:28:12 +00:00
community::{Community, CommunitySafe},
moderator::ModRemoveComment,
2021-03-11 04:43:11 +00:00
person::{Person, PersonAlias1, PersonSafe, PersonSafeAlias1},
post::Post,
},
2021-10-16 13:33:38 +00:00
traits::{ToSafe, ViewToVec},
};
use serde::{Deserialize, Serialize};
2020-12-16 21:28:18 +00:00
#[derive(Debug, Serialize, Deserialize, Clone)]
2020-12-16 21:28:18 +00:00
pub struct ModRemoveCommentView {
pub mod_remove_comment: ModRemoveComment,
2021-03-10 22:33:55 +00:00
pub moderator: PersonSafe,
2020-12-16 21:28:18 +00:00
pub comment: Comment,
2021-03-10 22:33:55 +00:00
pub commenter: PersonSafeAlias1,
2020-12-16 21:28:18 +00:00
pub post: Post,
pub community: CommunitySafe,
}
type ModRemoveCommentViewTuple = (
ModRemoveComment,
2021-03-10 22:33:55 +00:00
PersonSafe,
2020-12-16 21:28:18 +00:00
Comment,
2021-03-10 22:33:55 +00:00
PersonSafeAlias1,
2020-12-16 21:28:18 +00:00
Post,
CommunitySafe,
);
impl ModRemoveCommentView {
pub fn list(
conn: &PgConnection,
community_id: Option<CommunityId>,
mod_person_id: Option<PersonId>,
2020-12-16 21:28:18 +00:00
page: Option<i64>,
limit: Option<i64>,
) -> Result<Vec<Self>, Error> {
let mut query = mod_remove_comment::table
2021-03-10 22:33:55 +00:00
.inner_join(person::table)
2020-12-16 21:28:18 +00:00
.inner_join(comment::table)
2021-03-10 22:33:55 +00:00
.inner_join(person_alias_1::table.on(comment::creator_id.eq(person_alias_1::id)))
2020-12-16 21:28:18 +00:00
.inner_join(post::table.on(comment::post_id.eq(post::id)))
.inner_join(community::table.on(post::community_id.eq(community::id)))
.select((
mod_remove_comment::all_columns,
2021-03-10 22:33:55 +00:00
Person::safe_columns_tuple(),
2020-12-16 21:28:18 +00:00
comment::all_columns,
2021-03-10 22:33:55 +00:00
PersonAlias1::safe_columns_tuple(),
2020-12-16 21:28:18 +00:00
post::all_columns,
Community::safe_columns_tuple(),
))
.into_boxed();
if let Some(community_id) = community_id {
query = query.filter(post::community_id.eq(community_id));
};
2021-03-10 22:33:55 +00:00
if let Some(mod_person_id) = mod_person_id {
query = query.filter(mod_remove_comment::mod_person_id.eq(mod_person_id));
2020-12-16 21:28:18 +00:00
};
let (limit, offset) = limit_and_offset(page, limit);
let res = query
.limit(limit)
.offset(offset)
.order_by(mod_remove_comment::when_.desc())
.load::<ModRemoveCommentViewTuple>(conn)?;
Ok(Self::from_tuple_to_vec(res))
2020-12-16 21:28:18 +00:00
}
}
impl ViewToVec for ModRemoveCommentView {
type DbTuple = ModRemoveCommentViewTuple;
fn from_tuple_to_vec(items: Vec<Self::DbTuple>) -> Vec<Self> {
items
2020-12-16 21:28:18 +00:00
.iter()
.map(|a| Self {
mod_remove_comment: a.0.to_owned(),
moderator: a.1.to_owned(),
comment: a.2.to_owned(),
commenter: a.3.to_owned(),
post: a.4.to_owned(),
community: a.5.to_owned(),
})
.collect::<Vec<Self>>()
}
}