lemmy/lemmy_db/src/views/community_follower_view.rs

59 lines
1.7 KiB
Rust
Raw Normal View History

2020-12-06 04:37:16 +00:00
use crate::{
schema::{community, community_follower, user_},
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, *};
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 {
pub fn for_community(conn: &PgConnection, for_community_id: i32) -> Result<Vec<Self>, Error> {
let res = community_follower::table
.inner_join(community::table)
.inner_join(user_::table)
.select((Community::safe_columns_tuple(), User_::safe_columns_tuple()))
.filter(community_follower::community_id.eq(for_community_id))
.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
}
pub fn for_user(conn: &PgConnection, for_user_id: i32) -> Result<Vec<Self>, Error> {
let res = community_follower::table
.inner_join(community::table)
.inner_join(user_::table)
.select((Community::safe_columns_tuple(), User_::safe_columns_tuple()))
.filter(community_follower::user_id.eq(for_user_id))
.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
}