use diesel::{result::Error, *}; use lemmy_db_queries::{limit_and_offset, ToSafe, ViewToVec}; use lemmy_db_schema::{ schema::{comment, community, mod_remove_comment, post, user_, user_alias_1}, source::{ comment::Comment, community::{Community, CommunitySafe}, moderator::ModRemoveComment, post::Post, user::{UserAlias1, UserSafe, UserSafeAlias1, User_}, }, }; use serde::Serialize; #[derive(Debug, Serialize, Clone)] pub struct ModRemoveCommentView { pub mod_remove_comment: ModRemoveComment, pub moderator: UserSafe, pub comment: Comment, pub commenter: UserSafeAlias1, pub post: Post, pub community: CommunitySafe, } type ModRemoveCommentViewTuple = ( ModRemoveComment, UserSafe, Comment, UserSafeAlias1, Post, CommunitySafe, ); impl ModRemoveCommentView { pub fn list( conn: &PgConnection, community_id: Option, mod_user_id: Option, page: Option, limit: Option, ) -> Result, Error> { let mut query = mod_remove_comment::table .inner_join(user_::table) .inner_join(comment::table) .inner_join(user_alias_1::table.on(comment::creator_id.eq(user_alias_1::id))) .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, User_::safe_columns_tuple(), comment::all_columns, UserAlias1::safe_columns_tuple(), 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)); }; if let Some(mod_user_id) = mod_user_id { query = query.filter(mod_remove_comment::mod_user_id.eq(mod_user_id)); }; let (limit, offset) = limit_and_offset(page, limit); let res = query .limit(limit) .offset(offset) .order_by(mod_remove_comment::when_.desc()) .load::(conn)?; Ok(Self::from_tuple_to_vec(res)) } } impl ViewToVec for ModRemoveCommentView { type DbTuple = ModRemoveCommentViewTuple; fn from_tuple_to_vec(items: Vec) -> Vec { items .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::>() } }