lemmy/crates/db_views_moderator/src/mod_ban_view.rs

69 lines
1.7 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::PersonId,
2021-03-10 22:33:55 +00:00
schema::{mod_ban, person, person_alias_1},
source::{
moderator::ModBan,
2021-03-11 04:43:11 +00:00
person::{Person, PersonAlias1, PersonSafe, PersonSafeAlias1},
},
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 ModBanView {
pub mod_ban: ModBan,
2021-03-10 22:33:55 +00:00
pub moderator: PersonSafe,
pub banned_person: PersonSafeAlias1,
2020-12-16 21:28:18 +00:00
}
2021-03-10 22:33:55 +00:00
type ModBanViewTuple = (ModBan, PersonSafe, PersonSafeAlias1);
2020-12-16 21:28:18 +00:00
impl ModBanView {
pub fn list(
conn: &PgConnection,
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_ban::table
2021-03-10 22:33:55 +00:00
.inner_join(person::table.on(mod_ban::mod_person_id.eq(person::id)))
.inner_join(person_alias_1::table.on(mod_ban::other_person_id.eq(person_alias_1::id)))
2020-12-16 21:28:18 +00:00
.select((
mod_ban::all_columns,
2021-03-10 22:33:55 +00:00
Person::safe_columns_tuple(),
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_ban::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_ban::when_.desc())
.load::<ModBanViewTuple>(conn)?;
Ok(Self::from_tuple_to_vec(res))
2020-12-16 21:28:18 +00:00
}
}
impl ViewToVec for ModBanView {
type DbTuple = ModBanViewTuple;
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_ban: a.0.to_owned(),
moderator: a.1.to_owned(),
2021-03-10 22:33:55 +00:00
banned_person: a.2.to_owned(),
2020-12-16 21:28:18 +00:00
})
.collect::<Vec<Self>>()
}
}