2022-05-03 17:44:13 +00:00
|
|
|
use crate::structs::CommunityFollowerView;
|
2022-11-09 10:05:00 +00:00
|
|
|
use diesel::{result::Error, ExpressionMethods, QueryDsl};
|
|
|
|
use diesel_async::RunQueryDsl;
|
2020-12-18 18:38:32 +00:00
|
|
|
use lemmy_db_schema::{
|
2021-10-16 13:33:38 +00:00
|
|
|
newtypes::{CommunityId, PersonId},
|
2021-03-10 22:33:55 +00:00
|
|
|
schema::{community, community_follower, person},
|
2023-03-01 17:19:46 +00:00
|
|
|
source::{community::Community, person::Person},
|
|
|
|
traits::JoinView,
|
2022-11-09 10:05:00 +00:00
|
|
|
utils::{get_conn, DbPool},
|
2020-12-18 18:38:32 +00:00
|
|
|
};
|
2020-12-06 04:37:16 +00:00
|
|
|
|
2023-03-01 17:19:46 +00:00
|
|
|
type CommunityFollowerViewTuple = (Community, Person);
|
2020-12-11 01:39:42 +00:00
|
|
|
|
2020-12-06 04:37:16 +00:00
|
|
|
impl CommunityFollowerView {
|
2022-11-09 10:05:00 +00:00
|
|
|
pub async fn for_community(pool: &DbPool, community_id: CommunityId) -> Result<Vec<Self>, Error> {
|
|
|
|
let conn = &mut get_conn(pool).await?;
|
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)
|
2023-03-01 17:19:46 +00:00
|
|
|
.select((community::all_columns, person::all_columns))
|
2020-12-16 18:59:43 +00:00
|
|
|
.filter(community_follower::community_id.eq(community_id))
|
2022-02-01 20:00:54 +00:00
|
|
|
.order_by(community::title)
|
2022-11-09 10:05:00 +00:00
|
|
|
.load::<CommunityFollowerViewTuple>(conn)
|
|
|
|
.await?;
|
2020-12-06 04:37:16 +00:00
|
|
|
|
2023-03-01 17:19:46 +00:00
|
|
|
Ok(res.into_iter().map(Self::from_tuple).collect())
|
2020-12-06 04:37:16 +00:00
|
|
|
}
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
pub async fn for_person(pool: &DbPool, person_id: PersonId) -> Result<Vec<Self>, Error> {
|
|
|
|
let conn = &mut get_conn(pool).await?;
|
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)
|
2023-03-01 17:19:46 +00:00
|
|
|
.select((community::all_columns, person::all_columns))
|
2021-03-10 22:33:55 +00:00
|
|
|
.filter(community_follower::person_id.eq(person_id))
|
2022-09-28 20:54:32 +00:00
|
|
|
.filter(community::deleted.eq(false))
|
|
|
|
.filter(community::removed.eq(false))
|
2022-02-01 20:00:54 +00:00
|
|
|
.order_by(community::title)
|
2022-11-09 10:05:00 +00:00
|
|
|
.load::<CommunityFollowerViewTuple>(conn)
|
|
|
|
.await?;
|
2020-12-06 04:37:16 +00:00
|
|
|
|
2023-03-01 17:19:46 +00:00
|
|
|
Ok(res.into_iter().map(Self::from_tuple).collect())
|
2020-12-06 04:37:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-01 17:19:46 +00:00
|
|
|
impl JoinView for CommunityFollowerView {
|
|
|
|
type JoinTuple = CommunityFollowerViewTuple;
|
|
|
|
fn from_tuple(a: Self::JoinTuple) -> Self {
|
|
|
|
Self {
|
|
|
|
community: a.0,
|
|
|
|
follower: a.1,
|
|
|
|
}
|
2020-12-11 01:39:42 +00:00
|
|
|
}
|
2020-12-06 04:37:16 +00:00
|
|
|
}
|