lemmy/crates/db_views/src/post_view.rs

656 lines
18 KiB
Rust
Raw Normal View History

2021-01-06 18:23:05 +00:00
use diesel::{pg::Pg, result::Error, *};
use lemmy_db_queries::{
2020-12-10 20:53:49 +00:00
aggregates::post_aggregates::PostAggregates,
functions::hot_rank,
fuzzy_search,
limit_and_offset,
ListingType,
MaybeOptional,
SortType,
ToSafe,
ViewToVec,
2020-12-10 20:53:49 +00:00
};
use lemmy_db_schema::{
2020-12-10 20:53:49 +00:00
schema::{
community,
community_follower,
2021-03-10 22:33:55 +00:00
community_person_ban,
2020-12-10 20:53:49 +00:00
post,
post_aggregates,
post_like,
post_read,
post_saved,
2021-03-10 22:33:55 +00:00
person,
2020-12-10 20:53:49 +00:00
},
source::{
2021-02-26 13:49:58 +00:00
community::{Community, CommunityFollower, CommunitySafe, CommunityPersonBan},
post::{Post, PostRead, PostSaved},
2021-03-10 22:33:55 +00:00
person::{PersonSafe, Person},
},
2020-12-10 20:53:49 +00:00
};
2021-01-06 18:23:05 +00:00
use log::debug;
2020-12-10 20:53:49 +00:00
use serde::Serialize;
2020-12-11 15:27:33 +00:00
#[derive(Debug, PartialEq, Serialize, Clone)]
2020-12-10 20:53:49 +00:00
pub struct PostView {
pub post: Post,
2021-03-10 22:33:55 +00:00
pub creator: PersonSafe,
2020-12-10 20:53:49 +00:00
pub community: CommunitySafe,
2021-03-10 22:33:55 +00:00
pub creator_banned_from_community: bool, // Left Join to CommunityPersonBan
2020-12-15 15:28:25 +00:00
pub counts: PostAggregates,
pub subscribed: bool, // Left join to CommunityFollower
pub saved: bool, // Left join to PostSaved
pub read: bool, // Left join to PostRead
pub my_vote: Option<i16>, // Left join to PostLike
2020-12-10 20:53:49 +00:00
}
2020-12-11 01:39:42 +00:00
type PostViewTuple = (
2020-12-10 20:53:49 +00:00
Post,
2021-03-10 22:33:55 +00:00
PersonSafe,
2020-12-10 20:53:49 +00:00
CommunitySafe,
2021-02-26 13:49:58 +00:00
Option<CommunityPersonBan>,
2020-12-10 20:53:49 +00:00
PostAggregates,
Option<CommunityFollower>,
Option<PostSaved>,
Option<PostRead>,
Option<i16>,
);
impl PostView {
2021-03-10 22:33:55 +00:00
pub fn read(conn: &PgConnection, post_id: i32, my_person_id: Option<i32>) -> Result<Self, Error> {
2020-12-10 20:53:49 +00:00
// The left join below will return None in this case
2021-03-10 22:33:55 +00:00
let person_id_join = my_person_id.unwrap_or(-1);
2020-12-10 20:53:49 +00:00
2020-12-11 15:27:33 +00:00
let (
post,
creator,
community,
creator_banned_from_community,
counts,
follower,
saved,
read,
post_like,
2020-12-11 15:27:33 +00:00
) = post::table
.find(post_id)
2021-03-10 22:33:55 +00:00
.inner_join(person::table)
2020-12-11 15:27:33 +00:00
.inner_join(community::table)
.left_join(
2021-03-10 22:33:55 +00:00
community_person_ban::table.on(
2020-12-11 15:27:33 +00:00
post::community_id
2021-03-10 22:33:55 +00:00
.eq(community_person_ban::community_id)
.and(community_person_ban::person_id.eq(post::creator_id)),
2020-12-11 15:27:33 +00:00
),
)
.inner_join(post_aggregates::table)
.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-11 15:27:33 +00:00
),
)
.left_join(
post_saved::table.on(
post::id
.eq(post_saved::post_id)
2021-03-10 22:33:55 +00:00
.and(post_saved::person_id.eq(person_id_join)),
2020-12-11 15:27:33 +00:00
),
)
.left_join(
post_read::table.on(
post::id
.eq(post_read::post_id)
2021-03-10 22:33:55 +00:00
.and(post_read::person_id.eq(person_id_join)),
2020-12-11 15:27:33 +00:00
),
)
.left_join(
post_like::table.on(
post::id
.eq(post_like::post_id)
2021-03-10 22:33:55 +00:00
.and(post_like::person_id.eq(person_id_join)),
2020-12-11 15:27:33 +00:00
),
)
.select((
post::all_columns,
2021-03-10 22:33:55 +00:00
Person::safe_columns_tuple(),
2020-12-11 15:27:33 +00:00
Community::safe_columns_tuple(),
2021-03-10 22:33:55 +00:00
community_person_ban::all_columns.nullable(),
2020-12-11 15:27:33 +00:00
post_aggregates::all_columns,
community_follower::all_columns.nullable(),
post_saved::all_columns.nullable(),
post_read::all_columns.nullable(),
post_like::score.nullable(),
))
.first::<PostViewTuple>(conn)?;
2020-12-10 20:53:49 +00:00
2021-03-10 22:33:55 +00:00
// If a person is given, then my_vote, if None, should be 0, not null
// Necessary to differentiate between other person's votes
let my_vote = if my_person_id.is_some() && post_like.is_none() {
Some(0)
} else {
post_like
};
2020-12-10 20:53:49 +00:00
Ok(PostView {
post,
creator,
community,
2020-12-11 15:27:33 +00:00
creator_banned_from_community: creator_banned_from_community.is_some(),
2020-12-10 20:53:49 +00:00
counts,
subscribed: follower.is_some(),
saved: saved.is_some(),
read: read.is_some(),
my_vote,
})
}
}
pub struct PostQueryBuilder<'a> {
conn: &'a PgConnection,
listing_type: &'a ListingType,
sort: &'a SortType,
creator_id: Option<i32>,
community_id: Option<i32>,
community_name: Option<String>,
2021-03-10 22:33:55 +00:00
my_person_id: Option<i32>,
2020-12-10 20:53:49 +00:00
search_term: Option<String>,
url_search: Option<String>,
show_nsfw: bool,
saved_only: bool,
unread_only: bool,
page: Option<i64>,
limit: Option<i64>,
}
impl<'a> PostQueryBuilder<'a> {
pub fn create(conn: &'a PgConnection) -> Self {
2020-12-10 20:53:49 +00:00
PostQueryBuilder {
conn,
listing_type: &ListingType::All,
sort: &SortType::Hot,
creator_id: None,
community_id: None,
community_name: None,
2021-03-10 22:33:55 +00:00
my_person_id: None,
2020-12-10 20:53:49 +00:00
search_term: None,
url_search: None,
show_nsfw: true,
saved_only: false,
unread_only: false,
page: None,
limit: None,
}
}
pub fn listing_type(mut self, listing_type: &'a ListingType) -> Self {
self.listing_type = listing_type;
self
}
pub fn sort(mut self, sort: &'a SortType) -> Self {
self.sort = sort;
self
}
pub fn community_id<T: MaybeOptional<i32>>(mut self, community_id: T) -> Self {
self.community_id = community_id.get_optional();
self
}
2021-03-10 22:33:55 +00:00
pub fn my_person_id<T: MaybeOptional<i32>>(mut self, my_person_id: T) -> Self {
self.my_person_id = my_person_id.get_optional();
2020-12-10 20:53:49 +00:00
self
}
pub fn community_name<T: MaybeOptional<String>>(mut self, community_name: T) -> Self {
self.community_name = community_name.get_optional();
2020-12-10 20:53:49 +00:00
self
}
pub fn creator_id<T: MaybeOptional<i32>>(mut self, creator_id: T) -> Self {
self.creator_id = creator_id.get_optional();
2020-12-10 20:53:49 +00:00
self
}
pub fn search_term<T: MaybeOptional<String>>(mut self, search_term: T) -> Self {
self.search_term = search_term.get_optional();
self
}
pub fn url_search<T: MaybeOptional<String>>(mut self, url_search: T) -> Self {
self.url_search = url_search.get_optional();
self
}
pub fn show_nsfw(mut self, show_nsfw: bool) -> Self {
self.show_nsfw = show_nsfw;
self
}
pub fn saved_only(mut self, saved_only: bool) -> Self {
self.saved_only = saved_only;
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
}
pub fn list(self) -> Result<Vec<PostView>, Error> {
use diesel::dsl::*;
// The left join below will return None in this case
2021-03-10 22:33:55 +00:00
let person_id_join = self.my_person_id.unwrap_or(-1);
let mut query = post::table
2021-03-10 22:33:55 +00:00
.inner_join(person::table)
.inner_join(community::table)
.left_join(
2021-03-10 22:33:55 +00:00
community_person_ban::table.on(
post::community_id
2021-03-10 22:33:55 +00:00
.eq(community_person_ban::community_id)
.and(community_person_ban::person_id.eq(community::creator_id)),
),
)
.inner_join(post_aggregates::table)
.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)),
),
)
.left_join(
post_saved::table.on(
post::id
.eq(post_saved::post_id)
2021-03-10 22:33:55 +00:00
.and(post_saved::person_id.eq(person_id_join)),
),
)
.left_join(
post_read::table.on(
post::id
.eq(post_read::post_id)
2021-03-10 22:33:55 +00:00
.and(post_read::person_id.eq(person_id_join)),
),
)
.left_join(
post_like::table.on(
post::id
.eq(post_like::post_id)
2021-03-10 22:33:55 +00:00
.and(post_like::person_id.eq(person_id_join)),
),
)
.select((
post::all_columns,
2021-03-10 22:33:55 +00:00
Person::safe_columns_tuple(),
Community::safe_columns_tuple(),
2021-03-10 22:33:55 +00:00
community_person_ban::all_columns.nullable(),
post_aggregates::all_columns,
community_follower::all_columns.nullable(),
post_saved::all_columns.nullable(),
post_read::all_columns.nullable(),
post_like::score.nullable(),
))
.into_boxed();
2020-12-10 20:53:49 +00:00
query = match self.listing_type {
2021-03-10 22:33:55 +00:00
ListingType::Subscribed => query.filter(community_follower::person_id.is_not_null()), // TODO could be this: and(community_follower::person_id.eq(person_id_join)),
2020-12-10 20:53:49 +00:00
ListingType::Local => query.filter(community::local.eq(true)),
_ => query,
};
if let Some(community_id) = self.community_id {
2020-12-10 20:53:49 +00:00
query = query
.filter(post::community_id.eq(community_id))
.then_order_by(post_aggregates::stickied.desc());
2020-12-10 20:53:49 +00:00
}
if let Some(community_name) = self.community_name {
2020-12-10 20:53:49 +00:00
query = query
.filter(community::name.eq(community_name))
2020-12-10 20:53:49 +00:00
.filter(community::local.eq(true))
.then_order_by(post_aggregates::stickied.desc());
2020-12-10 20:53:49 +00:00
}
if let Some(url_search) = self.url_search {
query = query.filter(post::url.eq(url_search));
}
if let Some(search_term) = self.search_term {
let searcher = fuzzy_search(&search_term);
query = query.filter(
post::name
.ilike(searcher.to_owned())
.or(post::body.ilike(searcher)),
);
}
2021-03-10 22:33:55 +00:00
// If its for a specific person, show the removed / deleted
if let Some(creator_id) = self.creator_id {
query = query.filter(post::creator_id.eq(creator_id));
}
if !self.show_nsfw {
query = query
.filter(post::nsfw.eq(false))
.filter(community::nsfw.eq(false));
};
// TODO These two might be wrong
if self.saved_only {
query = query.filter(post_saved::id.is_not_null());
};
if self.unread_only {
query = query.filter(post_read::id.is_not_null());
};
2020-12-10 20:53:49 +00:00
query = match self.sort {
SortType::Active => query
.then_order_by(
hot_rank(
post_aggregates::score,
post_aggregates::newest_comment_time_necro,
)
.desc(),
2020-12-10 20:53:49 +00:00
)
.then_order_by(post_aggregates::newest_comment_time_necro.desc()),
2020-12-10 20:53:49 +00:00
SortType::Hot => query
2021-01-06 04:42:48 +00:00
.then_order_by(hot_rank(post_aggregates::score, post_aggregates::published).desc())
.then_order_by(post_aggregates::published.desc()),
SortType::New => query.then_order_by(post_aggregates::published.desc()),
SortType::MostComments => query.then_order_by(post_aggregates::comments.desc()),
SortType::NewComments => query.then_order_by(post_aggregates::newest_comment_time.desc()),
2020-12-10 20:53:49 +00:00
SortType::TopAll => query.then_order_by(post_aggregates::score.desc()),
SortType::TopYear => query
.filter(post::published.gt(now - 1.years()))
.then_order_by(post_aggregates::score.desc()),
SortType::TopMonth => query
.filter(post::published.gt(now - 1.months()))
.then_order_by(post_aggregates::score.desc()),
SortType::TopWeek => query
.filter(post::published.gt(now - 1.weeks()))
.then_order_by(post_aggregates::score.desc()),
SortType::TopDay => query
.filter(post::published.gt(now - 1.days()))
.then_order_by(post_aggregates::score.desc()),
};
let (limit, offset) = limit_and_offset(self.page, self.limit);
2021-01-06 18:23:05 +00:00
query = query
2020-12-10 20:53:49 +00:00
.limit(limit)
.offset(offset)
.filter(post::removed.eq(false))
.filter(post::deleted.eq(false))
.filter(community::removed.eq(false))
2021-01-06 18:23:05 +00:00
.filter(community::deleted.eq(false));
debug!("Post View Query: {:?}", debug_query::<Pg, _>(&query));
let res = query.load::<PostViewTuple>(self.conn)?;
2020-12-10 20:53:49 +00:00
Ok(PostView::from_tuple_to_vec(res))
2020-12-10 20:53:49 +00:00
}
}
2020-12-11 01:39:42 +00:00
impl ViewToVec for PostView {
type DbTuple = PostViewTuple;
fn from_tuple_to_vec(items: Vec<Self::DbTuple>) -> Vec<Self> {
items
2020-12-11 01:39:42 +00:00
.iter()
.map(|a| Self {
post: a.0.to_owned(),
creator: a.1.to_owned(),
community: a.2.to_owned(),
2020-12-11 15:27:33 +00:00
creator_banned_from_community: a.3.is_some(),
counts: a.4.to_owned(),
subscribed: a.5.is_some(),
2020-12-11 01:39:42 +00:00
saved: a.6.is_some(),
read: a.7.is_some(),
my_vote: a.8,
})
.collect::<Vec<Self>>()
}
2020-12-10 20:53:49 +00:00
}
2020-12-11 15:27:33 +00:00
#[cfg(test)]
mod tests {
use crate::post_view::{PostQueryBuilder, PostView};
use lemmy_db_queries::{
2020-12-11 15:27:33 +00:00
aggregates::post_aggregates::PostAggregates,
establish_unpooled_connection,
2020-12-11 15:27:33 +00:00
Crud,
Likeable,
ListingType,
SortType,
2020-12-11 15:27:33 +00:00
};
2021-03-10 22:33:55 +00:00
use lemmy_db_schema::source::{community::*, post::*, person::*};
use serial_test::serial;
2020-12-11 15:27:33 +00:00
#[test]
#[serial]
2020-12-11 15:27:33 +00:00
fn test_crud() {
let conn = establish_unpooled_connection();
2021-03-10 22:33:55 +00:00
let person_name = "tegan".to_string();
2020-12-11 15:27:33 +00:00
let community_name = "test_community_3".to_string();
let post_name = "test post 3".to_string();
2021-03-10 22:33:55 +00:00
let new_person = PersonForm {
name: person_name.to_owned(),
2020-12-11 15:27:33 +00:00
preferred_username: None,
avatar: None,
banner: None,
2021-03-10 22:33:55 +00:00
banned: None,
deleted: None,
2020-12-11 15:27:33 +00:00
published: None,
updated: None,
actor_id: None,
bio: None,
2021-03-10 22:33:55 +00:00
local: None,
2020-12-11 15:27:33 +00:00
private_key: None,
public_key: None,
last_refreshed_at: None,
inbox_url: None,
shared_inbox_url: None,
2020-12-11 15:27:33 +00:00
};
2021-03-10 22:33:55 +00:00
let inserted_person = Person::create(&conn, &new_person).unwrap();
2020-12-11 15:27:33 +00:00
let new_community = CommunityForm {
name: community_name.to_owned(),
title: "nada".to_owned(),
description: None,
2021-03-10 22:33:55 +00:00
creator_id: inserted_person.id,
2020-12-11 15:27:33 +00:00
removed: None,
deleted: None,
updated: None,
nsfw: false,
actor_id: None,
local: true,
private_key: None,
public_key: None,
last_refreshed_at: None,
published: None,
icon: None,
banner: None,
followers_url: None,
inbox_url: None,
shared_inbox_url: None,
2020-12-11 15:27:33 +00:00
};
let inserted_community = Community::create(&conn, &new_community).unwrap();
let new_post = PostForm {
name: post_name.to_owned(),
url: None,
body: None,
2021-03-10 22:33:55 +00:00
creator_id: inserted_person.id,
2020-12-11 15:27:33 +00:00
community_id: inserted_community.id,
removed: None,
deleted: None,
locked: None,
stickied: None,
updated: None,
nsfw: false,
embed_title: None,
embed_description: None,
embed_html: None,
thumbnail_url: None,
ap_id: None,
local: true,
published: None,
};
let inserted_post = Post::create(&conn, &new_post).unwrap();
let post_like_form = PostLikeForm {
post_id: inserted_post.id,
2021-03-10 22:33:55 +00:00
person_id: inserted_person.id,
2020-12-11 15:27:33 +00:00
score: 1,
};
let inserted_post_like = PostLike::like(&conn, &post_like_form).unwrap();
let expected_post_like = PostLike {
id: inserted_post_like.id,
post_id: inserted_post.id,
2021-03-10 22:33:55 +00:00
person_id: inserted_person.id,
2020-12-11 15:27:33 +00:00
published: inserted_post_like.published,
score: 1,
};
2021-03-10 22:33:55 +00:00
let read_post_listings_with_person = PostQueryBuilder::create(&conn)
2020-12-11 15:27:33 +00:00
.listing_type(&ListingType::Community)
.sort(&SortType::New)
.community_id(inserted_community.id)
2021-03-10 22:33:55 +00:00
.my_person_id(inserted_person.id)
2020-12-11 15:27:33 +00:00
.list()
.unwrap();
2021-03-10 22:33:55 +00:00
let read_post_listings_no_person = PostQueryBuilder::create(&conn)
2020-12-11 15:27:33 +00:00
.listing_type(&ListingType::Community)
.sort(&SortType::New)
.community_id(inserted_community.id)
2020-12-11 15:27:33 +00:00
.list()
.unwrap();
2021-03-10 22:33:55 +00:00
let read_post_listing_no_person = PostView::read(&conn, inserted_post.id, None).unwrap();
let read_post_listing_with_person =
PostView::read(&conn, inserted_post.id, Some(inserted_person.id)).unwrap();
2020-12-11 15:27:33 +00:00
2020-12-18 17:25:27 +00:00
let agg = PostAggregates::read(&conn, inserted_post.id).unwrap();
2021-03-10 22:33:55 +00:00
// the non person version
let expected_post_listing_no_person = PostView {
2020-12-11 15:27:33 +00:00
post: Post {
id: inserted_post.id,
name: post_name,
2021-03-10 22:33:55 +00:00
creator_id: inserted_person.id,
2020-12-11 15:27:33 +00:00
url: None,
body: None,
published: inserted_post.published,
updated: None,
community_id: inserted_community.id,
removed: false,
deleted: false,
locked: false,
stickied: false,
nsfw: false,
embed_title: None,
embed_description: None,
embed_html: None,
thumbnail_url: None,
ap_id: inserted_post.ap_id.to_owned(),
local: true,
},
my_vote: None,
2021-03-10 22:33:55 +00:00
creator: PersonSafe {
id: inserted_person.id,
name: person_name,
2020-12-11 15:27:33 +00:00
preferred_username: None,
2021-03-10 22:33:55 +00:00
published: inserted_person.published,
2020-12-11 15:27:33 +00:00
avatar: None,
2021-03-10 22:33:55 +00:00
actor_id: inserted_person.actor_id.to_owned(),
2020-12-11 15:27:33 +00:00
local: true,
banned: false,
deleted: false,
bio: None,
banner: None,
updated: None,
2021-03-10 22:33:55 +00:00
inbox_url: inserted_person.inbox_url.to_owned(),
shared_inbox_url: None,
2020-12-11 15:27:33 +00:00
},
creator_banned_from_community: false,
community: CommunitySafe {
id: inserted_community.id,
name: community_name,
2020-12-11 15:27:33 +00:00
icon: None,
removed: false,
deleted: false,
nsfw: false,
actor_id: inserted_community.actor_id.to_owned(),
local: true,
title: "nada".to_owned(),
description: None,
2021-03-10 22:33:55 +00:00
creator_id: inserted_person.id,
2020-12-11 15:27:33 +00:00
updated: None,
banner: None,
published: inserted_community.published,
},
counts: PostAggregates {
2020-12-18 17:25:27 +00:00
id: agg.id,
2020-12-11 15:27:33 +00:00
post_id: inserted_post.id,
comments: 0,
score: 1,
upvotes: 1,
downvotes: 0,
stickied: false,
2021-01-06 04:42:48 +00:00
published: agg.published,
newest_comment_time_necro: inserted_post.published,
2020-12-11 15:27:33 +00:00
newest_comment_time: inserted_post.published,
},
subscribed: false,
read: false,
saved: false,
};
// TODO More needs to be added here
2021-03-10 22:33:55 +00:00
let mut expected_post_listing_with_user = expected_post_listing_no_person.to_owned();
2020-12-11 15:27:33 +00:00
expected_post_listing_with_user.my_vote = Some(1);
2021-03-10 22:33:55 +00:00
let like_removed = PostLike::remove(&conn, inserted_person.id, inserted_post.id).unwrap();
2020-12-11 15:27:33 +00:00
let num_deleted = Post::delete(&conn, inserted_post.id).unwrap();
Community::delete(&conn, inserted_community.id).unwrap();
2021-03-10 22:33:55 +00:00
Person::delete(&conn, inserted_person.id).unwrap();
2020-12-11 15:27:33 +00:00
// The with user
assert_eq!(
expected_post_listing_with_user,
2021-03-10 22:33:55 +00:00
read_post_listings_with_person[0]
2020-12-11 15:27:33 +00:00
);
2021-03-10 22:33:55 +00:00
assert_eq!(expected_post_listing_with_user, read_post_listing_with_person);
assert_eq!(1, read_post_listings_with_person.len());
2020-12-11 15:27:33 +00:00
// Without the user
2021-03-10 22:33:55 +00:00
assert_eq!(expected_post_listing_no_person, read_post_listings_no_person[0]);
assert_eq!(expected_post_listing_no_person, read_post_listing_no_person);
assert_eq!(1, read_post_listings_no_person.len());
2020-12-11 15:27:33 +00:00
// assert_eq!(expected_post, inserted_post);
// assert_eq!(expected_post, updated_post);
assert_eq!(expected_post_like, inserted_post_like);
assert_eq!(1, like_removed);
assert_eq!(1, num_deleted);
}
}