2020-12-06 04:37:16 +00:00
|
|
|
use crate::{
|
2020-12-13 17:04:42 +00:00
|
|
|
source::{
|
|
|
|
community::{Community, CommunitySafe},
|
|
|
|
user::{UserSafe, User_},
|
|
|
|
},
|
2020-12-11 01:39:42 +00:00
|
|
|
views::ViewToVec,
|
2020-12-06 04:37:16 +00:00
|
|
|
ToSafe,
|
|
|
|
};
|
|
|
|
use diesel::{result::Error, *};
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::schema::{community, community_follower, user_};
|
2020-12-06 04:37:16 +00:00
|
|
|
use serde::Serialize;
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Clone)]
|
|
|
|
pub struct CommunityFollowerView {
|
|
|
|
pub community: CommunitySafe,
|
|
|
|
pub follower: UserSafe,
|
|
|
|
}
|
|
|
|
|
2020-12-11 01:39:42 +00:00
|
|
|
type CommunityFollowerViewTuple = (CommunitySafe, UserSafe);
|
|
|
|
|
2020-12-06 04:37:16 +00:00
|
|
|
impl CommunityFollowerView {
|
2020-12-16 18:59:43 +00:00
|
|
|
pub fn for_community(conn: &PgConnection, community_id: i32) -> Result<Vec<Self>, Error> {
|
2020-12-06 04:37:16 +00:00
|
|
|
let res = community_follower::table
|
|
|
|
.inner_join(community::table)
|
|
|
|
.inner_join(user_::table)
|
|
|
|
.select((Community::safe_columns_tuple(), User_::safe_columns_tuple()))
|
2020-12-16 18:59:43 +00:00
|
|
|
.filter(community_follower::community_id.eq(community_id))
|
2020-12-06 04:37:16 +00:00
|
|
|
.order_by(community_follower::published)
|
2020-12-11 01:39:42 +00:00
|
|
|
.load::<CommunityFollowerViewTuple>(conn)?;
|
2020-12-06 04:37:16 +00:00
|
|
|
|
2020-12-11 01:39:42 +00:00
|
|
|
Ok(Self::to_vec(res))
|
2020-12-06 04:37:16 +00:00
|
|
|
}
|
|
|
|
|
2020-12-16 18:59:43 +00:00
|
|
|
pub fn for_user(conn: &PgConnection, user_id: i32) -> Result<Vec<Self>, Error> {
|
2020-12-06 04:37:16 +00:00
|
|
|
let res = community_follower::table
|
|
|
|
.inner_join(community::table)
|
|
|
|
.inner_join(user_::table)
|
|
|
|
.select((Community::safe_columns_tuple(), User_::safe_columns_tuple()))
|
2020-12-16 18:59:43 +00:00
|
|
|
.filter(community_follower::user_id.eq(user_id))
|
2020-12-06 04:37:16 +00:00
|
|
|
.order_by(community_follower::published)
|
2020-12-11 01:39:42 +00:00
|
|
|
.load::<CommunityFollowerViewTuple>(conn)?;
|
2020-12-06 04:37:16 +00:00
|
|
|
|
2020-12-11 01:39:42 +00:00
|
|
|
Ok(Self::to_vec(res))
|
2020-12-06 04:37:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-11 01:39:42 +00:00
|
|
|
impl ViewToVec for CommunityFollowerView {
|
|
|
|
type DbTuple = CommunityFollowerViewTuple;
|
|
|
|
fn to_vec(users: Vec<Self::DbTuple>) -> Vec<Self> {
|
|
|
|
users
|
|
|
|
.iter()
|
|
|
|
.map(|a| Self {
|
|
|
|
community: a.0.to_owned(),
|
|
|
|
follower: a.1.to_owned(),
|
|
|
|
})
|
|
|
|
.collect::<Vec<Self>>()
|
|
|
|
}
|
2020-12-06 04:37:16 +00:00
|
|
|
}
|