2022-08-16 11:52:04 +00:00
|
|
|
use crate::structs::{ModBanView, ModlogListParams};
|
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
|
|
|
newtypes::PersonId,
|
2021-03-10 22:33:55 +00:00
|
|
|
schema::{mod_ban, person, person_alias_1},
|
2020-12-21 13:38:34 +00:00
|
|
|
source::{
|
|
|
|
moderator::ModBan,
|
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},
|
2022-05-03 17:44:13 +00:00
|
|
|
utils::limit_and_offset,
|
2020-12-18 18:38:32 +00:00
|
|
|
};
|
2020-12-16 21:28:18 +00:00
|
|
|
|
2022-08-16 11:52:04 +00:00
|
|
|
type ModBanViewTuple = (ModBan, Option<PersonSafe>, PersonSafeAlias1);
|
2020-12-16 21:28:18 +00:00
|
|
|
|
|
|
|
impl ModBanView {
|
2022-08-16 11:52:04 +00:00
|
|
|
pub fn list(conn: &PgConnection, params: ModlogListParams) -> Result<Vec<Self>, Error> {
|
|
|
|
let admin_person_id_join = params.mod_person_id.unwrap_or(PersonId(-1));
|
|
|
|
let show_mod_names = !params.hide_modlog_names;
|
|
|
|
let show_mod_names_expr = show_mod_names.as_sql::<diesel::sql_types::Bool>();
|
|
|
|
|
|
|
|
let admin_names_join = mod_ban::mod_person_id
|
|
|
|
.eq(person::id)
|
|
|
|
.and(show_mod_names_expr.or(person::id.eq(admin_person_id_join)));
|
2020-12-16 21:28:18 +00:00
|
|
|
let mut query = mod_ban::table
|
2022-08-16 11:52:04 +00:00
|
|
|
.left_join(person::table.on(admin_names_join))
|
2021-03-10 22:33:55 +00:00
|
|
|
.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,
|
2022-08-16 11:52:04 +00:00
|
|
|
Person::safe_columns_tuple().nullable(),
|
2021-03-10 22:33:55 +00:00
|
|
|
PersonAlias1::safe_columns_tuple(),
|
2020-12-16 21:28:18 +00:00
|
|
|
))
|
|
|
|
.into_boxed();
|
|
|
|
|
2022-08-16 11:52:04 +00:00
|
|
|
if let Some(mod_person_id) = params.mod_person_id {
|
2021-03-10 22:33:55 +00:00
|
|
|
query = query.filter(mod_ban::mod_person_id.eq(mod_person_id));
|
2020-12-16 21:28:18 +00:00
|
|
|
};
|
|
|
|
|
2022-08-16 11:52:04 +00:00
|
|
|
if let Some(other_person_id) = params.other_person_id {
|
|
|
|
query = query.filter(person_alias_1::id.eq(other_person_id));
|
|
|
|
};
|
|
|
|
|
|
|
|
let (limit, offset) = limit_and_offset(params.page, params.limit)?;
|
2020-12-16 21:28:18 +00:00
|
|
|
|
|
|
|
let res = query
|
|
|
|
.limit(limit)
|
|
|
|
.offset(offset)
|
|
|
|
.order_by(mod_ban::when_.desc())
|
|
|
|
.load::<ModBanViewTuple>(conn)?;
|
|
|
|
|
2022-08-16 11:52:04 +00:00
|
|
|
let results = Self::from_tuple_to_vec(res);
|
|
|
|
Ok(results)
|
2020-12-16 21:28:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ViewToVec for ModBanView {
|
|
|
|
type DbTuple = ModBanViewTuple;
|
2020-12-23 21:56:20 +00:00
|
|
|
fn from_tuple_to_vec(items: Vec<Self::DbTuple>) -> Vec<Self> {
|
|
|
|
items
|
2022-08-04 19:30:17 +00:00
|
|
|
.into_iter()
|
2020-12-16 21:28:18 +00:00
|
|
|
.map(|a| Self {
|
2022-08-04 19:30:17 +00:00
|
|
|
mod_ban: a.0,
|
|
|
|
moderator: a.1,
|
|
|
|
banned_person: a.2,
|
2020-12-16 21:28:18 +00:00
|
|
|
})
|
|
|
|
.collect::<Vec<Self>>()
|
|
|
|
}
|
|
|
|
}
|