lemmy/crates/db_views_actor/src/community_person_ban_view.rs
2023-07-05 06:33:53 +00:00

31 lines
1 KiB
Rust

use crate::structs::CommunityPersonBanView;
use diesel::{result::Error, ExpressionMethods, QueryDsl};
use diesel_async::RunQueryDsl;
use lemmy_db_schema::{
newtypes::{CommunityId, PersonId},
schema::{community, community_person_ban, person},
source::{community::Community, person::Person},
utils::{DbPool, GetConn},
};
impl CommunityPersonBanView {
pub async fn get(
mut pool: &mut impl GetConn,
from_person_id: PersonId,
from_community_id: CommunityId,
) -> Result<Self, Error> {
let conn = &mut *pool.get_conn().await?;
let (community, person) = community_person_ban::table
.inner_join(community::table)
.inner_join(person::table)
.select((community::all_columns, person::all_columns))
.filter(community_person_ban::community_id.eq(from_community_id))
.filter(community_person_ban::person_id.eq(from_person_id))
.order_by(community_person_ban::published)
.first::<(Community, Person)>(conn)
.await?;
Ok(CommunityPersonBanView { community, person })
}
}