use crate::structs::CommunityFollowerView; use diesel::{result::Error, ExpressionMethods, QueryDsl}; use diesel_async::RunQueryDsl; use lemmy_db_schema::{ newtypes::{CommunityId, PersonId}, schema::{community, community_follower, person}, source::{ community::{Community, CommunitySafe}, person::{Person, PersonSafe}, }, traits::{ToSafe, ViewToVec}, utils::{get_conn, DbPool}, }; type CommunityFollowerViewTuple = (CommunitySafe, PersonSafe); impl CommunityFollowerView { pub async fn for_community(pool: &DbPool, community_id: CommunityId) -> Result, Error> { let conn = &mut get_conn(pool).await?; let res = community_follower::table .inner_join(community::table) .inner_join(person::table) .select(( Community::safe_columns_tuple(), Person::safe_columns_tuple(), )) .filter(community_follower::community_id.eq(community_id)) .order_by(community::title) .load::(conn) .await?; Ok(Self::from_tuple_to_vec(res)) } pub async fn for_person(pool: &DbPool, person_id: PersonId) -> Result, Error> { let conn = &mut get_conn(pool).await?; let res = community_follower::table .inner_join(community::table) .inner_join(person::table) .select(( Community::safe_columns_tuple(), Person::safe_columns_tuple(), )) .filter(community_follower::person_id.eq(person_id)) .filter(community::deleted.eq(false)) .filter(community::removed.eq(false)) .order_by(community::title) .load::(conn) .await?; Ok(Self::from_tuple_to_vec(res)) } } impl ViewToVec for CommunityFollowerView { type DbTuple = CommunityFollowerViewTuple; fn from_tuple_to_vec(items: Vec) -> Vec { items .into_iter() .map(|a| Self { community: a.0, follower: a.1, }) .collect::>() } }