2022-05-03 17:44:13 +00:00
|
|
|
use crate::structs::PersonMentionView;
|
2022-11-09 10:05:00 +00:00
|
|
|
use diesel::{
|
2023-11-21 16:20:24 +00:00
|
|
|
dsl::exists,
|
2023-07-28 08:36:50 +00:00
|
|
|
pg::Pg,
|
2022-11-09 10:05:00 +00:00
|
|
|
result::Error,
|
2023-11-21 16:20:24 +00:00
|
|
|
sql_types,
|
2022-11-09 10:05:00 +00:00
|
|
|
BoolExpressionMethods,
|
2023-11-21 16:20:24 +00:00
|
|
|
BoxableExpression,
|
2022-11-09 10:05:00 +00:00
|
|
|
ExpressionMethods,
|
2023-11-21 16:20:24 +00:00
|
|
|
IntoSql,
|
2022-11-09 10:05:00 +00:00
|
|
|
JoinOnDsl,
|
|
|
|
NullableExpressionMethods,
|
|
|
|
QueryDsl,
|
|
|
|
};
|
|
|
|
use diesel_async::RunQueryDsl;
|
2021-10-16 13:33:38 +00:00
|
|
|
use lemmy_db_schema::{
|
2023-07-28 08:36:50 +00:00
|
|
|
aliases,
|
2021-10-16 13:33:38 +00:00
|
|
|
newtypes::{PersonId, PersonMentionId},
|
2020-12-18 17:27:25 +00:00
|
|
|
schema::{
|
|
|
|
comment,
|
|
|
|
comment_aggregates,
|
|
|
|
comment_like,
|
|
|
|
comment_saved,
|
|
|
|
community,
|
|
|
|
community_follower,
|
2023-11-03 13:41:00 +00:00
|
|
|
community_moderator,
|
2021-03-10 22:33:55 +00:00
|
|
|
community_person_ban,
|
2023-11-21 16:20:24 +00:00
|
|
|
local_user,
|
2021-03-10 22:33:55 +00:00
|
|
|
person,
|
2021-08-19 20:54:15 +00:00
|
|
|
person_block,
|
2021-03-10 22:33:55 +00:00
|
|
|
person_mention,
|
2021-03-11 04:43:11 +00:00
|
|
|
post,
|
2020-12-18 17:27:25 +00:00
|
|
|
},
|
2023-07-28 08:36:50 +00:00
|
|
|
utils::{get_conn, limit_and_offset, DbConn, DbPool, ListFn, Queries, ReadFn},
|
2022-07-30 03:55:59 +00:00
|
|
|
CommentSortType,
|
2020-12-18 16:17:21 +00:00
|
|
|
};
|
2020-12-16 16:09:21 +00:00
|
|
|
|
2023-07-28 08:36:50 +00:00
|
|
|
fn queries<'a>() -> Queries<
|
|
|
|
impl ReadFn<'a, PersonMentionView, (PersonMentionId, Option<PersonId>)>,
|
|
|
|
impl ListFn<'a, PersonMentionView, PersonMentionQuery>,
|
|
|
|
> {
|
2023-11-21 16:20:24 +00:00
|
|
|
let is_creator_banned_from_community = exists(
|
|
|
|
community_person_ban::table.filter(
|
|
|
|
community::id
|
|
|
|
.eq(community_person_ban::community_id)
|
|
|
|
.and(community_person_ban::person_id.eq(comment::creator_id)),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
let is_saved = |person_id| {
|
|
|
|
exists(
|
|
|
|
comment_saved::table.filter(
|
|
|
|
comment::id
|
|
|
|
.eq(comment_saved::comment_id)
|
|
|
|
.and(comment_saved::person_id.eq(person_id)),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
let is_community_followed = |person_id| {
|
|
|
|
community_follower::table
|
|
|
|
.filter(
|
|
|
|
post::community_id
|
|
|
|
.eq(community_follower::community_id)
|
|
|
|
.and(community_follower::person_id.eq(person_id)),
|
|
|
|
)
|
|
|
|
.select(community_follower::pending.nullable())
|
|
|
|
.single_value()
|
|
|
|
};
|
|
|
|
|
|
|
|
let is_creator_blocked = |person_id| {
|
|
|
|
exists(
|
|
|
|
person_block::table.filter(
|
|
|
|
comment::creator_id
|
|
|
|
.eq(person_block::target_id)
|
|
|
|
.and(person_block::person_id.eq(person_id)),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
let score = |person_id| {
|
|
|
|
comment_like::table
|
|
|
|
.filter(
|
|
|
|
comment::id
|
|
|
|
.eq(comment_like::comment_id)
|
|
|
|
.and(comment_like::person_id.eq(person_id)),
|
|
|
|
)
|
|
|
|
.select(comment_like::score.nullable())
|
|
|
|
.single_value()
|
|
|
|
};
|
|
|
|
|
|
|
|
let creator_is_moderator = exists(
|
|
|
|
community_moderator::table.filter(
|
|
|
|
community::id
|
|
|
|
.eq(community_moderator::community_id)
|
|
|
|
.and(community_moderator::person_id.eq(comment::creator_id)),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
let creator_is_admin = exists(
|
|
|
|
local_user::table.filter(
|
|
|
|
comment::creator_id
|
|
|
|
.eq(local_user::person_id)
|
|
|
|
.and(local_user::admin.eq(true)),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
let all_joins = move |query: person_mention::BoxedQuery<'a, Pg>,
|
|
|
|
my_person_id: Option<PersonId>| {
|
|
|
|
let score_selection: Box<
|
|
|
|
dyn BoxableExpression<_, Pg, SqlType = sql_types::Nullable<sql_types::SmallInt>>,
|
|
|
|
> = if let Some(person_id) = my_person_id {
|
|
|
|
Box::new(score(person_id))
|
|
|
|
} else {
|
|
|
|
Box::new(None::<i16>.into_sql::<sql_types::Nullable<sql_types::SmallInt>>())
|
|
|
|
};
|
|
|
|
|
|
|
|
let subscribed_type_selection: Box<
|
|
|
|
dyn BoxableExpression<_, Pg, SqlType = sql_types::Nullable<sql_types::Bool>>,
|
|
|
|
> = if let Some(person_id) = my_person_id {
|
|
|
|
Box::new(is_community_followed(person_id))
|
|
|
|
} else {
|
|
|
|
Box::new(None::<bool>.into_sql::<sql_types::Nullable<sql_types::Bool>>())
|
|
|
|
};
|
|
|
|
|
|
|
|
let is_saved_selection: Box<dyn BoxableExpression<_, Pg, SqlType = sql_types::Bool>> =
|
|
|
|
if let Some(person_id) = my_person_id {
|
|
|
|
Box::new(is_saved(person_id))
|
|
|
|
} else {
|
|
|
|
Box::new(false.into_sql::<sql_types::Bool>())
|
|
|
|
};
|
|
|
|
|
|
|
|
let is_creator_blocked_selection: Box<dyn BoxableExpression<_, Pg, SqlType = sql_types::Bool>> =
|
|
|
|
if let Some(person_id) = my_person_id {
|
|
|
|
Box::new(is_creator_blocked(person_id))
|
|
|
|
} else {
|
|
|
|
Box::new(false.into_sql::<sql_types::Bool>())
|
|
|
|
};
|
2020-12-16 16:09:21 +00:00
|
|
|
|
2023-07-28 08:36:50 +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)))
|
2023-07-28 08:36:50 +00:00
|
|
|
.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)))
|
2023-11-21 16:20:24 +00:00
|
|
|
.select((
|
|
|
|
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,
|
|
|
|
is_creator_banned_from_community,
|
|
|
|
creator_is_moderator,
|
|
|
|
creator_is_admin,
|
|
|
|
subscribed_type_selection,
|
|
|
|
is_saved_selection,
|
|
|
|
is_creator_blocked_selection,
|
|
|
|
score_selection,
|
|
|
|
))
|
2023-07-28 08:36:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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,
|
|
|
|
)
|
2023-08-31 13:26:10 +00:00
|
|
|
.first::<PersonMentionView>(&mut conn)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2023-07-28 08:36:50 +00:00
|
|
|
};
|
2020-12-16 16:09:21 +00:00
|
|
|
|
2023-07-28 08:36:50 +00:00
|
|
|
let list = move |mut conn: DbConn<'a>, options: PersonMentionQuery| async move {
|
2023-11-21 16:20:24 +00:00
|
|
|
let mut query = all_joins(person_mention::table.into_boxed(), options.my_person_id);
|
2020-12-16 16:09:21 +00:00
|
|
|
|
2023-07-28 08:36:50 +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
|
|
|
}
|
|
|
|
|
2023-08-11 09:13:14 +00:00
|
|
|
if options.unread_only {
|
2021-03-10 22:33:55 +00:00
|
|
|
query = query.filter(person_mention::read.eq(false));
|
2020-12-16 16:09:21 +00:00
|
|
|
}
|
|
|
|
|
2023-08-11 09:13:14 +00:00
|
|
|
if !options.show_bot_accounts {
|
2022-07-30 03:55:59 +00:00
|
|
|
query = query.filter(person::bot_account.eq(false));
|
|
|
|
};
|
|
|
|
|
2023-07-28 08:36:50 +00:00
|
|
|
query = match options.sort.unwrap_or(CommentSortType::Hot) {
|
2023-06-08 20:15:15 +00:00
|
|
|
CommentSortType::Hot => query.then_order_by(comment_aggregates::hot_rank.desc()),
|
2023-07-26 17:07:05 +00:00
|
|
|
CommentSortType::Controversial => {
|
|
|
|
query.then_order_by(comment_aggregates::controversy_rank.desc())
|
|
|
|
}
|
2022-07-30 03:55:59 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
|
2023-07-28 08:36:50 +00:00
|
|
|
let (limit, offset) = limit_and_offset(options.page, options.limit)?;
|
2020-12-16 16:09:21 +00:00
|
|
|
|
2023-07-28 08:36:50 +00:00
|
|
|
query
|
2020-12-16 16:09:21 +00:00
|
|
|
.limit(limit)
|
|
|
|
.offset(offset)
|
2023-08-31 13:26:10 +00:00
|
|
|
.load::<PersonMentionView>(&mut conn)
|
2023-07-28 08:36:50 +00:00
|
|
|
.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
|
|
|
|
2023-07-28 08:36:50 +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>,
|
2023-08-11 09:13:14 +00:00
|
|
|
pub unread_only: bool,
|
|
|
|
pub show_bot_accounts: bool,
|
2023-07-28 08:36:50 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|