lemmy/crates/db_views_actor/src/community_moderator_view.rs

86 lines
2.6 KiB
Rust
Raw Normal View History

use crate::structs::CommunityModeratorView;
2020-12-05 21:37:16 -07:00
use diesel::{result::Error, *};
use lemmy_db_schema::{
2021-10-16 07:33:38 -06:00
newtypes::{CommunityId, PersonId},
2021-03-10 15:33:55 -07:00
schema::{community, community_moderator, person},
2020-12-21 05:28:12 -07:00
source::{
community::{Community, CommunitySafe},
2021-03-10 21:43:11 -07:00
person::{Person, PersonSafe},
2020-12-21 05:28:12 -07:00
},
2021-10-16 07:33:38 -06:00
traits::{ToSafe, ViewToVec},
};
2020-12-05 21:37:16 -07:00
2021-03-10 15:33:55 -07:00
type CommunityModeratorViewTuple = (CommunitySafe, PersonSafe);
2020-12-10 18:39:42 -07:00
2020-12-05 21:37:16 -07:00
impl CommunityModeratorView {
pub fn for_community(
conn: &mut PgConnection,
community_id: CommunityId,
) -> Result<Vec<Self>, Error> {
2020-12-05 21:37:16 -07:00
let res = community_moderator::table
.inner_join(community::table)
2021-03-10 15:33:55 -07:00
.inner_join(person::table)
2021-03-10 21:43:11 -07:00
.select((
Community::safe_columns_tuple(),
Person::safe_columns_tuple(),
))
.filter(community_moderator::community_id.eq(community_id))
2020-12-05 21:37:16 -07:00
.order_by(community_moderator::published)
2020-12-10 18:39:42 -07:00
.load::<CommunityModeratorViewTuple>(conn)?;
2020-12-05 21:37:16 -07:00
Ok(Self::from_tuple_to_vec(res))
2020-12-05 21:37:16 -07:00
}
pub fn for_person(conn: &mut PgConnection, person_id: PersonId) -> Result<Vec<Self>, Error> {
2020-12-05 21:37:16 -07:00
let res = community_moderator::table
.inner_join(community::table)
2021-03-10 15:33:55 -07:00
.inner_join(person::table)
2021-03-10 21:43:11 -07:00
.select((
Community::safe_columns_tuple(),
Person::safe_columns_tuple(),
))
2021-03-10 15:33:55 -07:00
.filter(community_moderator::person_id.eq(person_id))
.filter(community::deleted.eq(false))
.filter(community::removed.eq(false))
2020-12-05 21:37:16 -07:00
.order_by(community_moderator::published)
2020-12-10 18:39:42 -07:00
.load::<CommunityModeratorViewTuple>(conn)?;
2020-12-05 21:37:16 -07:00
Ok(Self::from_tuple_to_vec(res))
2020-12-05 21:37:16 -07:00
}
/// Finds all communities first mods / creators
/// Ideally this should be a group by, but diesel doesn't support it yet
pub fn get_community_first_mods(conn: &mut PgConnection) -> Result<Vec<Self>, Error> {
let res = community_moderator::table
.inner_join(community::table)
.inner_join(person::table)
.select((
Community::safe_columns_tuple(),
Person::safe_columns_tuple(),
))
// A hacky workaround instead of group_bys
// https://stackoverflow.com/questions/24042359/how-to-join-only-one-row-in-joined-table-with-postgres
.distinct_on(community_moderator::community_id)
.order_by((
community_moderator::community_id,
community_moderator::person_id,
))
.load::<CommunityModeratorViewTuple>(conn)?;
Ok(Self::from_tuple_to_vec(res))
}
2020-12-05 21:37:16 -07:00
}
2020-12-10 18:39:42 -07:00
impl ViewToVec for CommunityModeratorView {
type DbTuple = CommunityModeratorViewTuple;
fn from_tuple_to_vec(items: Vec<Self::DbTuple>) -> Vec<Self> {
items
.into_iter()
2020-12-10 18:39:42 -07:00
.map(|a| Self {
community: a.0,
moderator: a.1,
2020-12-10 18:39:42 -07:00
})
.collect::<Vec<Self>>()
}
2020-12-05 21:37:16 -07:00
}