lemmy/crates/db_views_moderator/src/mod_sticky_post_view.rs

79 lines
2.5 KiB
Rust
Raw Normal View History

use crate::structs::{ModStickyPostView, ModlogListParams};
2020-12-16 21:28:18 +00:00
use diesel::{result::Error, *};
use lemmy_db_schema::{
newtypes::PersonId,
schema::{community, mod_sticky_post, person, person_alias_1, post},
source::{
2020-12-21 12:28:12 +00:00
community::{Community, CommunitySafe},
moderator::ModStickyPost,
2021-03-11 04:43:11 +00:00
person::{Person, PersonSafe},
post::Post,
},
2021-10-16 13:33:38 +00:00
traits::{ToSafe, ViewToVec},
utils::limit_and_offset,
};
2020-12-16 21:28:18 +00:00
type ModStickyPostViewTuple = (ModStickyPost, Option<PersonSafe>, Post, CommunitySafe);
2020-12-16 21:28:18 +00:00
impl ModStickyPostView {
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_sticky_post::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_sticky_post::table
.left_join(person::table.on(admin_names_join))
2020-12-16 21:28:18 +00:00
.inner_join(post::table)
.inner_join(person_alias_1::table.on(post::creator_id.eq(person_alias_1::id)))
2020-12-16 21:28:18 +00:00
.inner_join(community::table.on(post::community_id.eq(community::id)))
.select((
mod_sticky_post::all_columns,
Person::safe_columns_tuple().nullable(),
2020-12-16 21:28:18 +00:00
post::all_columns,
Community::safe_columns_tuple(),
))
.into_boxed();
if let Some(community_id) = params.community_id {
2020-12-16 21:28:18 +00:00
query = query.filter(post::community_id.eq(community_id));
};
if let Some(mod_person_id) = params.mod_person_id {
2021-03-10 22:33:55 +00:00
query = query.filter(mod_sticky_post::mod_person_id.eq(mod_person_id));
2020-12-16 21:28:18 +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_sticky_post::when_.desc())
.load::<ModStickyPostViewTuple>(conn)?;
let results = Self::from_tuple_to_vec(res);
Ok(results)
2020-12-16 21:28:18 +00:00
}
}
impl ViewToVec for ModStickyPostView {
type DbTuple = ModStickyPostViewTuple;
fn from_tuple_to_vec(items: Vec<Self::DbTuple>) -> Vec<Self> {
items
.into_iter()
2020-12-16 21:28:18 +00:00
.map(|a| Self {
mod_sticky_post: a.0,
moderator: a.1,
post: a.2,
community: a.3,
2020-12-16 21:28:18 +00:00
})
.collect::<Vec<Self>>()
}
}