mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-01-11 04:25:55 +00:00
2e8687e203
* Update comment_report_view.rs * Update comment_report_view.rs * Update post_view.rs * Update utils.rs * Update schema.rs * stuff * stuff * fix actions * PostLike * fmt * more post stuff (partial) * remove uplete * returning * rename read_comments field * PersonPostAggregates * a * fix usage of read_comments_amount * comment * community * community_block * instance_block * LocalUser::export_backup * person_block * person * stuff (partial) * update cargo.lock * fix lemmy_db_schema * post_view * comment_report_view * comment_view * post_report_view * find and replace some selected values * private_message_view * vote_view * comment_reply_view * some action views * action_query, find_action * community_view * block views * person_mention_view * remove struct update * refactor actions function * actions_alias * clean up return types and trait bounds * fix all rust code * fmt * clippy fix * Migrate tables * migrate indexes and contraints, and add statistics * fix what appears to be a messed up merge * commented thing * Create uplete.rs * Update uplete.rs * Update uplete.rs * Update up.sql * Update comment.rs * Update Cargo.toml * Update comment.rs * Update post.rs * Update comment_view.rs * Update post_view.rs * Update comment_reply_view.rs * Update person_mention_view.rs * Update Cargo.toml * Update utils.rs * Update comment.rs * Update utils.rs * Update uplete.rs * Update uplete.rs * Update uplete.rs * Update comment.rs * Update uplete.rs * Update uplete.rs * Update uplete.rs * Update uplete.rs * Update uplete.rs * Update uplete.rs * Update comment_view.rs * Update post_view.rs * Update triggers.sql * Update triggers.sql * Update triggers.sql * Update comment_reply_view.rs * Update person_mention_view.rs * Update person_mention_view.rs * Update comment_reply_view.rs * Update uplete.rs * start removing post_id column * Update down.sql * Update schema.rs * Update comment.rs * Update comment.rs * Update comment.rs * Update schema.rs * Update comment.rs * Update like.rs * Update comment.rs * Update up.sql * Update down.sql * Update down.sql * Update up.sql * Update up.sql * Update down.sql * Update comment.rs * Update vote_view.rs * Update vote_view.rs * Update comment_aggregates.rs * Update person_aggregates.rs * Update comment_view.rs * Update vote_view.rs * Update mod.rs * Update create.rs * Update comment.rs * Update community.rs * Update community.rs * Update up.sql * Update uplete.rs * Update uplete.rs * revert to UpleteCount * Update comment.rs * Update traits.rs * Update comment.rs * Update community.rs * Update community_block.rs * Update community.rs * Update instance_block.rs * Update instance.rs * Update community_block.rs * Update person.rs * Update person_block.rs * Update person.rs * Update person_block.rs * Update person.rs * Update instance.rs * Update instance_block.rs * Update instance.rs * Update person.rs * Update post.rs * Update comment.rs * Update community.rs * Update person.rs * Update post_view.rs * Update comment.rs * reduce diff * revert some changes in views * Update post_view.rs * Update comment.rs * Update post.rs * fix missing cfg_attr * rewrite uplete * Update Cargo.toml * Update Cargo.toml * Update uplete.rs * add `pub` to structs that appear in trait bounds * optional = true * Update uplete.rs * Update community.rs * Update comment.rs * Update uplete.rs * Update uplete.rs * Update uplete.rs * Update uplete.rs * something is wrong with me * use new uplete function everywhere * fmt * fmt * Keep post_id when comment_actions::liked is not null * Update up.sql * Update up.sql * clean up up.sql * clean up down.sql * fix * Update person_aggregates.rs * fmt * Update uplete.rs * fmt * Update uplete.rs * Update community.rs * Update uplete.rs * Update local_user.rs * fmt * fix * fix * fmt * improve uplete api * Update uplete.rs * fix * fix * Update uplete.rs * Update uplete.rs * Update uplete.rs * Update uplete.rs * fix * fix test * fix db_views_actor imports * fix uplete import in post_view test * rerun ci * fix AllNull syntax error * fix DynColumn * Fix rust syntax * fmt * fix iter * pain * Update community_moderators.rs * Update community_moderator_view.rs * Update uplete.rs * Fix mistake found by chatgpt * revert debugging stuff, change migration date, refactor constraint * Update down.sql * Update down.sql * fmt * make things added to db_schema::utils more understandable * update rust version for woodpecker * finish merge * Fix index that checked read_comments twice instead of also checking read_comments_amount * fix * uplete: test_count, test_generated_sql_setting_one_column_null, test_count_methods * refactor uplete sql test * test setting both columns to null in uplete * make AllNull generic * test AllNull * Merge remote-tracking branch 'upstream/main' into smoosh-tables-together --------- Co-authored-by: phiresky <phireskyde+git@gmail.com>
379 lines
12 KiB
Rust
379 lines
12 KiB
Rust
use crate::structs::CommentReplyView;
|
|
use diesel::{
|
|
dsl::{exists, not},
|
|
pg::Pg,
|
|
result::Error,
|
|
BoolExpressionMethods,
|
|
ExpressionMethods,
|
|
JoinOnDsl,
|
|
NullableExpressionMethods,
|
|
QueryDsl,
|
|
};
|
|
use diesel_async::RunQueryDsl;
|
|
use lemmy_db_schema::{
|
|
aliases::{self, creator_community_actions},
|
|
newtypes::{CommentReplyId, PersonId},
|
|
schema::{
|
|
comment,
|
|
comment_actions,
|
|
comment_aggregates,
|
|
comment_reply,
|
|
community,
|
|
community_actions,
|
|
local_user,
|
|
person,
|
|
person_actions,
|
|
post,
|
|
},
|
|
source::{community::CommunityFollower, local_user::LocalUser},
|
|
utils::{
|
|
actions,
|
|
actions_alias,
|
|
get_conn,
|
|
limit_and_offset,
|
|
DbConn,
|
|
DbPool,
|
|
ListFn,
|
|
Queries,
|
|
ReadFn,
|
|
},
|
|
CommentSortType,
|
|
};
|
|
|
|
fn queries<'a>() -> Queries<
|
|
impl ReadFn<'a, CommentReplyView, (CommentReplyId, Option<PersonId>)>,
|
|
impl ListFn<'a, CommentReplyView, CommentReplyQuery>,
|
|
> {
|
|
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: comment_reply::BoxedQuery<'a, Pg>,
|
|
my_person_id: Option<PersonId>| {
|
|
query
|
|
.inner_join(comment::table)
|
|
.inner_join(person::table.on(comment::creator_id.eq(person::id)))
|
|
.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)
|
|
.inner_join(comment_aggregates::table.on(comment::id.eq(comment_aggregates::comment_id)))
|
|
.left_join(actions(comment_actions::table, my_person_id, comment::id))
|
|
.left_join(actions(
|
|
community_actions::table,
|
|
my_person_id,
|
|
post::community_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,
|
|
))
|
|
.select((
|
|
comment_reply::all_columns,
|
|
comment::all_columns,
|
|
person::all_columns,
|
|
post::all_columns,
|
|
community::all_columns,
|
|
aliases::person1.fields(person::all_columns),
|
|
comment_aggregates::all_columns,
|
|
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(),
|
|
creator_is_admin,
|
|
CommunityFollower::select_subscribed_type(),
|
|
comment_actions::saved.nullable().is_not_null(),
|
|
person_actions::blocked.nullable().is_not_null(),
|
|
comment_actions::like_score.nullable(),
|
|
))
|
|
};
|
|
|
|
let read =
|
|
move |mut conn: DbConn<'a>,
|
|
(comment_reply_id, my_person_id): (CommentReplyId, Option<PersonId>)| async move {
|
|
all_joins(
|
|
comment_reply::table.find(comment_reply_id).into_boxed(),
|
|
my_person_id,
|
|
)
|
|
.first(&mut conn)
|
|
.await
|
|
};
|
|
|
|
let list = move |mut conn: DbConn<'a>, options: CommentReplyQuery| async move {
|
|
// These filters need to be kept in sync with the filters in
|
|
// CommentReplyView::get_unread_replies()
|
|
let mut query = all_joins(comment_reply::table.into_boxed(), options.my_person_id);
|
|
|
|
if let Some(recipient_id) = options.recipient_id {
|
|
query = query.filter(comment_reply::recipient_id.eq(recipient_id));
|
|
}
|
|
|
|
if options.unread_only {
|
|
query = query.filter(comment_reply::read.eq(false));
|
|
}
|
|
|
|
if !options.show_bot_accounts {
|
|
query = query.filter(not(person::bot_account));
|
|
};
|
|
|
|
query = match options.sort.unwrap_or(CommentSortType::New) {
|
|
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_reply::published.desc()),
|
|
CommentSortType::Old => query.then_order_by(comment_reply::published.asc()),
|
|
CommentSortType::Top => query.order_by(comment_aggregates::score.desc()),
|
|
};
|
|
|
|
// Don't show replies from blocked persons
|
|
query = query.filter(person_actions::blocked.is_null());
|
|
|
|
let (limit, offset) = limit_and_offset(options.page, options.limit)?;
|
|
|
|
query
|
|
.limit(limit)
|
|
.offset(offset)
|
|
.load::<CommentReplyView>(&mut conn)
|
|
.await
|
|
};
|
|
|
|
Queries::new(read, list)
|
|
}
|
|
|
|
impl CommentReplyView {
|
|
pub async fn read(
|
|
pool: &mut DbPool<'_>,
|
|
comment_reply_id: CommentReplyId,
|
|
my_person_id: Option<PersonId>,
|
|
) -> Result<Self, Error> {
|
|
queries().read(pool, (comment_reply_id, my_person_id)).await
|
|
}
|
|
|
|
/// Gets the number of unread replies
|
|
pub async fn get_unread_replies(
|
|
pool: &mut DbPool<'_>,
|
|
local_user: &LocalUser,
|
|
) -> Result<i64, Error> {
|
|
use diesel::dsl::count;
|
|
|
|
let conn = &mut get_conn(pool).await?;
|
|
|
|
let mut query = comment_reply::table
|
|
.inner_join(comment::table)
|
|
.left_join(actions(
|
|
person_actions::table,
|
|
Some(local_user.person_id),
|
|
comment::creator_id,
|
|
))
|
|
.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
|
|
.filter(person_actions::blocked.is_null())
|
|
.filter(comment_reply::recipient_id.eq(local_user.person_id))
|
|
.filter(comment_reply::read.eq(false))
|
|
.filter(comment::deleted.eq(false))
|
|
.filter(comment::removed.eq(false))
|
|
.select(count(comment_reply::id))
|
|
.first::<i64>(conn)
|
|
.await
|
|
}
|
|
}
|
|
|
|
#[derive(Default, Clone)]
|
|
pub struct CommentReplyQuery {
|
|
pub my_person_id: Option<PersonId>,
|
|
pub recipient_id: Option<PersonId>,
|
|
pub sort: Option<CommentSortType>,
|
|
pub unread_only: bool,
|
|
pub show_bot_accounts: bool,
|
|
pub page: Option<i64>,
|
|
pub limit: Option<i64>,
|
|
}
|
|
|
|
impl CommentReplyQuery {
|
|
pub async fn list(self, pool: &mut DbPool<'_>) -> Result<Vec<CommentReplyView>, Error> {
|
|
queries().list(pool, self).await
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
|
|
use crate::{comment_reply_view::CommentReplyQuery, structs::CommentReplyView};
|
|
use lemmy_db_schema::{
|
|
source::{
|
|
comment::{Comment, CommentInsertForm},
|
|
comment_reply::{CommentReply, CommentReplyInsertForm, CommentReplyUpdateForm},
|
|
community::{Community, CommunityInsertForm},
|
|
instance::Instance,
|
|
local_user::{LocalUser, LocalUserInsertForm, LocalUserUpdateForm},
|
|
person::{Person, PersonInsertForm, PersonUpdateForm},
|
|
person_block::{PersonBlock, PersonBlockForm},
|
|
post::{Post, PostInsertForm},
|
|
},
|
|
traits::{Blockable, Crud},
|
|
utils::build_db_pool_for_tests,
|
|
};
|
|
use lemmy_db_views::structs::LocalUserView;
|
|
use lemmy_utils::error::LemmyResult;
|
|
use pretty_assertions::assert_eq;
|
|
use serial_test::serial;
|
|
|
|
#[tokio::test]
|
|
#[serial]
|
|
async fn test_crud() -> LemmyResult<()> {
|
|
let pool = &build_db_pool_for_tests();
|
|
let pool = &mut pool.into();
|
|
|
|
let inserted_instance = Instance::read_or_create(pool, "my_domain.tld".to_string()).await?;
|
|
|
|
let terry_form = PersonInsertForm::test_form(inserted_instance.id, "terrylake");
|
|
let inserted_terry = Person::create(pool, &terry_form).await?;
|
|
|
|
let recipient_form = PersonInsertForm {
|
|
local: Some(true),
|
|
..PersonInsertForm::test_form(inserted_instance.id, "terrylakes recipient")
|
|
};
|
|
|
|
let inserted_recipient = Person::create(pool, &recipient_form).await?;
|
|
let recipient_id = inserted_recipient.id;
|
|
|
|
let recipient_local_user =
|
|
LocalUser::create(pool, &LocalUserInsertForm::test_form(recipient_id), vec![]).await?;
|
|
|
|
let new_community = CommunityInsertForm::new(
|
|
inserted_instance.id,
|
|
"test community lake".to_string(),
|
|
"nada".to_owned(),
|
|
"pubkey".to_string(),
|
|
);
|
|
let inserted_community = Community::create(pool, &new_community).await?;
|
|
|
|
let new_post = PostInsertForm::new(
|
|
"A test post".into(),
|
|
inserted_terry.id,
|
|
inserted_community.id,
|
|
);
|
|
let inserted_post = Post::create(pool, &new_post).await?;
|
|
|
|
let comment_form =
|
|
CommentInsertForm::new(inserted_terry.id, inserted_post.id, "A test comment".into());
|
|
let inserted_comment = Comment::create(pool, &comment_form, None).await?;
|
|
|
|
let comment_reply_form = CommentReplyInsertForm {
|
|
recipient_id: inserted_recipient.id,
|
|
comment_id: inserted_comment.id,
|
|
read: None,
|
|
};
|
|
|
|
let inserted_reply = CommentReply::create(pool, &comment_reply_form).await?;
|
|
|
|
let expected_reply = CommentReply {
|
|
id: inserted_reply.id,
|
|
recipient_id: inserted_reply.recipient_id,
|
|
comment_id: inserted_reply.comment_id,
|
|
read: false,
|
|
published: inserted_reply.published,
|
|
};
|
|
|
|
let read_reply = CommentReply::read(pool, inserted_reply.id).await?;
|
|
|
|
let comment_reply_update_form = CommentReplyUpdateForm { read: Some(false) };
|
|
let updated_reply =
|
|
CommentReply::update(pool, inserted_reply.id, &comment_reply_update_form).await?;
|
|
|
|
// Test to make sure counts and blocks work correctly
|
|
let unread_replies = CommentReplyView::get_unread_replies(pool, &recipient_local_user).await?;
|
|
|
|
let query = CommentReplyQuery {
|
|
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 replies = query.clone().list(pool).await?;
|
|
assert_eq!(1, unread_replies);
|
|
assert_eq!(1, replies.len());
|
|
|
|
// Block the person, and make sure these counts are now empty
|
|
let block_form = PersonBlockForm {
|
|
person_id: recipient_id,
|
|
target_id: inserted_terry.id,
|
|
};
|
|
PersonBlock::block(pool, &block_form).await?;
|
|
|
|
let unread_replies_after_block =
|
|
CommentReplyView::get_unread_replies(pool, &recipient_local_user).await?;
|
|
let replies_after_block = query.clone().list(pool).await?;
|
|
assert_eq!(0, unread_replies_after_block);
|
|
assert_eq!(0, replies_after_block.len());
|
|
|
|
// 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_terry.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?;
|
|
let recipient_local_user_view = LocalUserView::read(pool, recipient_local_user.id).await?;
|
|
|
|
let unread_replies_after_hide_bots =
|
|
CommentReplyView::get_unread_replies(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_replies_after_hide_bots);
|
|
assert_eq!(0, replies_after_hide_bots.len());
|
|
|
|
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_terry.id).await?;
|
|
Person::delete(pool, inserted_recipient.id).await?;
|
|
Instance::delete(pool, inserted_instance.id).await?;
|
|
|
|
assert_eq!(expected_reply, read_reply);
|
|
assert_eq!(expected_reply, inserted_reply);
|
|
assert_eq!(expected_reply, updated_reply);
|
|
Ok(())
|
|
}
|
|
}
|