use crate::{ limit_and_offset, source::{ community::{Community, CommunitySafe}, moderator::ModRemovePost, user::{UserSafe, User_}, }, views::ViewToVec, ToSafe, }; use diesel::{result::Error, *}; use lemmy_db_schema::{ schema::{community, mod_remove_post, post, user_}, source::post::Post, }; use serde::Serialize; #[derive(Debug, Serialize, Clone)] pub struct ModRemovePostView { pub mod_remove_post: ModRemovePost, pub moderator: UserSafe, pub post: Post, pub community: CommunitySafe, } type ModRemovePostViewTuple = (ModRemovePost, UserSafe, Post, CommunitySafe); impl ModRemovePostView { pub fn list( conn: &PgConnection, community_id: Option, mod_user_id: Option, page: Option, limit: Option, ) -> Result, Error> { let mut query = mod_remove_post::table .inner_join(user_::table) .inner_join(post::table) .inner_join(community::table.on(post::community_id.eq(community::id))) .select(( mod_remove_post::all_columns, User_::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_post::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_post::when_.desc()) .load::(conn)?; Ok(Self::to_vec(res)) } } impl ViewToVec for ModRemovePostView { type DbTuple = ModRemovePostViewTuple; fn to_vec(mrp: Vec) -> Vec { mrp .iter() .map(|a| Self { mod_remove_post: a.0.to_owned(), moderator: a.1.to_owned(), post: a.2.to_owned(), community: a.3.to_owned(), }) .collect::>() } }