lemmy/crates/db_views_moderator/src/mod_add_community_view.rs

81 lines
2.3 KiB
Rust
Raw Normal View History

2020-12-16 21:28:18 +00:00
use diesel::{result::Error, *};
use lemmy_db_queries::{limit_and_offset, ToSafe, ViewToVec};
use lemmy_db_schema::{
2021-03-10 22:33:55 +00:00
schema::{community, mod_add_community, person, person_alias_1},
2020-12-21 12:28:12 +00:00
source::{
community::{Community, CommunitySafe},
moderator::ModAddCommunity,
2021-03-11 04:43:11 +00:00
person::{Person, PersonAlias1, PersonSafe, PersonSafeAlias1},
2020-12-21 12:28:12 +00:00
},
CommunityId,
PersonId,
};
2020-12-16 21:28:18 +00:00
use serde::Serialize;
#[derive(Debug, Serialize, Clone)]
pub struct ModAddCommunityView {
pub mod_add_community: ModAddCommunity,
2021-03-10 22:33:55 +00:00
pub moderator: PersonSafe,
2020-12-16 21:28:18 +00:00
pub community: CommunitySafe,
2021-03-10 22:33:55 +00:00
pub modded_person: PersonSafeAlias1,
2020-12-16 21:28:18 +00:00
}
2021-03-10 22:33:55 +00:00
type ModAddCommunityViewTuple = (ModAddCommunity, PersonSafe, CommunitySafe, PersonSafeAlias1);
2020-12-16 21:28:18 +00:00
impl ModAddCommunityView {
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_add_community::table
2021-03-10 22:33:55 +00:00
.inner_join(person::table.on(mod_add_community::mod_person_id.eq(person::id)))
2020-12-16 21:28:18 +00:00
.inner_join(community::table)
2021-03-11 04:43:11 +00:00
.inner_join(
person_alias_1::table.on(mod_add_community::other_person_id.eq(person_alias_1::id)),
)
2020-12-16 21:28:18 +00:00
.select((
mod_add_community::all_columns,
2021-03-10 22:33:55 +00:00
Person::safe_columns_tuple(),
2020-12-16 21:28:18 +00:00
Community::safe_columns_tuple(),
2021-03-10 22:33:55 +00:00
PersonAlias1::safe_columns_tuple(),
2020-12-16 21:28:18 +00:00
))
.into_boxed();
2021-03-10 22:33:55 +00:00
if let Some(mod_person_id) = mod_person_id {
query = query.filter(mod_add_community::mod_person_id.eq(mod_person_id));
2020-12-16 21:28:18 +00:00
};
if let Some(community_id) = community_id {
query = query.filter(mod_add_community::community_id.eq(community_id));
};
let (limit, offset) = limit_and_offset(page, limit);
let res = query
.limit(limit)
.offset(offset)
.order_by(mod_add_community::when_.desc())
.load::<ModAddCommunityViewTuple>(conn)?;
Ok(Self::from_tuple_to_vec(res))
2020-12-16 21:28:18 +00:00
}
}
impl ViewToVec for ModAddCommunityView {
type DbTuple = ModAddCommunityViewTuple;
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_add_community: a.0.to_owned(),
moderator: a.1.to_owned(),
community: a.2.to_owned(),
2021-03-10 22:33:55 +00:00
modded_person: a.3.to_owned(),
2020-12-16 21:28:18 +00:00
})
.collect::<Vec<Self>>()
}
}