lemmy/crates/db_views_actor/src/person_mention_view.rs

325 lines
9.4 KiB
Rust
Raw Normal View History

2020-12-16 16:09:21 +00:00
use diesel::{result::Error, *};
use lemmy_db_queries::{
2020-12-16 16:09:21 +00:00
aggregates::comment_aggregates::CommentAggregates,
functions::hot_rank,
limit_and_offset,
MaybeOptional,
SortType,
ToSafe,
ViewToVec,
2020-12-16 16:09:21 +00:00
};
use lemmy_db_schema::{
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,
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, PersonAlias1, PersonSafe, PersonSafeAlias1},
2021-03-10 22:33:55 +00:00
person_mention::PersonMention,
2021-03-11 04:43:11 +00:00
post::Post,
},
PersonId,
PersonMentionId,
};
2020-12-16 16:09:21 +00:00
use serde::Serialize;
#[derive(Debug, PartialEq, Serialize, 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
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>,
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,
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
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,
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
),
)
.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(),
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(),
my_vote,
})
}
}
2021-03-10 22:33:55 +00:00
pub struct PersonMentionQueryBuilder<'a> {
2020-12-16 16:09:21 +00:00
conn: &'a PgConnection,
my_person_id: Option<PersonId>,
recipient_id: Option<PersonId>,
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> {
pub fn create(conn: &'a PgConnection) -> Self {
2021-03-10 22:33:55 +00:00
PersonMentionQueryBuilder {
conn,
2021-03-10 22:33:55 +00:00
my_person_id: None,
recipient_id: None,
sort: None,
unread_only: None,
page: None,
limit: None,
}
}
pub fn sort<T: MaybeOptional<SortType>>(mut self, sort: T) -> Self {
self.sort = sort.get_optional();
self
}
pub fn unread_only<T: MaybeOptional<bool>>(mut self, unread_only: T) -> Self {
self.unread_only = unread_only.get_optional();
self
}
pub fn recipient_id<T: MaybeOptional<PersonId>>(mut self, recipient_id: T) -> Self {
self.recipient_id = recipient_id.get_optional();
self
}
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();
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> {
use diesel::dsl::*;
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)))
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
),
)
.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(),
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
}
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()),
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;
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(),
my_vote: a.10,
})
.collect::<Vec<Self>>()
}
}