2020-12-06 04:37:16 +00:00
|
|
|
use diesel::{result::Error, *};
|
2020-12-21 23:27:42 +00:00
|
|
|
use lemmy_db_queries::{ToSafe, ViewToVec};
|
2020-12-18 18:38:32 +00:00
|
|
|
use lemmy_db_schema::{
|
2021-03-10 22:33:55 +00:00
|
|
|
schema::{community, community_follower, person},
|
2020-12-21 12:28:12 +00:00
|
|
|
source::{
|
|
|
|
community::{Community, CommunitySafe},
|
2021-03-11 04:43:11 +00:00
|
|
|
person::{Person, PersonSafe},
|
2020-12-21 12:28:12 +00:00
|
|
|
},
|
2021-03-18 20:25:21 +00:00
|
|
|
CommunityId,
|
|
|
|
PersonId,
|
2020-12-18 18:38:32 +00:00
|
|
|
};
|
2020-12-06 04:37:16 +00:00
|
|
|
use serde::Serialize;
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Clone)]
|
|
|
|
pub struct CommunityFollowerView {
|
|
|
|
pub community: CommunitySafe,
|
2021-03-10 22:33:55 +00:00
|
|
|
pub follower: PersonSafe,
|
2020-12-06 04:37:16 +00:00
|
|
|
}
|
|
|
|
|
2021-03-10 22:33:55 +00:00
|
|
|
type CommunityFollowerViewTuple = (CommunitySafe, PersonSafe);
|
2020-12-11 01:39:42 +00:00
|
|
|
|
2020-12-06 04:37:16 +00:00
|
|
|
impl CommunityFollowerView {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub fn for_community(conn: &PgConnection, community_id: CommunityId) -> Result<Vec<Self>, Error> {
|
2020-12-06 04:37:16 +00:00
|
|
|
let res = community_follower::table
|
|
|
|
.inner_join(community::table)
|
2021-03-10 22:33:55 +00:00
|
|
|
.inner_join(person::table)
|
2021-03-11 04:43:11 +00:00
|
|
|
.select((
|
|
|
|
Community::safe_columns_tuple(),
|
|
|
|
Person::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-23 21:56:20 +00:00
|
|
|
Ok(Self::from_tuple_to_vec(res))
|
2020-12-06 04:37:16 +00:00
|
|
|
}
|
|
|
|
|
2021-03-18 20:25:21 +00:00
|
|
|
pub fn for_person(conn: &PgConnection, person_id: PersonId) -> Result<Vec<Self>, Error> {
|
2020-12-06 04:37:16 +00:00
|
|
|
let res = community_follower::table
|
|
|
|
.inner_join(community::table)
|
2021-03-10 22:33:55 +00:00
|
|
|
.inner_join(person::table)
|
2021-03-11 04:43:11 +00:00
|
|
|
.select((
|
|
|
|
Community::safe_columns_tuple(),
|
|
|
|
Person::safe_columns_tuple(),
|
|
|
|
))
|
2021-03-10 22:33:55 +00:00
|
|
|
.filter(community_follower::person_id.eq(person_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-23 21:56:20 +00:00
|
|
|
Ok(Self::from_tuple_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;
|
2020-12-23 21:56:20 +00:00
|
|
|
fn from_tuple_to_vec(items: Vec<Self::DbTuple>) -> Vec<Self> {
|
|
|
|
items
|
2020-12-11 01:39:42 +00:00
|
|
|
.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
|
|
|
}
|