2022-05-03 17:44:13 +00:00
|
|
|
use crate::structs::PersonMentionView;
|
2022-11-09 10:05:00 +00:00
|
|
|
use diesel::{
|
2024-05-22 12:50:26 +00:00
|
|
|
dsl::{exists, not},
|
2023-07-28 08:36:50 +00:00
|
|
|
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::{
|
2024-11-11 10:34:10 +00:00
|
|
|
aliases::{self, creator_community_actions},
|
2021-10-16 13:33:38 +00:00
|
|
|
newtypes::{PersonId, PersonMentionId},
|
2020-12-18 17:27:25 +00:00
|
|
|
schema::{
|
|
|
|
comment,
|
2024-11-11 10:34:10 +00:00
|
|
|
comment_actions,
|
2020-12-18 17:27:25 +00:00
|
|
|
comment_aggregates,
|
|
|
|
community,
|
2024-11-11 10:34:10 +00:00
|
|
|
community_actions,
|
2023-11-21 16:20:24 +00:00
|
|
|
local_user,
|
2021-03-10 22:33:55 +00:00
|
|
|
person,
|
2024-11-11 10:34:10 +00:00
|
|
|
person_actions,
|
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
|
|
|
},
|
2024-11-11 10:34:10 +00:00
|
|
|
source::{community::CommunityFollower, local_user::LocalUser},
|
|
|
|
utils::{
|
|
|
|
actions,
|
|
|
|
actions_alias,
|
|
|
|
get_conn,
|
|
|
|
limit_and_offset,
|
|
|
|
DbConn,
|
|
|
|
DbPool,
|
|
|
|
ListFn,
|
|
|
|
Queries,
|
|
|
|
ReadFn,
|
2024-11-07 10:49:05 +00:00
|
|
|
},
|
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 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>| {
|
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)))
|
2024-11-11 10:34:10 +00:00
|
|
|
.left_join(actions(
|
|
|
|
community_actions::table,
|
|
|
|
my_person_id,
|
|
|
|
post::community_id,
|
|
|
|
))
|
|
|
|
.left_join(actions(comment_actions::table, my_person_id, comment::id))
|
|
|
|
.left_join(actions(
|
|
|
|
person_actions::table,
|
|
|
|
my_person_id,
|
|
|
|
comment::creator_id,
|
|
|
|
))
|
|
|
|
.left_join(actions_alias(
|
|
|
|
creator_community_actions,
|
|
|
|
comment::creator_id,
|
|
|
|
post::community_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,
|
2024-11-11 10:34:10 +00:00
|
|
|
creator_community_actions
|
|
|
|
.field(community_actions::received_ban)
|
|
|
|
.nullable()
|
|
|
|
.is_not_null(),
|
|
|
|
community_actions::received_ban.nullable().is_not_null(),
|
|
|
|
creator_community_actions
|
|
|
|
.field(community_actions::became_moderator)
|
|
|
|
.nullable()
|
|
|
|
.is_not_null(),
|
2023-11-21 16:20:24 +00:00
|
|
|
creator_is_admin,
|
2024-11-11 10:34:10 +00:00
|
|
|
CommunityFollower::select_subscribed_type(),
|
|
|
|
comment_actions::saved.nullable().is_not_null(),
|
|
|
|
person_actions::blocked.nullable().is_not_null(),
|
|
|
|
comment_actions::like_score.nullable(),
|
2023-11-21 16:20:24 +00:00
|
|
|
))
|
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,
|
|
|
|
)
|
2024-04-16 12:48:15 +00:00
|
|
|
.first(&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 {
|
2024-05-29 21:55:15 +00:00
|
|
|
// These filters need to be kept in sync with the filters in
|
|
|
|
// PersonMentionView::get_unread_mentions()
|
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 {
|
2024-05-29 21:55:15 +00:00
|
|
|
query = query.filter(not(person::bot_account));
|
2022-07-30 03:55:59 +00:00
|
|
|
};
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2024-05-22 12:50:26 +00:00
|
|
|
// Don't show mentions from blocked persons
|
2024-11-11 10:34:10 +00:00
|
|
|
query = query.filter(person_actions::blocked.is_null());
|
2024-05-22 12:50:26 +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>,
|
2024-09-23 15:26:50 +00:00
|
|
|
) -> Result<Self, Error> {
|
2023-07-28 08:36:50 +00:00
|
|
|
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<'_>,
|
2024-05-29 21:55:15 +00:00
|
|
|
local_user: &LocalUser,
|
2023-07-28 08:36:50 +00:00
|
|
|
) -> Result<i64, Error> {
|
|
|
|
use diesel::dsl::count;
|
|
|
|
let conn = &mut get_conn(pool).await?;
|
2020-12-16 16:09:21 +00:00
|
|
|
|
2024-05-29 21:55:15 +00:00
|
|
|
let mut query = person_mention::table
|
2023-07-28 08:36:50 +00:00
|
|
|
.inner_join(comment::table)
|
2024-11-11 10:34:10 +00:00
|
|
|
.left_join(actions(
|
|
|
|
person_actions::table,
|
|
|
|
Some(local_user.person_id),
|
|
|
|
comment::creator_id,
|
|
|
|
))
|
2024-05-29 21:55:15 +00:00
|
|
|
.inner_join(person::table.on(comment::creator_id.eq(person::id)))
|
|
|
|
.into_boxed();
|
|
|
|
|
|
|
|
// These filters need to be kept in sync with the filters in queries().list()
|
|
|
|
if !local_user.show_bot_accounts {
|
|
|
|
query = query.filter(not(person::bot_account));
|
|
|
|
}
|
|
|
|
|
|
|
|
query
|
|
|
|
// Don't count replies from blocked users
|
2024-11-11 10:34:10 +00:00
|
|
|
.filter(person_actions::blocked.is_null())
|
2024-05-29 21:55:15 +00:00
|
|
|
.filter(person_mention::recipient_id.eq(local_user.person_id))
|
2023-07-28 08:36:50 +00:00
|
|
|
.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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-22 12:50:26 +00:00
|
|
|
#[derive(Default, Clone)]
|
2023-07-28 08:36:50 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2024-05-22 12:50:26 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
|
|
|
|
use crate::{person_mention_view::PersonMentionQuery, structs::PersonMentionView};
|
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::{
|
|
|
|
comment::{Comment, CommentInsertForm},
|
|
|
|
community::{Community, CommunityInsertForm},
|
|
|
|
instance::Instance,
|
2024-05-29 21:55:15 +00:00
|
|
|
local_user::{LocalUser, LocalUserInsertForm, LocalUserUpdateForm},
|
|
|
|
person::{Person, PersonInsertForm, PersonUpdateForm},
|
2024-05-22 12:50:26 +00:00
|
|
|
person_block::{PersonBlock, PersonBlockForm},
|
|
|
|
person_mention::{PersonMention, PersonMentionInsertForm, PersonMentionUpdateForm},
|
|
|
|
post::{Post, PostInsertForm},
|
|
|
|
},
|
|
|
|
traits::{Blockable, Crud},
|
|
|
|
utils::build_db_pool_for_tests,
|
|
|
|
};
|
2024-05-29 21:55:15 +00:00
|
|
|
use lemmy_db_views::structs::LocalUserView;
|
2024-09-23 15:26:50 +00:00
|
|
|
use lemmy_utils::error::LemmyResult;
|
2024-05-22 12:50:26 +00:00
|
|
|
use pretty_assertions::assert_eq;
|
|
|
|
use serial_test::serial;
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
#[serial]
|
|
|
|
async fn test_crud() -> LemmyResult<()> {
|
2024-11-07 10:49:05 +00:00
|
|
|
let pool = &build_db_pool_for_tests();
|
2024-05-22 12:50:26 +00:00
|
|
|
let pool = &mut pool.into();
|
|
|
|
|
|
|
|
let inserted_instance = Instance::read_or_create(pool, "my_domain.tld".to_string()).await?;
|
|
|
|
|
2024-06-06 12:29:18 +00:00
|
|
|
let new_person = PersonInsertForm::test_form(inserted_instance.id, "terrylake");
|
2024-05-22 12:50:26 +00:00
|
|
|
|
|
|
|
let inserted_person = Person::create(pool, &new_person).await?;
|
|
|
|
|
2024-06-06 12:29:18 +00:00
|
|
|
let recipient_form = PersonInsertForm::test_form(inserted_instance.id, "terrylakes recipient");
|
2024-05-22 12:50:26 +00:00
|
|
|
|
|
|
|
let inserted_recipient = Person::create(pool, &recipient_form).await?;
|
|
|
|
let recipient_id = inserted_recipient.id;
|
|
|
|
|
2024-05-29 21:55:15 +00:00
|
|
|
let recipient_local_user =
|
|
|
|
LocalUser::create(pool, &LocalUserInsertForm::test_form(recipient_id), vec![]).await?;
|
|
|
|
|
2024-09-20 12:15:25 +00:00
|
|
|
let new_community = CommunityInsertForm::new(
|
|
|
|
inserted_instance.id,
|
|
|
|
"test community lake".to_string(),
|
|
|
|
"nada".to_owned(),
|
|
|
|
"pubkey".to_string(),
|
|
|
|
);
|
2024-05-22 12:50:26 +00:00
|
|
|
let inserted_community = Community::create(pool, &new_community).await?;
|
|
|
|
|
2024-09-20 12:15:25 +00:00
|
|
|
let new_post = PostInsertForm::new(
|
|
|
|
"A test post".into(),
|
|
|
|
inserted_person.id,
|
|
|
|
inserted_community.id,
|
|
|
|
);
|
2024-05-22 12:50:26 +00:00
|
|
|
let inserted_post = Post::create(pool, &new_post).await?;
|
|
|
|
|
2024-09-20 12:15:25 +00:00
|
|
|
let comment_form = CommentInsertForm::new(
|
|
|
|
inserted_person.id,
|
|
|
|
inserted_post.id,
|
|
|
|
"A test comment".into(),
|
|
|
|
);
|
2024-05-22 12:50:26 +00:00
|
|
|
let inserted_comment = Comment::create(pool, &comment_form, None).await?;
|
|
|
|
|
|
|
|
let person_mention_form = PersonMentionInsertForm {
|
|
|
|
recipient_id: inserted_recipient.id,
|
|
|
|
comment_id: inserted_comment.id,
|
|
|
|
read: None,
|
|
|
|
};
|
|
|
|
|
|
|
|
let inserted_mention = PersonMention::create(pool, &person_mention_form).await?;
|
|
|
|
|
|
|
|
let expected_mention = PersonMention {
|
|
|
|
id: inserted_mention.id,
|
|
|
|
recipient_id: inserted_mention.recipient_id,
|
|
|
|
comment_id: inserted_mention.comment_id,
|
|
|
|
read: false,
|
|
|
|
published: inserted_mention.published,
|
|
|
|
};
|
|
|
|
|
2024-09-23 15:26:50 +00:00
|
|
|
let read_mention = PersonMention::read(pool, inserted_mention.id).await?;
|
2024-05-22 12:50:26 +00:00
|
|
|
|
|
|
|
let person_mention_update_form = PersonMentionUpdateForm { read: Some(false) };
|
|
|
|
let updated_mention =
|
|
|
|
PersonMention::update(pool, inserted_mention.id, &person_mention_update_form).await?;
|
|
|
|
|
|
|
|
// Test to make sure counts and blocks work correctly
|
2024-05-29 21:55:15 +00:00
|
|
|
let unread_mentions =
|
|
|
|
PersonMentionView::get_unread_mentions(pool, &recipient_local_user).await?;
|
2024-05-22 12:50:26 +00:00
|
|
|
|
|
|
|
let query = PersonMentionQuery {
|
|
|
|
recipient_id: Some(recipient_id),
|
|
|
|
my_person_id: Some(recipient_id),
|
|
|
|
sort: None,
|
|
|
|
unread_only: false,
|
|
|
|
show_bot_accounts: true,
|
|
|
|
page: None,
|
|
|
|
limit: None,
|
|
|
|
};
|
|
|
|
let mentions = query.clone().list(pool).await?;
|
|
|
|
assert_eq!(1, unread_mentions);
|
|
|
|
assert_eq!(1, mentions.len());
|
|
|
|
|
|
|
|
// Block the person, and make sure these counts are now empty
|
|
|
|
let block_form = PersonBlockForm {
|
|
|
|
person_id: recipient_id,
|
|
|
|
target_id: inserted_person.id,
|
|
|
|
};
|
|
|
|
PersonBlock::block(pool, &block_form).await?;
|
|
|
|
|
|
|
|
let unread_mentions_after_block =
|
2024-05-29 21:55:15 +00:00
|
|
|
PersonMentionView::get_unread_mentions(pool, &recipient_local_user).await?;
|
|
|
|
let mentions_after_block = query.clone().list(pool).await?;
|
2024-05-22 12:50:26 +00:00
|
|
|
assert_eq!(0, unread_mentions_after_block);
|
|
|
|
assert_eq!(0, mentions_after_block.len());
|
|
|
|
|
2024-05-29 21:55:15 +00:00
|
|
|
// Unblock user so we can reuse the same person
|
|
|
|
PersonBlock::unblock(pool, &block_form).await?;
|
|
|
|
|
|
|
|
// Turn Terry into a bot account
|
|
|
|
let person_update_form = PersonUpdateForm {
|
|
|
|
bot_account: Some(true),
|
|
|
|
..Default::default()
|
|
|
|
};
|
|
|
|
Person::update(pool, inserted_person.id, &person_update_form).await?;
|
|
|
|
|
|
|
|
let recipient_local_user_update_form = LocalUserUpdateForm {
|
|
|
|
show_bot_accounts: Some(false),
|
|
|
|
..Default::default()
|
|
|
|
};
|
|
|
|
LocalUser::update(
|
|
|
|
pool,
|
|
|
|
recipient_local_user.id,
|
|
|
|
&recipient_local_user_update_form,
|
|
|
|
)
|
|
|
|
.await?;
|
2024-09-23 15:26:50 +00:00
|
|
|
let recipient_local_user_view = LocalUserView::read(pool, recipient_local_user.id).await?;
|
2024-05-29 21:55:15 +00:00
|
|
|
|
|
|
|
let unread_mentions_after_hide_bots =
|
|
|
|
PersonMentionView::get_unread_mentions(pool, &recipient_local_user_view.local_user).await?;
|
|
|
|
|
|
|
|
let mut query_without_bots = query.clone();
|
|
|
|
query_without_bots.show_bot_accounts = false;
|
|
|
|
let replies_after_hide_bots = query_without_bots.list(pool).await?;
|
|
|
|
assert_eq!(0, unread_mentions_after_hide_bots);
|
|
|
|
assert_eq!(0, replies_after_hide_bots.len());
|
|
|
|
|
2024-05-22 12:50:26 +00:00
|
|
|
Comment::delete(pool, inserted_comment.id).await?;
|
|
|
|
Post::delete(pool, inserted_post.id).await?;
|
|
|
|
Community::delete(pool, inserted_community.id).await?;
|
|
|
|
Person::delete(pool, inserted_person.id).await?;
|
|
|
|
Person::delete(pool, inserted_recipient.id).await?;
|
|
|
|
Instance::delete(pool, inserted_instance.id).await?;
|
|
|
|
|
|
|
|
assert_eq!(expected_mention, read_mention);
|
|
|
|
assert_eq!(expected_mention, inserted_mention);
|
|
|
|
assert_eq!(expected_mention, updated_mention);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|