2022-05-03 17:44:13 +00:00
|
|
|
use crate::structs::PersonMentionView;
|
2022-11-09 10:05:00 +00:00
|
|
|
use diesel::{
|
2022-11-19 04:33:54 +00:00
|
|
|
dsl::now,
|
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::{
|
2022-05-03 17:44:13 +00:00
|
|
|
aggregates::structs::CommentAggregates,
|
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,
|
2021-03-10 22:33:55 +00:00
|
|
|
community_person_ban,
|
|
|
|
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
|
|
|
},
|
|
|
|
source::{
|
|
|
|
comment::{Comment, CommentSaved},
|
2023-03-01 17:19:46 +00:00
|
|
|
community::{Community, CommunityFollower, CommunityPersonBan},
|
|
|
|
person::Person,
|
2021-08-19 20:54:15 +00:00
|
|
|
person_block::PersonBlock,
|
2021-03-10 22:33:55 +00:00
|
|
|
person_mention::PersonMention,
|
2021-03-11 04:43:11 +00:00
|
|
|
post::Post,
|
2020-12-18 17:27:25 +00:00
|
|
|
},
|
2023-03-01 17:19:46 +00:00
|
|
|
traits::JoinView,
|
2022-11-09 10:05:00 +00:00
|
|
|
utils::{functions::hot_rank, get_conn, limit_and_offset, DbPool},
|
2022-07-30 03:55:59 +00:00
|
|
|
CommentSortType,
|
2020-12-18 16:17:21 +00:00
|
|
|
};
|
2022-08-04 19:30:17 +00:00
|
|
|
use typed_builder::TypedBuilder;
|
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,
|
2023-03-01 17:19:46 +00:00
|
|
|
Person,
|
2020-12-16 16:09:21 +00:00
|
|
|
Post,
|
2023-03-01 17:19:46 +00:00
|
|
|
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>,
|
2021-08-19 20:54:15 +00:00
|
|
|
Option<PersonBlock>,
|
2020-12-16 16:09:21 +00:00
|
|
|
Option<i16>,
|
|
|
|
);
|
|
|
|
|
2021-03-10 22:33:55 +00:00
|
|
|
impl PersonMentionView {
|
2022-11-09 10:05:00 +00:00
|
|
|
pub async fn read(
|
|
|
|
pool: &DbPool,
|
2021-03-18 20:25:21 +00:00
|
|
|
person_mention_id: PersonMentionId,
|
|
|
|
my_person_id: Option<PersonId>,
|
2020-12-16 16:09:21 +00:00
|
|
|
) -> Result<Self, Error> {
|
2022-11-09 10:05:00 +00:00
|
|
|
let conn = &mut get_conn(pool).await?;
|
2022-09-26 14:09:32 +00:00
|
|
|
let person_alias_1 = diesel::alias!(person as person1);
|
|
|
|
|
2020-12-16 16:09:21 +00:00
|
|
|
// The left join below will return None in this case
|
2021-03-18 20:25:21 +00:00
|
|
|
let person_id_join = my_person_id.unwrap_or(PersonId(-1));
|
2020-12-16 16:09:21 +00:00
|
|
|
|
|
|
|
let (
|
2021-03-10 22:33:55 +00:00
|
|
|
person_mention,
|
2020-12-16 16:09:21 +00:00
|
|
|
comment,
|
|
|
|
creator,
|
|
|
|
post,
|
|
|
|
community,
|
|
|
|
recipient,
|
|
|
|
counts,
|
|
|
|
creator_banned_from_community,
|
2022-06-22 12:05:41 +00:00
|
|
|
follower,
|
2020-12-16 16:09:21 +00:00
|
|
|
saved,
|
2021-08-19 20:54:15 +00:00
|
|
|
creator_blocked,
|
2020-12-16 16:09:21 +00:00
|
|
|
my_vote,
|
2021-03-10 22:33:55 +00:00
|
|
|
) = person_mention::table
|
|
|
|
.find(person_mention_id)
|
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)))
|
2022-09-26 14:09:32 +00:00
|
|
|
.inner_join(person_alias_1)
|
2020-12-16 16:09:21 +00:00
|
|
|
.inner_join(comment_aggregates::table.on(comment::id.eq(comment_aggregates::comment_id)))
|
|
|
|
.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)
|
2023-04-25 23:28:06 +00:00
|
|
|
.and(community_person_ban::person_id.eq(comment::creator_id)),
|
2020-12-16 16:09:21 +00:00
|
|
|
),
|
|
|
|
)
|
|
|
|
.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
|
|
|
),
|
|
|
|
)
|
2021-08-19 20:54:15 +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
|
|
|
),
|
|
|
|
)
|
|
|
|
.select((
|
2021-03-10 22:33:55 +00:00
|
|
|
person_mention::all_columns,
|
2020-12-16 16:09:21 +00:00
|
|
|
comment::all_columns,
|
2023-03-01 17:19:46 +00:00
|
|
|
person::all_columns,
|
2020-12-16 16:09:21 +00:00
|
|
|
post::all_columns,
|
2023-03-01 17:19:46 +00:00
|
|
|
community::all_columns,
|
|
|
|
person_alias_1.fields(person::all_columns),
|
2020-12-16 16:09:21 +00:00
|
|
|
comment_aggregates::all_columns,
|
2021-03-10 22:33:55 +00:00
|
|
|
community_person_ban::all_columns.nullable(),
|
2020-12-16 16:09:21 +00:00
|
|
|
community_follower::all_columns.nullable(),
|
|
|
|
comment_saved::all_columns.nullable(),
|
2021-08-19 20:54:15 +00:00
|
|
|
person_block::all_columns.nullable(),
|
2020-12-16 16:09:21 +00:00
|
|
|
comment_like::score.nullable(),
|
|
|
|
))
|
2022-11-09 10:05:00 +00:00
|
|
|
.first::<PersonMentionViewTuple>(conn)
|
|
|
|
.await?;
|
2020-12-16 16:09:21 +00:00
|
|
|
|
2021-03-10 22:33:55 +00:00
|
|
|
Ok(PersonMentionView {
|
|
|
|
person_mention,
|
2020-12-16 16:09:21 +00:00
|
|
|
comment,
|
|
|
|
creator,
|
|
|
|
post,
|
|
|
|
community,
|
|
|
|
recipient,
|
|
|
|
counts,
|
|
|
|
creator_banned_from_community: creator_banned_from_community.is_some(),
|
2022-06-22 12:05:41 +00:00
|
|
|
subscribed: CommunityFollower::to_subscribed_type(&follower),
|
2020-12-16 16:09:21 +00:00
|
|
|
saved: saved.is_some(),
|
2021-08-19 20:54:15 +00:00
|
|
|
creator_blocked: creator_blocked.is_some(),
|
2020-12-16 16:09:21 +00:00
|
|
|
my_vote,
|
|
|
|
})
|
|
|
|
}
|
2021-10-16 10:43:41 +00:00
|
|
|
|
|
|
|
/// Gets the number of unread mentions
|
2022-11-09 10:05:00 +00:00
|
|
|
pub async fn get_unread_mentions(pool: &DbPool, my_person_id: PersonId) -> Result<i64, Error> {
|
2022-11-19 04:33:54 +00:00
|
|
|
use diesel::dsl::count;
|
2022-11-09 10:05:00 +00:00
|
|
|
let conn = &mut get_conn(pool).await?;
|
2021-10-16 10:43:41 +00:00
|
|
|
|
|
|
|
person_mention::table
|
2022-09-29 20:52:14 +00:00
|
|
|
.inner_join(comment::table)
|
2021-10-16 10:43:41 +00:00
|
|
|
.filter(person_mention::recipient_id.eq(my_person_id))
|
|
|
|
.filter(person_mention::read.eq(false))
|
2022-09-29 20:52:14 +00:00
|
|
|
.filter(comment::deleted.eq(false))
|
|
|
|
.filter(comment::removed.eq(false))
|
2021-10-16 10:43:41 +00:00
|
|
|
.select(count(person_mention::id))
|
|
|
|
.first::<i64>(conn)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2021-10-16 10:43:41 +00:00
|
|
|
}
|
2020-12-16 16:09:21 +00:00
|
|
|
}
|
|
|
|
|
2022-08-04 19:30:17 +00:00
|
|
|
#[derive(TypedBuilder)]
|
|
|
|
#[builder(field_defaults(default))]
|
|
|
|
pub struct PersonMentionQuery<'a> {
|
|
|
|
#[builder(!default)]
|
2022-11-09 10:05:00 +00:00
|
|
|
pool: &'a DbPool,
|
2021-03-18 20:25:21 +00:00
|
|
|
my_person_id: Option<PersonId>,
|
|
|
|
recipient_id: Option<PersonId>,
|
2022-07-30 03:55:59 +00:00
|
|
|
sort: Option<CommentSortType>,
|
2021-04-15 03:37:51 +00:00
|
|
|
unread_only: Option<bool>,
|
2022-07-30 03:55:59 +00:00
|
|
|
show_bot_accounts: Option<bool>,
|
2020-12-16 16:09:21 +00:00
|
|
|
page: Option<i64>,
|
|
|
|
limit: Option<i64>,
|
|
|
|
}
|
|
|
|
|
2022-08-04 19:30:17 +00:00
|
|
|
impl<'a> PersonMentionQuery<'a> {
|
2022-11-09 10:05:00 +00:00
|
|
|
pub async fn list(self) -> Result<Vec<PersonMentionView>, Error> {
|
|
|
|
let conn = &mut get_conn(self.pool).await?;
|
2020-12-16 18:59:43 +00:00
|
|
|
|
2022-09-26 14:09:32 +00:00
|
|
|
let person_alias_1 = diesel::alias!(person as person1);
|
|
|
|
|
2020-12-16 16:09:21 +00:00
|
|
|
// The left join below will return None in this case
|
2021-03-18 20:25:21 +00:00
|
|
|
let person_id_join = self.my_person_id.unwrap_or(PersonId(-1));
|
2020-12-16 16:09:21 +00:00
|
|
|
|
2021-03-10 22:33:55 +00:00
|
|
|
let mut query = person_mention::table
|
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)))
|
2022-09-26 14:09:32 +00:00
|
|
|
.inner_join(person_alias_1)
|
2020-12-16 16:09:21 +00:00
|
|
|
.inner_join(comment_aggregates::table.on(comment::id.eq(comment_aggregates::comment_id)))
|
|
|
|
.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)
|
2022-01-08 12:37:07 +00:00
|
|
|
.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
|
|
|
),
|
|
|
|
)
|
|
|
|
.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
|
|
|
),
|
|
|
|
)
|
2021-08-19 20:54:15 +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
|
|
|
),
|
|
|
|
)
|
|
|
|
.select((
|
2021-03-10 22:33:55 +00:00
|
|
|
person_mention::all_columns,
|
2020-12-16 16:09:21 +00:00
|
|
|
comment::all_columns,
|
2023-03-01 17:19:46 +00:00
|
|
|
person::all_columns,
|
2020-12-16 16:09:21 +00:00
|
|
|
post::all_columns,
|
2023-03-01 17:19:46 +00:00
|
|
|
community::all_columns,
|
|
|
|
person_alias_1.fields(person::all_columns),
|
2020-12-16 16:09:21 +00:00
|
|
|
comment_aggregates::all_columns,
|
2021-03-10 22:33:55 +00:00
|
|
|
community_person_ban::all_columns.nullable(),
|
2020-12-16 16:09:21 +00:00
|
|
|
community_follower::all_columns.nullable(),
|
|
|
|
comment_saved::all_columns.nullable(),
|
2021-08-19 20:54:15 +00:00
|
|
|
person_block::all_columns.nullable(),
|
2020-12-16 16:09:21 +00:00
|
|
|
comment_like::score.nullable(),
|
|
|
|
))
|
|
|
|
.into_boxed();
|
|
|
|
|
2020-12-16 18:59:43 +00:00
|
|
|
if let Some(recipient_id) = self.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
|
|
|
}
|
|
|
|
|
2021-04-26 13:50:34 +00:00
|
|
|
if self.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
|
|
|
}
|
|
|
|
|
2022-07-30 03:55:59 +00:00
|
|
|
if !self.show_bot_accounts.unwrap_or(true) {
|
|
|
|
query = query.filter(person::bot_account.eq(false));
|
|
|
|
};
|
|
|
|
|
|
|
|
query = match self.sort.unwrap_or(CommentSortType::Hot) {
|
|
|
|
CommentSortType::Hot => query
|
|
|
|
.then_order_by(hot_rank(comment_aggregates::score, comment_aggregates::published).desc())
|
2021-01-06 04:42:48 +00:00
|
|
|
.then_order_by(comment_aggregates::published.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
|
|
|
};
|
|
|
|
|
2022-07-08 10:21:33 +00:00
|
|
|
let (limit, offset) = limit_and_offset(self.page, self.limit)?;
|
2020-12-16 16:09:21 +00:00
|
|
|
|
|
|
|
let res = query
|
|
|
|
.limit(limit)
|
|
|
|
.offset(offset)
|
2022-11-09 10:05:00 +00:00
|
|
|
.load::<PersonMentionViewTuple>(conn)
|
|
|
|
.await?;
|
2020-12-16 16:09:21 +00:00
|
|
|
|
2023-03-01 17:19:46 +00:00
|
|
|
Ok(res.into_iter().map(PersonMentionView::from_tuple).collect())
|
2020-12-16 16:09:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-01 17:19:46 +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
|
|
|
}
|
|
|
|
}
|