lemmy/lemmy_db/src/views/community_moderator_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_moderator, 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 CommunityModeratorView {
pub community: CommunitySafe,
pub moderator: UserSafe,
}
2020-12-11 01:39:42 +00:00
type CommunityModeratorViewTuple = (CommunitySafe, UserSafe);
2020-12-06 04:37:16 +00:00
impl CommunityModeratorView {
pub fn for_community(conn: &PgConnection, community_id: i32) -> Result<Vec<Self>, Error> {
2020-12-06 04:37:16 +00:00
let res = community_moderator::table
.inner_join(community::table)
.inner_join(user_::table)
.select((Community::safe_columns_tuple(), User_::safe_columns_tuple()))
.filter(community_moderator::community_id.eq(community_id))
2020-12-06 04:37:16 +00:00
.order_by(community_moderator::published)
2020-12-11 01:39:42 +00:00
.load::<CommunityModeratorViewTuple>(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, user_id: i32) -> Result<Vec<Self>, Error> {
2020-12-06 04:37:16 +00:00
let res = community_moderator::table
.inner_join(community::table)
.inner_join(user_::table)
.select((Community::safe_columns_tuple(), User_::safe_columns_tuple()))
.filter(community_moderator::user_id.eq(user_id))
2020-12-06 04:37:16 +00:00
.order_by(community_moderator::published)
2020-12-11 01:39:42 +00:00
.load::<CommunityModeratorViewTuple>(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 CommunityModeratorView {
type DbTuple = CommunityModeratorViewTuple;
fn to_vec(community_moderators: Vec<Self::DbTuple>) -> Vec<Self> {
community_moderators
.iter()
.map(|a| Self {
community: a.0.to_owned(),
moderator: a.1.to_owned(),
})
.collect::<Vec<Self>>()
}
2020-12-06 04:37:16 +00:00
}