2020-12-16 16:09:21 +00:00
|
|
|
use diesel::{result::Error, *};
|
2021-10-16 13:33:38 +00:00
|
|
|
use lemmy_db_schema::{
|
2020-12-16 16:09:21 +00:00
|
|
|
aggregates::comment_aggregates::CommentAggregates,
|
|
|
|
functions::hot_rank,
|
|
|
|
limit_and_offset,
|
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,
|
|
|
|
person_alias_1,
|
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},
|
2021-03-11 04:43:11 +00:00
|
|
|
community::{Community, CommunityFollower, CommunityPersonBan, CommunitySafe},
|
|
|
|
person::{Person, PersonAlias1, PersonSafe, PersonSafeAlias1},
|
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
|
|
|
},
|
2021-10-16 13:33:38 +00:00
|
|
|
traits::{MaybeOptional, ToSafe, ViewToVec},
|
|
|
|
SortType,
|
2020-12-18 16:17:21 +00:00
|
|
|
};
|
2021-10-19 16:37:01 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2020-12-16 16:09:21 +00:00
|
|
|
|
2021-10-19 16:37:01 +00:00
|
|
|
#[derive(Debug, PartialEq, Serialize, Deserialize, Clone)]
|
2021-03-10 22:33:55 +00:00
|
|
|
pub struct PersonMentionView {
|
|
|
|
pub person_mention: PersonMention,
|
2020-12-16 16:09:21 +00:00
|
|
|
pub comment: Comment,
|
2021-03-10 22:33:55 +00:00
|
|
|
pub creator: PersonSafe,
|
2020-12-16 16:09:21 +00:00
|
|
|
pub post: Post,
|
|
|
|
pub community: CommunitySafe,
|
2021-03-10 22:33:55 +00:00
|
|
|
pub recipient: PersonSafeAlias1,
|
2020-12-16 16:09:21 +00:00
|
|
|
pub counts: CommentAggregates,
|
2021-03-10 22:33:55 +00:00
|
|
|
pub creator_banned_from_community: bool, // Left Join to CommunityPersonBan
|
2020-12-16 16:09:21 +00:00
|
|
|
pub subscribed: bool, // Left join to CommunityFollower
|
|
|
|
pub saved: bool, // Left join to CommentSaved
|
2021-08-19 20:54:15 +00:00
|
|
|
pub creator_blocked: bool, // Left join to PersonBlock
|
2020-12-16 16:09:21 +00:00
|
|
|
pub my_vote: Option<i16>, // Left join to CommentLike
|
|
|
|
}
|
|
|
|
|
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,
|
2021-03-10 22:33:55 +00:00
|
|
|
PersonSafeAlias1,
|
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 {
|
2020-12-16 16:09:21 +00:00
|
|
|
pub fn read(
|
|
|
|
conn: &PgConnection,
|
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> {
|
|
|
|
// 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,
|
|
|
|
subscribed,
|
|
|
|
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)))
|
2021-03-10 22:33:55 +00:00
|
|
|
.inner_join(person_alias_1::table)
|
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)),
|
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,
|
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(),
|
2021-03-10 22:33:55 +00:00
|
|
|
PersonAlias1::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(),
|
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(),
|
|
|
|
))
|
2021-03-10 22:33:55 +00:00
|
|
|
.first::<PersonMentionViewTuple>(conn)?;
|
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: subscribed.is_some(),
|
|
|
|
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
|
|
|
|
pub fn get_unread_mentions(conn: &PgConnection, my_person_id: PersonId) -> Result<i64, Error> {
|
|
|
|
use diesel::dsl::*;
|
|
|
|
|
|
|
|
person_mention::table
|
|
|
|
.filter(person_mention::recipient_id.eq(my_person_id))
|
|
|
|
.filter(person_mention::read.eq(false))
|
|
|
|
.select(count(person_mention::id))
|
|
|
|
.first::<i64>(conn)
|
|
|
|
}
|
2020-12-16 16:09:21 +00:00
|
|
|
}
|
|
|
|
|
2021-03-10 22:33:55 +00:00
|
|
|
pub struct PersonMentionQueryBuilder<'a> {
|
2020-12-16 16:09:21 +00:00
|
|
|
conn: &'a PgConnection,
|
2021-03-18 20:25:21 +00:00
|
|
|
my_person_id: Option<PersonId>,
|
|
|
|
recipient_id: Option<PersonId>,
|
2021-04-15 03:37:51 +00:00
|
|
|
sort: Option<SortType>,
|
|
|
|
unread_only: Option<bool>,
|
2020-12-16 16:09:21 +00:00
|
|
|
page: Option<i64>,
|
|
|
|
limit: Option<i64>,
|
|
|
|
}
|
|
|
|
|
2021-03-10 22:33:55 +00:00
|
|
|
impl<'a> PersonMentionQueryBuilder<'a> {
|
2020-12-16 18:59:43 +00:00
|
|
|
pub fn create(conn: &'a PgConnection) -> Self {
|
2021-03-10 22:33:55 +00:00
|
|
|
PersonMentionQueryBuilder {
|
2020-12-16 18:59:43 +00:00
|
|
|
conn,
|
2021-03-10 22:33:55 +00:00
|
|
|
my_person_id: None,
|
2020-12-16 18:59:43 +00:00
|
|
|
recipient_id: None,
|
2021-04-15 03:37:51 +00:00
|
|
|
sort: None,
|
|
|
|
unread_only: None,
|
2020-12-16 18:59:43 +00:00
|
|
|
page: None,
|
|
|
|
limit: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-15 03:37:51 +00:00
|
|
|
pub fn sort<T: MaybeOptional<SortType>>(mut self, sort: T) -> Self {
|
|
|
|
self.sort = sort.get_optional();
|
2020-12-16 18:59:43 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2021-04-15 03:37:51 +00:00
|
|
|
pub fn unread_only<T: MaybeOptional<bool>>(mut self, unread_only: T) -> Self {
|
|
|
|
self.unread_only = unread_only.get_optional();
|
2020-12-16 18:59:43 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2021-03-18 20:25:21 +00:00
|
|
|
pub fn recipient_id<T: MaybeOptional<PersonId>>(mut self, recipient_id: T) -> Self {
|
2020-12-16 18:59:43 +00:00
|
|
|
self.recipient_id = recipient_id.get_optional();
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2021-03-18 20:25:21 +00:00
|
|
|
pub fn my_person_id<T: MaybeOptional<PersonId>>(mut self, my_person_id: T) -> Self {
|
2021-03-10 22:33:55 +00:00
|
|
|
self.my_person_id = my_person_id.get_optional();
|
2020-12-16 18:59:43 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn page<T: MaybeOptional<i64>>(mut self, page: T) -> Self {
|
|
|
|
self.page = page.get_optional();
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn limit<T: MaybeOptional<i64>>(mut self, limit: T) -> Self {
|
|
|
|
self.limit = limit.get_optional();
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2021-03-10 22:33:55 +00:00
|
|
|
pub fn list(self) -> Result<Vec<PersonMentionView>, Error> {
|
2020-12-16 18:59:43 +00:00
|
|
|
use diesel::dsl::*;
|
|
|
|
|
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)))
|
2021-03-10 22:33:55 +00:00
|
|
|
.inner_join(person_alias_1::table)
|
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)),
|
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,
|
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(),
|
2021-03-10 22:33:55 +00:00
|
|
|
PersonAlias1::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(),
|
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
|
|
|
}
|
|
|
|
|
2021-04-15 03:37:51 +00:00
|
|
|
query = match self.sort.unwrap_or(SortType::Hot) {
|
2020-12-16 16:09:21 +00:00
|
|
|
SortType::Hot | SortType::Active => query
|
2021-01-06 04:42:48 +00:00
|
|
|
.order_by(hot_rank(comment_aggregates::score, comment_aggregates::published).desc())
|
|
|
|
.then_order_by(comment_aggregates::published.desc()),
|
2021-02-18 15:38:25 +00:00
|
|
|
SortType::New | SortType::MostComments | SortType::NewComments => {
|
|
|
|
query.order_by(comment::published.desc())
|
|
|
|
}
|
2020-12-16 16:09:21 +00:00
|
|
|
SortType::TopAll => query.order_by(comment_aggregates::score.desc()),
|
|
|
|
SortType::TopYear => query
|
|
|
|
.filter(comment::published.gt(now - 1.years()))
|
|
|
|
.order_by(comment_aggregates::score.desc()),
|
|
|
|
SortType::TopMonth => query
|
|
|
|
.filter(comment::published.gt(now - 1.months()))
|
|
|
|
.order_by(comment_aggregates::score.desc()),
|
|
|
|
SortType::TopWeek => query
|
|
|
|
.filter(comment::published.gt(now - 1.weeks()))
|
|
|
|
.order_by(comment_aggregates::score.desc()),
|
|
|
|
SortType::TopDay => query
|
|
|
|
.filter(comment::published.gt(now - 1.days()))
|
|
|
|
.order_by(comment_aggregates::score.desc()),
|
|
|
|
};
|
|
|
|
|
|
|
|
let (limit, offset) = limit_and_offset(self.page, self.limit);
|
|
|
|
|
|
|
|
let res = query
|
|
|
|
.limit(limit)
|
|
|
|
.offset(offset)
|
2021-03-10 22:33:55 +00:00
|
|
|
.load::<PersonMentionViewTuple>(self.conn)?;
|
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;
|
2020-12-23 21:56:20 +00:00
|
|
|
fn from_tuple_to_vec(items: Vec<Self::DbTuple>) -> Vec<Self> {
|
|
|
|
items
|
2020-12-16 16:09:21 +00:00
|
|
|
.iter()
|
|
|
|
.map(|a| Self {
|
2021-03-10 22:33:55 +00:00
|
|
|
person_mention: a.0.to_owned(),
|
2020-12-16 16:09:21 +00:00
|
|
|
comment: a.1.to_owned(),
|
|
|
|
creator: a.2.to_owned(),
|
|
|
|
post: a.3.to_owned(),
|
|
|
|
community: a.4.to_owned(),
|
|
|
|
recipient: a.5.to_owned(),
|
|
|
|
counts: a.6.to_owned(),
|
|
|
|
creator_banned_from_community: a.7.is_some(),
|
|
|
|
subscribed: a.8.is_some(),
|
|
|
|
saved: a.9.is_some(),
|
2021-08-19 20:54:15 +00:00
|
|
|
creator_blocked: a.10.is_some(),
|
|
|
|
my_vote: a.11,
|
2020-12-16 16:09:21 +00:00
|
|
|
})
|
|
|
|
.collect::<Vec<Self>>()
|
|
|
|
}
|
|
|
|
}
|