lemmy/crates/db_views_actor/src/person_mention_view.rs

254 lines
7.1 KiB
Rust
Raw Normal View History

use crate::structs::PersonMentionView;
2022-11-09 10:05:00 +00:00
use diesel::{
dsl::now,
pg::Pg,
2022-11-09 10:05:00 +00:00
result::Error,
BoolExpressionMethods,
ExpressionMethods,
JoinOnDsl,
NullableExpressionMethods,
QueryDsl,
};
use diesel_async::RunQueryDsl;
2021-10-16 13:33:38 +00:00
use lemmy_db_schema::{
aggregates::structs::CommentAggregates,
aliases,
2021-10-16 13:33:38 +00:00
newtypes::{PersonId, PersonMentionId},
schema::{
comment,
comment_aggregates,
comment_like,
comment_saved,
community,
community_follower,
2021-03-10 22:33:55 +00:00
community_person_ban,
person,
person_block,
2021-03-10 22:33:55 +00:00
person_mention,
2021-03-11 04:43:11 +00:00
post,
},
source::{
comment::{Comment, CommentSaved},
community::{Community, CommunityFollower, CommunityPersonBan},
person::Person,
person_block::PersonBlock,
2021-03-10 22:33:55 +00:00
person_mention::PersonMention,
2021-03-11 04:43:11 +00:00
post::Post,
},
traits::JoinView,
utils::{get_conn, limit_and_offset, DbConn, DbPool, ListFn, Queries, ReadFn},
CommentSortType,
};
2020-12-16 16:09:21 +00:00
2021-03-10 22:33:55 +00:00
type PersonMentionViewTuple = (
PersonMention,
2020-12-16 16:09:21 +00:00
Comment,
Person,
2020-12-16 16:09:21 +00:00
Post,
Community,
Person,
2020-12-16 16:09:21 +00:00
CommentAggregates,
2021-02-26 13:49:58 +00:00
Option<CommunityPersonBan>,
2020-12-16 16:09:21 +00:00
Option<CommunityFollower>,
Option<CommentSaved>,
Option<PersonBlock>,
2020-12-16 16:09:21 +00:00
Option<i16>,
);
fn queries<'a>() -> Queries<
impl ReadFn<'a, PersonMentionView, (PersonMentionId, Option<PersonId>)>,
impl ListFn<'a, PersonMentionView, PersonMentionQuery>,
> {
let all_joins = |query: person_mention::BoxedQuery<'a, Pg>, my_person_id: Option<PersonId>| {
2020-12-16 16:09:21 +00:00
// The left join below will return None in this case
let person_id_join = my_person_id.unwrap_or(PersonId(-1));
2020-12-16 16:09:21 +00:00
query
2020-12-16 16:09:21 +00:00
.inner_join(comment::table)
2021-03-10 22:33:55 +00:00
.inner_join(person::table.on(comment::creator_id.eq(person::id)))
2020-12-16 16:09:21 +00:00
.inner_join(post::table.on(comment::post_id.eq(post::id)))
.inner_join(community::table.on(post::community_id.eq(community::id)))
.inner_join(aliases::person1)
2020-12-16 16:09:21 +00:00
.inner_join(comment_aggregates::table.on(comment::id.eq(comment_aggregates::comment_id)))
.left_join(
community_follower::table.on(
post::community_id
.eq(community_follower::community_id)
2021-03-10 22:33:55 +00:00
.and(community_follower::person_id.eq(person_id_join)),
2020-12-16 16:09:21 +00:00
),
)
.left_join(
comment_saved::table.on(
comment::id
.eq(comment_saved::comment_id)
2021-03-10 22:33:55 +00:00
.and(comment_saved::person_id.eq(person_id_join)),
2020-12-16 16:09:21 +00:00
),
)
.left_join(
person_block::table.on(
comment::creator_id
.eq(person_block::target_id)
.and(person_block::person_id.eq(person_id_join)),
),
)
2020-12-16 16:09:21 +00:00
.left_join(
comment_like::table.on(
comment::id
.eq(comment_like::comment_id)
2021-03-10 22:33:55 +00:00
.and(comment_like::person_id.eq(person_id_join)),
2020-12-16 16:09:21 +00:00
),
)
};
let selection = (
person_mention::all_columns,
comment::all_columns,
person::all_columns,
post::all_columns,
community::all_columns,
aliases::person1.fields(person::all_columns),
comment_aggregates::all_columns,
community_person_ban::all_columns.nullable(),
community_follower::all_columns.nullable(),
comment_saved::all_columns.nullable(),
person_block::all_columns.nullable(),
comment_like::score.nullable(),
);
let read =
move |mut conn: DbConn<'a>,
(person_mention_id, my_person_id): (PersonMentionId, Option<PersonId>)| async move {
all_joins(
person_mention::table.find(person_mention_id).into_boxed(),
my_person_id,
)
.left_join(
community_person_ban::table.on(
community::id
.eq(community_person_ban::community_id)
.and(community_person_ban::person_id.eq(comment::creator_id)),
),
)
.select(selection)
.first::<PersonMentionViewTuple>(&mut conn)
2022-11-09 10:05:00 +00:00
.await
};
2020-12-16 16:09:21 +00:00
let list = move |mut conn: DbConn<'a>, options: PersonMentionQuery| async move {
let mut query = all_joins(person_mention::table.into_boxed(), options.my_person_id)
2020-12-16 16:09:21 +00:00
.left_join(
2021-03-10 22:33:55 +00:00
community_person_ban::table.on(
2020-12-16 16:09:21 +00:00
community::id
2021-03-10 22:33:55 +00:00
.eq(community_person_ban::community_id)
.and(community_person_ban::person_id.eq(comment::creator_id))
.and(
community_person_ban::expires
.is_null()
.or(community_person_ban::expires.gt(now)),
),
2020-12-16 16:09:21 +00:00
),
)
.select(selection);
2020-12-16 16:09:21 +00:00
if let Some(recipient_id) = options.recipient_id {
2021-03-10 22:33:55 +00:00
query = query.filter(person_mention::recipient_id.eq(recipient_id));
2020-12-16 16:09:21 +00:00
}
if options.unread_only.unwrap_or(false) {
2021-03-10 22:33:55 +00:00
query = query.filter(person_mention::read.eq(false));
2020-12-16 16:09:21 +00:00
}
if !options.show_bot_accounts.unwrap_or(true) {
query = query.filter(person::bot_account.eq(false));
};
query = match options.sort.unwrap_or(CommentSortType::Hot) {
CommentSortType::Hot => query.then_order_by(comment_aggregates::hot_rank.desc()),
CommentSortType::Controversial => {
query.then_order_by(comment_aggregates::controversy_rank.desc())
}
CommentSortType::New => query.then_order_by(comment::published.desc()),
CommentSortType::Old => query.then_order_by(comment::published.asc()),
CommentSortType::Top => query.order_by(comment_aggregates::score.desc()),
2020-12-16 16:09:21 +00:00
};
let (limit, offset) = limit_and_offset(options.page, options.limit)?;
2020-12-16 16:09:21 +00:00
query
2020-12-16 16:09:21 +00:00
.limit(limit)
.offset(offset)
.load::<PersonMentionViewTuple>(&mut conn)
.await
};
Queries::new(read, list)
}
impl PersonMentionView {
pub async fn read(
pool: &mut DbPool<'_>,
person_mention_id: PersonMentionId,
my_person_id: Option<PersonId>,
) -> Result<Self, Error> {
queries()
.read(pool, (person_mention_id, my_person_id))
.await
}
/// Gets the number of unread mentions
pub async fn get_unread_mentions(
pool: &mut DbPool<'_>,
my_person_id: PersonId,
) -> Result<i64, Error> {
use diesel::dsl::count;
let conn = &mut get_conn(pool).await?;
2020-12-16 16:09:21 +00:00
person_mention::table
.inner_join(comment::table)
.filter(person_mention::recipient_id.eq(my_person_id))
.filter(person_mention::read.eq(false))
.filter(comment::deleted.eq(false))
.filter(comment::removed.eq(false))
.select(count(person_mention::id))
.first::<i64>(conn)
.await
}
}
#[derive(Default)]
pub struct PersonMentionQuery {
pub my_person_id: Option<PersonId>,
pub recipient_id: Option<PersonId>,
pub sort: Option<CommentSortType>,
pub unread_only: Option<bool>,
pub show_bot_accounts: Option<bool>,
pub page: Option<i64>,
pub limit: Option<i64>,
}
impl PersonMentionQuery {
pub async fn list(self, pool: &mut DbPool<'_>) -> Result<Vec<PersonMentionView>, Error> {
queries().list(pool, self).await
2020-12-16 16:09:21 +00:00
}
}
impl JoinView for PersonMentionView {
type JoinTuple = PersonMentionViewTuple;
fn from_tuple(a: Self::JoinTuple) -> Self {
Self {
person_mention: a.0,
comment: a.1,
creator: a.2,
post: a.3,
community: a.4,
recipient: a.5,
counts: a.6,
creator_banned_from_community: a.7.is_some(),
subscribed: CommunityFollower::to_subscribed_type(&a.8),
saved: a.9.is_some(),
creator_blocked: a.10.is_some(),
my_vote: a.11,
}
2020-12-16 16:09:21 +00:00
}
}