lemmy/crates/db_views_moderator/src/mod_sticky_post_view.rs

72 lines
1.9 KiB
Rust
Raw Normal View History

use crate::structs::ModStickyPostView;
2020-12-16 21:28:18 +00:00
use diesel::{result::Error, *};
use lemmy_db_schema::{
2021-10-16 13:33:38 +00:00
newtypes::{CommunityId, PersonId},
2021-03-11 04:43:11 +00:00
schema::{community, mod_sticky_post, person, 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
2021-03-10 22:33:55 +00:00
type ModStickyPostViewTuple = (ModStickyPost, PersonSafe, Post, CommunitySafe);
2020-12-16 21:28:18 +00:00
impl ModStickyPostView {
pub fn list(
conn: &PgConnection,
community_id: Option<CommunityId>,
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_sticky_post::table
2021-03-10 22:33:55 +00:00
.inner_join(person::table)
2020-12-16 21:28:18 +00:00
.inner_join(post::table)
.inner_join(community::table.on(post::community_id.eq(community::id)))
.select((
mod_sticky_post::all_columns,
2021-03-10 22:33:55 +00:00
Person::safe_columns_tuple(),
2020-12-16 21:28:18 +00:00
post::all_columns,
Community::safe_columns_tuple(),
))
.into_boxed();
if let Some(community_id) = community_id {
query = query.filter(post::community_id.eq(community_id));
};
2021-03-10 22:33:55 +00:00
if let Some(mod_person_id) = mod_person_id {
query = query.filter(mod_sticky_post::mod_person_id.eq(mod_person_id));
2020-12-16 21:28:18 +00:00
};
let (limit, offset) = limit_and_offset(page, 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)?;
Ok(Self::from_tuple_to_vec(res))
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
2020-12-16 21:28:18 +00:00
.iter()
.map(|a| Self {
mod_sticky_post: a.0.to_owned(),
moderator: a.1.to_owned(),
post: a.2.to_owned(),
community: a.3.to_owned(),
})
.collect::<Vec<Self>>()
}
}