2020-12-16 21:28:18 +00:00
|
|
|
use diesel::{result::Error, *};
|
2020-12-18 18:38:32 +00:00
|
|
|
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_add, person, person_alias_1},
|
2020-12-21 13:38:34 +00:00
|
|
|
source::{
|
|
|
|
moderator::ModAdd,
|
2021-03-11 04:43:11 +00:00
|
|
|
person::{Person, PersonAlias1, PersonSafe, PersonSafeAlias1},
|
2020-12-21 13:38:34 +00:00
|
|
|
},
|
2021-10-16 13:33:38 +00:00
|
|
|
traits::{ToSafe, ViewToVec},
|
2020-12-18 18:38:32 +00:00
|
|
|
};
|
2021-10-19 16:37:01 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2020-12-16 21:28:18 +00:00
|
|
|
|
2021-10-19 16:37:01 +00:00
|
|
|
#[derive(Debug, Serialize, Deserialize, Clone)]
|
2020-12-16 21:28:18 +00:00
|
|
|
pub struct ModAddView {
|
|
|
|
pub mod_add: ModAdd,
|
2021-03-10 22:33:55 +00:00
|
|
|
pub moderator: PersonSafe,
|
|
|
|
pub modded_person: PersonSafeAlias1,
|
2020-12-16 21:28:18 +00:00
|
|
|
}
|
|
|
|
|
2021-03-10 22:33:55 +00:00
|
|
|
type ModAddViewTuple = (ModAdd, PersonSafe, PersonSafeAlias1);
|
2020-12-16 21:28:18 +00:00
|
|
|
|
|
|
|
impl ModAddView {
|
|
|
|
pub fn list(
|
|
|
|
conn: &PgConnection,
|
2021-03-18 20:25:21 +00:00
|
|
|
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::table
|
2021-03-10 22:33:55 +00:00
|
|
|
.inner_join(person::table.on(mod_add::mod_person_id.eq(person::id)))
|
|
|
|
.inner_join(person_alias_1::table.on(mod_add::other_person_id.eq(person_alias_1::id)))
|
2020-12-16 21:28:18 +00:00
|
|
|
.select((
|
|
|
|
mod_add::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_add::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_add::when_.desc())
|
|
|
|
.load::<ModAddViewTuple>(conn)?;
|
|
|
|
|
2020-12-23 21:56:20 +00:00
|
|
|
Ok(Self::from_tuple_to_vec(res))
|
2020-12-16 21:28:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ViewToVec for ModAddView {
|
|
|
|
type DbTuple = ModAddViewTuple;
|
2020-12-23 21:56:20 +00:00
|
|
|
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: a.0.to_owned(),
|
|
|
|
moderator: a.1.to_owned(),
|
2021-03-10 22:33:55 +00:00
|
|
|
modded_person: a.2.to_owned(),
|
2020-12-16 21:28:18 +00:00
|
|
|
})
|
|
|
|
.collect::<Vec<Self>>()
|
|
|
|
}
|
|
|
|
}
|