X-Git-Url: http://these/git/?a=blobdiff_plain;f=crates%2Fdb_views_moderator%2Fsrc%2Fmod_sticky_post_view.rs;h=a47e1dc899af88e52b55ee89cf5d7bed5e9d0ef2;hb=21455d6b73a559e3cbaff894c68d2bf069f06c92;hp=5e0d205695e65bf062745613b3a2c9aad421833f;hpb=08a797c986ba92736f12761b18980f557dd156d4;p=lemmy.git diff --git a/crates/db_views_moderator/src/mod_sticky_post_view.rs b/crates/db_views_moderator/src/mod_sticky_post_view.rs index 5e0d2056..a47e1dc8 100644 --- a/crates/db_views_moderator/src/mod_sticky_post_view.rs +++ b/crates/db_views_moderator/src/mod_sticky_post_view.rs @@ -1,8 +1,8 @@ -use crate::structs::ModStickyPostView; +use crate::structs::{ModStickyPostView, ModlogListParams}; use diesel::{result::Error, *}; use lemmy_db_schema::{ - newtypes::{CommunityId, PersonId}, - schema::{community, mod_sticky_post, person, post}, + newtypes::PersonId, + schema::{community, mod_sticky_post, person, person_alias_1, post}, source::{ community::{Community, CommunitySafe}, moderator::ModStickyPost, @@ -13,37 +13,43 @@ use lemmy_db_schema::{ utils::limit_and_offset, }; -type ModStickyPostViewTuple = (ModStickyPost, PersonSafe, Post, CommunitySafe); +type ModStickyPostViewTuple = (ModStickyPost, Option, Post, CommunitySafe); impl ModStickyPostView { - pub fn list( - conn: &PgConnection, - community_id: Option, - mod_person_id: Option, - page: Option, - limit: Option, - ) -> Result, Error> { + pub fn list(conn: &PgConnection, params: ModlogListParams) -> Result, 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::(); + + 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))); let mut query = mod_sticky_post::table - .inner_join(person::table) + .left_join(person::table.on(admin_names_join)) .inner_join(post::table) + .inner_join(person_alias_1::table.on(post::creator_id.eq(person_alias_1::id))) .inner_join(community::table.on(post::community_id.eq(community::id))) .select(( mod_sticky_post::all_columns, - Person::safe_columns_tuple(), + Person::safe_columns_tuple().nullable(), post::all_columns, Community::safe_columns_tuple(), )) .into_boxed(); - if let Some(community_id) = community_id { + if let Some(community_id) = params.community_id { query = query.filter(post::community_id.eq(community_id)); }; - if let Some(mod_person_id) = mod_person_id { + if let Some(mod_person_id) = params.mod_person_id { query = query.filter(mod_sticky_post::mod_person_id.eq(mod_person_id)); }; - let (limit, offset) = limit_and_offset(page, limit)?; + 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)?; let res = query .limit(limit) @@ -51,7 +57,8 @@ impl ModStickyPostView { .order_by(mod_sticky_post::when_.desc()) .load::(conn)?; - Ok(Self::from_tuple_to_vec(res)) + let results = Self::from_tuple_to_vec(res); + Ok(results) } }