lemmy/crates/db_views_actor/src/person_mention_view.rs

321 lines
9.4 KiB
Rust
Raw Normal View History

use crate::structs::PersonMentionView;
2022-11-09 10:05:00 +00:00
use diesel::{
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::{
aggregates::structs::CommentAggregates,
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},
2021-03-11 04:43:11 +00:00
community::{Community, CommunityFollower, CommunityPersonBan, CommunitySafe},
person::{Person, PersonSafe},
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::{ToSafe, ViewToVec},
2022-11-09 10:05:00 +00:00
utils::{functions::hot_rank, get_conn, limit_and_offset, DbPool},
CommentSortType,
};
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,
2021-03-10 22:33:55 +00:00
PersonSafe,
2020-12-16 16:09:21 +00:00
Post,
CommunitySafe,
PersonSafe,
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>,
);
2021-03-10 22:33:55 +00:00
impl PersonMentionView {
2022-11-09 10:05:00 +00:00
pub async fn read(
pool: &DbPool,
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?;
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
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,
follower,
2020-12-16 16:09:21 +00:00
saved,
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)))
.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)
.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
),
)
.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,
2021-03-10 22:33:55 +00:00
Person::safe_columns_tuple(),
2020-12-16 16:09:21 +00:00
post::all_columns,
Community::safe_columns_tuple(),
person_alias_1.fields(Person::safe_columns_tuple()),
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(),
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(),
subscribed: CommunityFollower::to_subscribed_type(&follower),
2020-12-16 16:09:21 +00:00
saved: saved.is_some(),
creator_blocked: creator_blocked.is_some(),
2020-12-16 16:09:21 +00:00
my_vote,
})
}
/// 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> {
use diesel::dsl::count;
2022-11-09 10:05:00 +00:00
let conn = &mut get_conn(pool).await?;
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)
2022-11-09 10:05:00 +00:00
.await
}
2020-12-16 16:09:21 +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,
my_person_id: Option<PersonId>,
recipient_id: Option<PersonId>,
sort: Option<CommentSortType>,
unread_only: Option<bool>,
show_bot_accounts: Option<bool>,
2020-12-16 16:09:21 +00:00
page: Option<i64>,
limit: Option<i64>,
}
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?;
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
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)))
.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)
.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
),
)
.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,
2021-03-10 22:33:55 +00:00
Person::safe_columns_tuple(),
2020-12-16 16:09:21 +00:00
post::all_columns,
Community::safe_columns_tuple(),
person_alias_1.fields(Person::safe_columns_tuple()),
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(),
person_block::all_columns.nullable(),
2020-12-16 16:09:21 +00:00
comment_like::score.nullable(),
))
.into_boxed();
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
}
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
}
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()),
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(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
2021-03-10 22:33:55 +00:00
Ok(PersonMentionView::from_tuple_to_vec(res))
2020-12-16 16:09:21 +00:00
}
}
2021-03-10 22:33:55 +00:00
impl ViewToVec for PersonMentionView {
type DbTuple = PersonMentionViewTuple;
fn from_tuple_to_vec(items: Vec<Self::DbTuple>) -> Vec<Self> {
items
.into_iter()
2020-12-16 16:09:21 +00:00
.map(|a| Self {
person_mention: a.0,
comment: a.1,
creator: a.2,
post: a.3,
community: a.4,
recipient: a.5,
counts: a.6,
2020-12-16 16:09:21 +00:00
creator_banned_from_community: a.7.is_some(),
subscribed: CommunityFollower::to_subscribed_type(&a.8),
2020-12-16 16:09:21 +00:00
saved: a.9.is_some(),
creator_blocked: a.10.is_some(),
my_vote: a.11,
2020-12-16 16:09:21 +00:00
})
.collect::<Vec<Self>>()
}
}