2022-05-03 17:44:13 +00:00
|
|
|
use crate::structs::PostView;
|
2022-11-09 10:05:00 +00:00
|
|
|
use diesel::{
|
|
|
|
debug_query,
|
2022-11-19 04:33:54 +00:00
|
|
|
dsl::{now, IntervalDsl},
|
2022-11-09 10:05:00 +00:00
|
|
|
pg::Pg,
|
|
|
|
result::Error,
|
|
|
|
sql_function,
|
|
|
|
sql_types,
|
|
|
|
BoolExpressionMethods,
|
|
|
|
ExpressionMethods,
|
|
|
|
JoinOnDsl,
|
|
|
|
NullableExpressionMethods,
|
|
|
|
PgTextExpressionMethods,
|
|
|
|
QueryDsl,
|
|
|
|
};
|
|
|
|
use diesel_async::RunQueryDsl;
|
2021-10-16 13:33:38 +00:00
|
|
|
use lemmy_db_schema::{
|
2022-05-03 17:44:13 +00:00
|
|
|
aggregates::structs::PostAggregates,
|
2022-08-18 19:11:19 +00:00
|
|
|
newtypes::{CommunityId, DbUrl, LocalUserId, PersonId, PostId},
|
2020-12-10 20:53:49 +00:00
|
|
|
schema::{
|
|
|
|
community,
|
2021-08-19 20:54:15 +00:00
|
|
|
community_block,
|
2020-12-10 20:53:49 +00:00
|
|
|
community_follower,
|
2021-03-10 22:33:55 +00:00
|
|
|
community_person_ban,
|
2022-08-18 19:11:19 +00:00
|
|
|
local_user_language,
|
2021-03-11 04:43:11 +00:00
|
|
|
person,
|
2021-08-19 20:54:15 +00:00
|
|
|
person_block,
|
2022-09-27 16:45:46 +00:00
|
|
|
person_post_aggregates,
|
2020-12-10 20:53:49 +00:00
|
|
|
post,
|
|
|
|
post_aggregates,
|
|
|
|
post_like,
|
|
|
|
post_read,
|
|
|
|
post_saved,
|
|
|
|
},
|
2020-12-13 17:04:42 +00:00
|
|
|
source::{
|
2021-03-11 04:43:11 +00:00
|
|
|
community::{Community, CommunityFollower, CommunityPersonBan, CommunitySafe},
|
2022-08-19 14:27:39 +00:00
|
|
|
local_user::LocalUser,
|
2021-03-11 04:43:11 +00:00
|
|
|
person::{Person, PersonSafe},
|
2021-08-19 20:54:15 +00:00
|
|
|
person_block::PersonBlock,
|
2020-12-13 17:04:42 +00:00
|
|
|
post::{Post, PostRead, PostSaved},
|
|
|
|
},
|
2022-08-04 19:30:17 +00:00
|
|
|
traits::{ToSafe, ViewToVec},
|
2022-11-09 10:05:00 +00:00
|
|
|
utils::{functions::hot_rank, fuzzy_search, get_conn, limit_and_offset, DbPool},
|
2022-05-06 20:55:07 +00:00
|
|
|
ListingType,
|
|
|
|
SortType,
|
2020-12-10 20:53:49 +00:00
|
|
|
};
|
2021-11-23 12:16:47 +00:00
|
|
|
use tracing::debug;
|
2022-08-04 19:30:17 +00:00
|
|
|
use typed_builder::TypedBuilder;
|
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>,
|
2021-08-19 20:54:15 +00:00
|
|
|
Option<PersonBlock>,
|
2020-12-10 20:53:49 +00:00
|
|
|
Option<i16>,
|
2022-09-27 16:45:46 +00:00
|
|
|
i64,
|
2020-12-10 20:53:49 +00:00
|
|
|
);
|
|
|
|
|
2022-09-27 16:45:46 +00:00
|
|
|
sql_function!(fn coalesce(x: sql_types::Nullable<sql_types::BigInt>, y: sql_types::BigInt) -> sql_types::BigInt);
|
|
|
|
|
2020-12-10 20:53:49 +00:00
|
|
|
impl PostView {
|
2022-11-09 10:05:00 +00:00
|
|
|
pub async fn read(
|
|
|
|
pool: &DbPool,
|
2021-03-18 20:25:21 +00:00
|
|
|
post_id: PostId,
|
|
|
|
my_person_id: Option<PersonId>,
|
|
|
|
) -> Result<Self, Error> {
|
2022-11-09 10:05:00 +00:00
|
|
|
let conn = &mut get_conn(pool).await?;
|
|
|
|
|
2020-12-10 20:53:49 +00:00
|
|
|
// 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-11 15:27:33 +00:00
|
|
|
let (
|
|
|
|
post,
|
|
|
|
creator,
|
|
|
|
community,
|
|
|
|
creator_banned_from_community,
|
|
|
|
counts,
|
|
|
|
follower,
|
|
|
|
saved,
|
|
|
|
read,
|
2021-08-19 20:54:15 +00:00
|
|
|
creator_blocked,
|
2021-01-31 15:29:21 +00:00
|
|
|
post_like,
|
2022-09-27 16:45:46 +00:00
|
|
|
unread_comments,
|
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)
|
2022-01-08 12:37:07 +00:00
|
|
|
.and(community_person_ban::person_id.eq(post::creator_id))
|
|
|
|
.and(
|
|
|
|
community_person_ban::expires
|
|
|
|
.is_null()
|
|
|
|
.or(community_person_ban::expires.gt(now)),
|
|
|
|
),
|
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
|
|
|
),
|
|
|
|
)
|
2021-08-19 20:54:15 +00:00
|
|
|
.left_join(
|
|
|
|
person_block::table.on(
|
|
|
|
post::creator_id
|
|
|
|
.eq(person_block::target_id)
|
|
|
|
.and(person_block::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
|
|
|
),
|
|
|
|
)
|
2022-09-27 16:45:46 +00:00
|
|
|
.left_join(
|
|
|
|
person_post_aggregates::table.on(
|
|
|
|
post::id
|
|
|
|
.eq(person_post_aggregates::post_id)
|
|
|
|
.and(person_post_aggregates::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(),
|
2021-08-19 20:54:15 +00:00
|
|
|
person_block::all_columns.nullable(),
|
2020-12-11 15:27:33 +00:00
|
|
|
post_like::score.nullable(),
|
2022-09-27 16:45:46 +00:00
|
|
|
coalesce(
|
|
|
|
post_aggregates::comments.nullable() - person_post_aggregates::read_comments.nullable(),
|
|
|
|
post_aggregates::comments,
|
|
|
|
),
|
2020-12-11 15:27:33 +00:00
|
|
|
))
|
2022-11-09 10:05:00 +00:00
|
|
|
.first::<PostViewTuple>(conn)
|
|
|
|
.await?;
|
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() {
|
2021-01-31 15:29:21 +00:00
|
|
|
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,
|
2022-06-22 12:05:41 +00:00
|
|
|
subscribed: CommunityFollower::to_subscribed_type(&follower),
|
2020-12-10 20:53:49 +00:00
|
|
|
saved: saved.is_some(),
|
|
|
|
read: read.is_some(),
|
2021-08-19 20:54:15 +00:00
|
|
|
creator_blocked: creator_blocked.is_some(),
|
2020-12-10 20:53:49 +00:00
|
|
|
my_vote,
|
2022-09-27 16:45:46 +00:00
|
|
|
unread_comments,
|
2020-12-10 20:53:49 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-04 19:30:17 +00:00
|
|
|
#[derive(TypedBuilder)]
|
|
|
|
#[builder(field_defaults(default))]
|
|
|
|
pub struct PostQuery<'a> {
|
|
|
|
#[builder(!default)]
|
2022-11-09 10:05:00 +00:00
|
|
|
pool: &'a DbPool,
|
2021-04-15 03:37:51 +00:00
|
|
|
listing_type: Option<ListingType>,
|
|
|
|
sort: Option<SortType>,
|
2021-03-18 20:25:21 +00:00
|
|
|
creator_id: Option<PersonId>,
|
|
|
|
community_id: Option<CommunityId>,
|
2021-07-20 04:29:50 +00:00
|
|
|
community_actor_id: Option<DbUrl>,
|
2022-08-19 14:27:39 +00:00
|
|
|
local_user: Option<&'a LocalUser>,
|
2020-12-10 20:53:49 +00:00
|
|
|
search_term: Option<String>,
|
|
|
|
url_search: Option<String>,
|
2021-04-15 03:37:51 +00:00
|
|
|
saved_only: Option<bool>,
|
2020-12-10 20:53:49 +00:00
|
|
|
page: Option<i64>,
|
|
|
|
limit: Option<i64>,
|
|
|
|
}
|
|
|
|
|
2022-08-04 19:30:17 +00:00
|
|
|
impl<'a> PostQuery<'a> {
|
2022-11-09 10:05:00 +00:00
|
|
|
pub async fn list(self) -> Result<Vec<PostView>, Error> {
|
|
|
|
let conn = &mut get_conn(self.pool).await?;
|
2020-12-10 20:53:49 +00:00
|
|
|
|
2020-12-16 18:59:43 +00:00
|
|
|
// The left join below will return None in this case
|
2022-08-19 14:27:39 +00:00
|
|
|
let person_id_join = self.local_user.map(|l| l.person_id).unwrap_or(PersonId(-1));
|
|
|
|
let local_user_id_join = self.local_user.map(|l| l.id).unwrap_or(LocalUserId(-1));
|
2020-12-16 18:59:43 +00:00
|
|
|
|
|
|
|
let mut query = post::table
|
2021-03-10 22:33:55 +00:00
|
|
|
.inner_join(person::table)
|
2020-12-16 18:59:43 +00:00
|
|
|
.inner_join(community::table)
|
|
|
|
.left_join(
|
2021-03-10 22:33:55 +00:00
|
|
|
community_person_ban::table.on(
|
2020-12-16 18:59:43 +00:00
|
|
|
post::community_id
|
2021-03-10 22:33:55 +00:00
|
|
|
.eq(community_person_ban::community_id)
|
2022-01-08 12:37:07 +00:00
|
|
|
.and(community_person_ban::person_id.eq(post::creator_id))
|
|
|
|
.and(
|
|
|
|
community_person_ban::expires
|
|
|
|
.is_null()
|
|
|
|
.or(community_person_ban::expires.gt(now)),
|
|
|
|
),
|
2020-12-16 18:59:43 +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-16 18:59:43 +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-16 18:59:43 +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-16 18:59:43 +00:00
|
|
|
),
|
|
|
|
)
|
2021-08-19 20:54:15 +00:00
|
|
|
.left_join(
|
|
|
|
person_block::table.on(
|
|
|
|
post::creator_id
|
|
|
|
.eq(person_block::target_id)
|
|
|
|
.and(person_block::person_id.eq(person_id_join)),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
.left_join(
|
|
|
|
community_block::table.on(
|
|
|
|
community::id
|
|
|
|
.eq(community_block::community_id)
|
|
|
|
.and(community_block::person_id.eq(person_id_join)),
|
|
|
|
),
|
|
|
|
)
|
2020-12-16 18:59:43 +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-16 18:59:43 +00:00
|
|
|
),
|
|
|
|
)
|
2022-09-27 16:45:46 +00:00
|
|
|
.left_join(
|
|
|
|
person_post_aggregates::table.on(
|
|
|
|
post::id
|
|
|
|
.eq(person_post_aggregates::post_id)
|
|
|
|
.and(person_post_aggregates::person_id.eq(person_id_join)),
|
|
|
|
),
|
|
|
|
)
|
2022-08-18 19:11:19 +00:00
|
|
|
.left_join(
|
|
|
|
local_user_language::table.on(
|
|
|
|
post::language_id
|
|
|
|
.eq(local_user_language::language_id)
|
|
|
|
.and(local_user_language::local_user_id.eq(local_user_id_join)),
|
|
|
|
),
|
|
|
|
)
|
2020-12-16 18:59:43 +00:00
|
|
|
.select((
|
|
|
|
post::all_columns,
|
2021-03-10 22:33:55 +00:00
|
|
|
Person::safe_columns_tuple(),
|
2020-12-16 18:59:43 +00:00
|
|
|
Community::safe_columns_tuple(),
|
2021-03-10 22:33:55 +00:00
|
|
|
community_person_ban::all_columns.nullable(),
|
2020-12-16 18:59:43 +00:00
|
|
|
post_aggregates::all_columns,
|
|
|
|
community_follower::all_columns.nullable(),
|
|
|
|
post_saved::all_columns.nullable(),
|
|
|
|
post_read::all_columns.nullable(),
|
2021-08-19 20:54:15 +00:00
|
|
|
person_block::all_columns.nullable(),
|
2020-12-16 18:59:43 +00:00
|
|
|
post_like::score.nullable(),
|
2022-09-27 16:45:46 +00:00
|
|
|
coalesce(
|
|
|
|
post_aggregates::comments.nullable() - person_post_aggregates::read_comments.nullable(),
|
|
|
|
post_aggregates::comments,
|
|
|
|
),
|
2020-12-16 18:59:43 +00:00
|
|
|
))
|
|
|
|
.into_boxed();
|
2020-12-10 20:53:49 +00:00
|
|
|
|
2021-04-15 03:37:51 +00:00
|
|
|
if let Some(listing_type) = self.listing_type {
|
2022-02-18 02:30:47 +00:00
|
|
|
match listing_type {
|
|
|
|
ListingType::Subscribed => {
|
|
|
|
query = query.filter(community_follower::person_id.is_not_null())
|
|
|
|
}
|
|
|
|
ListingType::Local => {
|
|
|
|
query = query.filter(community::local.eq(true)).filter(
|
|
|
|
community::hidden
|
|
|
|
.eq(false)
|
|
|
|
.or(community_follower::person_id.eq(person_id_join)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
ListingType::All => {
|
|
|
|
query = query.filter(
|
|
|
|
community::hidden
|
|
|
|
.eq(false)
|
|
|
|
.or(community_follower::person_id.eq(person_id_join)),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2020-12-10 20:53:49 +00:00
|
|
|
}
|
2022-12-12 11:17:10 +00:00
|
|
|
if self.community_id.is_none() && self.community_actor_id.is_none() {
|
|
|
|
query = query.then_order_by(post_aggregates::featured_local.desc());
|
|
|
|
} else if let Some(community_id) = self.community_id {
|
2022-07-29 10:57:39 +00:00
|
|
|
query = query
|
|
|
|
.filter(post::community_id.eq(community_id))
|
2022-12-12 11:17:10 +00:00
|
|
|
.then_order_by(post_aggregates::featured_community.desc());
|
|
|
|
} else if let Some(community_actor_id) = self.community_actor_id {
|
2022-07-29 10:57:39 +00:00
|
|
|
query = query
|
|
|
|
.filter(community::actor_id.eq(community_actor_id))
|
2022-12-12 11:17:10 +00:00
|
|
|
.then_order_by(post_aggregates::featured_community.desc());
|
2022-07-29 10:57:39 +00:00
|
|
|
}
|
|
|
|
|
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
|
2022-11-19 04:33:54 +00:00
|
|
|
.ilike(searcher.clone())
|
2020-12-10 20:53:49 +00:00
|
|
|
.or(post::body.ilike(searcher)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-03-10 22:33:55 +00:00
|
|
|
// If its for a specific person, show the removed / deleted
|
2020-12-16 18:59:43 +00:00
|
|
|
if let Some(creator_id) = self.creator_id {
|
|
|
|
query = query.filter(post::creator_id.eq(creator_id));
|
|
|
|
}
|
|
|
|
|
2022-08-19 14:27:39 +00:00
|
|
|
if !self.local_user.map(|l| l.show_nsfw).unwrap_or(false) {
|
2020-12-16 18:59:43 +00:00
|
|
|
query = query
|
|
|
|
.filter(post::nsfw.eq(false))
|
|
|
|
.filter(community::nsfw.eq(false));
|
|
|
|
};
|
|
|
|
|
2022-08-19 14:27:39 +00:00
|
|
|
if !self.local_user.map(|l| l.show_bot_accounts).unwrap_or(true) {
|
2021-04-21 21:41:14 +00:00
|
|
|
query = query.filter(person::bot_account.eq(false));
|
|
|
|
};
|
|
|
|
|
2021-04-26 14:44:19 +00:00
|
|
|
if self.saved_only.unwrap_or(false) {
|
2023-02-18 14:35:35 +00:00
|
|
|
query = query.filter(post_saved::post_id.is_not_null());
|
2021-10-14 17:03:12 +00:00
|
|
|
}
|
|
|
|
// Only hide the read posts, if the saved_only is false. Otherwise ppl with the hide_read
|
|
|
|
// setting wont be able to see saved posts.
|
2022-08-19 14:27:39 +00:00
|
|
|
else if !self.local_user.map(|l| l.show_read_posts).unwrap_or(true) {
|
2023-02-18 14:35:35 +00:00
|
|
|
query = query.filter(post_read::post_id.is_null());
|
2021-10-14 17:03:12 +00:00
|
|
|
}
|
2020-12-16 18:59:43 +00:00
|
|
|
|
2022-08-19 14:27:39 +00:00
|
|
|
if self.local_user.is_some() {
|
|
|
|
// Filter out the rows with missing languages
|
2023-02-18 14:35:35 +00:00
|
|
|
query = query.filter(local_user_language::language_id.is_not_null());
|
2022-08-18 19:11:19 +00:00
|
|
|
|
2022-08-19 14:27:39 +00:00
|
|
|
// Don't show blocked communities or persons
|
2021-08-19 20:54:15 +00:00
|
|
|
query = query.filter(community_block::person_id.is_null());
|
|
|
|
query = query.filter(person_block::person_id.is_null());
|
|
|
|
}
|
|
|
|
|
2021-04-15 03:37:51 +00:00
|
|
|
query = match self.sort.unwrap_or(SortType::Hot) {
|
2020-12-10 20:53:49 +00:00
|
|
|
SortType::Active => query
|
|
|
|
.then_order_by(
|
2021-02-18 15:38:25 +00:00
|
|
|
hot_rank(
|
|
|
|
post_aggregates::score,
|
|
|
|
post_aggregates::newest_comment_time_necro,
|
|
|
|
)
|
|
|
|
.desc(),
|
2020-12-10 20:53:49 +00:00
|
|
|
)
|
2021-02-18 15:38:25 +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()),
|
2021-01-07 21:22:17 +00:00
|
|
|
SortType::New => query.then_order_by(post_aggregates::published.desc()),
|
2022-07-30 03:55:59 +00:00
|
|
|
SortType::Old => query.then_order_by(post_aggregates::published.asc()),
|
2021-02-18 15:38:25 +00:00
|
|
|
SortType::NewComments => query.then_order_by(post_aggregates::newest_comment_time.desc()),
|
2022-04-13 15:33:38 +00:00
|
|
|
SortType::MostComments => query
|
|
|
|
.then_order_by(post_aggregates::comments.desc())
|
|
|
|
.then_order_by(post_aggregates::published.desc()),
|
|
|
|
SortType::TopAll => query
|
|
|
|
.then_order_by(post_aggregates::score.desc())
|
|
|
|
.then_order_by(post_aggregates::published.desc()),
|
2020-12-10 20:53:49 +00:00
|
|
|
SortType::TopYear => query
|
2022-04-13 15:33:38 +00:00
|
|
|
.filter(post_aggregates::published.gt(now - 1.years()))
|
|
|
|
.then_order_by(post_aggregates::score.desc())
|
|
|
|
.then_order_by(post_aggregates::published.desc()),
|
2020-12-10 20:53:49 +00:00
|
|
|
SortType::TopMonth => query
|
2022-04-13 15:33:38 +00:00
|
|
|
.filter(post_aggregates::published.gt(now - 1.months()))
|
|
|
|
.then_order_by(post_aggregates::score.desc())
|
|
|
|
.then_order_by(post_aggregates::published.desc()),
|
2020-12-10 20:53:49 +00:00
|
|
|
SortType::TopWeek => query
|
2022-04-13 15:33:38 +00:00
|
|
|
.filter(post_aggregates::published.gt(now - 1.weeks()))
|
|
|
|
.then_order_by(post_aggregates::score.desc())
|
|
|
|
.then_order_by(post_aggregates::published.desc()),
|
2020-12-10 20:53:49 +00:00
|
|
|
SortType::TopDay => query
|
2022-04-13 15:33:38 +00:00
|
|
|
.filter(post_aggregates::published.gt(now - 1.days()))
|
|
|
|
.then_order_by(post_aggregates::score.desc())
|
|
|
|
.then_order_by(post_aggregates::published.desc()),
|
2020-12-10 20:53:49 +00:00
|
|
|
};
|
|
|
|
|
2022-07-08 10:21:33 +00:00
|
|
|
let (limit, offset) = limit_and_offset(self.page, self.limit)?;
|
2020-12-10 20:53:49 +00:00
|
|
|
|
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));
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let res = query.load::<PostViewTuple>(conn).await?;
|
2020-12-10 20:53:49 +00:00
|
|
|
|
2020-12-23 21:56:20 +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;
|
2020-12-23 21:56:20 +00:00
|
|
|
fn from_tuple_to_vec(items: Vec<Self::DbTuple>) -> Vec<Self> {
|
|
|
|
items
|
2022-08-04 19:30:17 +00:00
|
|
|
.into_iter()
|
2020-12-11 01:39:42 +00:00
|
|
|
.map(|a| Self {
|
2022-08-04 19:30:17 +00:00
|
|
|
post: a.0,
|
|
|
|
creator: a.1,
|
|
|
|
community: a.2,
|
2020-12-11 15:27:33 +00:00
|
|
|
creator_banned_from_community: a.3.is_some(),
|
2022-08-04 19:30:17 +00:00
|
|
|
counts: a.4,
|
2022-06-22 12:05:41 +00:00
|
|
|
subscribed: CommunityFollower::to_subscribed_type(&a.5),
|
2020-12-11 01:39:42 +00:00
|
|
|
saved: a.6.is_some(),
|
|
|
|
read: a.7.is_some(),
|
2021-08-19 20:54:15 +00:00
|
|
|
creator_blocked: a.8.is_some(),
|
|
|
|
my_vote: a.9,
|
2022-09-27 16:45:46 +00:00
|
|
|
unread_comments: a.10,
|
2020-12-11 01:39:42 +00:00
|
|
|
})
|
|
|
|
.collect::<Vec<Self>>()
|
|
|
|
}
|
2020-12-10 20:53:49 +00:00
|
|
|
}
|
2020-12-11 15:27:33 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2022-08-04 19:30:17 +00:00
|
|
|
use crate::post_view::{PostQuery, PostView};
|
2021-10-16 13:33:38 +00:00
|
|
|
use lemmy_db_schema::{
|
2022-05-03 17:44:13 +00:00
|
|
|
aggregates::structs::PostAggregates,
|
2023-03-01 00:49:31 +00:00
|
|
|
impls::actor_language::UNDETERMINED_ID,
|
2022-08-18 19:11:19 +00:00
|
|
|
newtypes::LanguageId,
|
2021-10-16 13:33:38 +00:00
|
|
|
source::{
|
2022-10-06 18:27:58 +00:00
|
|
|
actor_language::LocalUserLanguage,
|
2022-11-19 04:33:54 +00:00
|
|
|
community::{Community, CommunityInsertForm, CommunitySafe},
|
2021-10-16 13:33:38 +00:00
|
|
|
community_block::{CommunityBlock, CommunityBlockForm},
|
2022-10-27 09:24:07 +00:00
|
|
|
instance::Instance,
|
2022-08-18 19:11:19 +00:00
|
|
|
language::Language,
|
2022-10-27 09:24:07 +00:00
|
|
|
local_user::{LocalUser, LocalUserInsertForm, LocalUserUpdateForm},
|
2022-11-19 04:33:54 +00:00
|
|
|
person::{Person, PersonInsertForm, PersonSafe},
|
2021-10-16 13:33:38 +00:00
|
|
|
person_block::{PersonBlock, PersonBlockForm},
|
2022-11-19 04:33:54 +00:00
|
|
|
post::{Post, PostInsertForm, PostLike, PostLikeForm},
|
2021-10-16 13:33:38 +00:00
|
|
|
},
|
|
|
|
traits::{Blockable, Crud, Likeable},
|
2022-11-09 10:05:00 +00:00
|
|
|
utils::{build_db_pool_for_tests, DbPool},
|
2022-05-06 20:55:07 +00:00
|
|
|
SortType,
|
2022-06-22 12:05:41 +00:00
|
|
|
SubscribedType,
|
2020-12-11 15:27:33 +00:00
|
|
|
};
|
2021-02-25 19:43:39 +00:00
|
|
|
use serial_test::serial;
|
2020-12-11 15:27:33 +00:00
|
|
|
|
2022-08-18 19:11:19 +00:00
|
|
|
struct Data {
|
2022-10-27 09:24:07 +00:00
|
|
|
inserted_instance: Instance,
|
2022-08-18 19:11:19 +00:00
|
|
|
inserted_person: Person,
|
2022-08-19 14:27:39 +00:00
|
|
|
inserted_local_user: LocalUser,
|
2022-08-18 19:11:19 +00:00
|
|
|
inserted_blocked_person: Person,
|
|
|
|
inserted_bot: Person,
|
|
|
|
inserted_community: Community,
|
|
|
|
inserted_post: Post,
|
|
|
|
}
|
2020-12-11 15:27:33 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn init_data(pool: &DbPool) -> Data {
|
2023-03-01 02:36:57 +00:00
|
|
|
let inserted_instance = Instance::read_or_create(pool, "my_domain.tld".to_string())
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2022-10-27 09:24:07 +00:00
|
|
|
|
2021-03-10 22:33:55 +00:00
|
|
|
let person_name = "tegan".to_string();
|
2020-12-11 15:27:33 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let new_person = PersonInsertForm::builder()
|
2022-11-19 04:33:54 +00:00
|
|
|
.name(person_name.clone())
|
2022-10-27 09:24:07 +00:00
|
|
|
.public_key("pubkey".to_string())
|
|
|
|
.instance_id(inserted_instance.id)
|
|
|
|
.build();
|
2020-12-11 15:27:33 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let inserted_person = Person::create(pool, &new_person).await.unwrap();
|
2020-12-11 15:27:33 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let local_user_form = LocalUserInsertForm::builder()
|
|
|
|
.person_id(inserted_person.id)
|
2022-11-19 04:33:54 +00:00
|
|
|
.password_encrypted(String::new())
|
2022-10-27 09:24:07 +00:00
|
|
|
.build();
|
2022-11-09 10:05:00 +00:00
|
|
|
let inserted_local_user = LocalUser::create(pool, &local_user_form).await.unwrap();
|
2022-08-19 14:27:39 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let new_bot = PersonInsertForm::builder()
|
|
|
|
.name("mybot".to_string())
|
|
|
|
.bot_account(Some(true))
|
|
|
|
.public_key("pubkey".to_string())
|
|
|
|
.instance_id(inserted_instance.id)
|
|
|
|
.build();
|
2021-04-21 21:41:14 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let inserted_bot = Person::create(pool, &new_bot).await.unwrap();
|
2021-04-21 21:41:14 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let new_community = CommunityInsertForm::builder()
|
|
|
|
.name("test_community_3".to_string())
|
|
|
|
.title("nada".to_owned())
|
|
|
|
.public_key("pubkey".to_string())
|
|
|
|
.instance_id(inserted_instance.id)
|
|
|
|
.build();
|
2020-12-11 15:27:33 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let inserted_community = Community::create(pool, &new_community).await.unwrap();
|
2020-12-11 15:27:33 +00:00
|
|
|
|
2021-08-19 20:54:15 +00:00
|
|
|
// Test a person block, make sure the post query doesn't include their post
|
2022-10-27 09:24:07 +00:00
|
|
|
let blocked_person = PersonInsertForm::builder()
|
|
|
|
.name(person_name)
|
|
|
|
.public_key("pubkey".to_string())
|
|
|
|
.instance_id(inserted_instance.id)
|
|
|
|
.build();
|
2021-08-19 20:54:15 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let inserted_blocked_person = Person::create(pool, &blocked_person).await.unwrap();
|
2021-08-19 20:54:15 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let post_from_blocked_person = PostInsertForm::builder()
|
|
|
|
.name("blocked_person_post".to_string())
|
|
|
|
.creator_id(inserted_blocked_person.id)
|
|
|
|
.community_id(inserted_community.id)
|
|
|
|
.language_id(Some(LanguageId(1)))
|
|
|
|
.build();
|
2021-08-19 20:54:15 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
Post::create(pool, &post_from_blocked_person).await.unwrap();
|
2021-08-19 20:54:15 +00:00
|
|
|
|
|
|
|
// block that person
|
|
|
|
let person_block = PersonBlockForm {
|
|
|
|
person_id: inserted_person.id,
|
|
|
|
target_id: inserted_blocked_person.id,
|
|
|
|
};
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
PersonBlock::block(pool, &person_block).await.unwrap();
|
2021-08-19 20:54:15 +00:00
|
|
|
|
|
|
|
// A sample post
|
2022-10-27 09:24:07 +00:00
|
|
|
let new_post = PostInsertForm::builder()
|
|
|
|
.name("test post 3".to_string())
|
|
|
|
.creator_id(inserted_person.id)
|
|
|
|
.community_id(inserted_community.id)
|
|
|
|
.language_id(Some(LanguageId(47)))
|
|
|
|
.build();
|
2020-12-11 15:27:33 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let inserted_post = Post::create(pool, &new_post).await.unwrap();
|
2020-12-11 15:27:33 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let new_bot_post = PostInsertForm::builder()
|
|
|
|
.name("test bot post".to_string())
|
|
|
|
.creator_id(inserted_bot.id)
|
|
|
|
.community_id(inserted_community.id)
|
|
|
|
.build();
|
2021-04-21 21:41:14 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let _inserted_bot_post = Post::create(pool, &new_bot_post).await.unwrap();
|
2020-12-11 15:27:33 +00:00
|
|
|
|
2022-08-18 19:11:19 +00:00
|
|
|
Data {
|
2022-10-27 09:24:07 +00:00
|
|
|
inserted_instance,
|
2022-08-18 19:11:19 +00:00
|
|
|
inserted_person,
|
2022-08-19 14:27:39 +00:00
|
|
|
inserted_local_user,
|
2022-08-18 19:11:19 +00:00
|
|
|
inserted_blocked_person,
|
|
|
|
inserted_bot,
|
|
|
|
inserted_community,
|
|
|
|
inserted_post,
|
|
|
|
}
|
|
|
|
}
|
2020-12-11 15:27:33 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
#[tokio::test]
|
2022-08-18 19:11:19 +00:00
|
|
|
#[serial]
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn post_listing_with_person() {
|
|
|
|
let pool = &build_db_pool_for_tests().await;
|
|
|
|
let data = init_data(pool).await;
|
2021-08-19 20:54:15 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let local_user_form = LocalUserUpdateForm::builder()
|
|
|
|
.show_bot_accounts(Some(false))
|
|
|
|
.build();
|
2022-08-19 14:27:39 +00:00
|
|
|
let inserted_local_user =
|
2022-11-09 10:05:00 +00:00
|
|
|
LocalUser::update(pool, data.inserted_local_user.id, &local_user_form)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2022-08-19 14:27:39 +00:00
|
|
|
|
2022-08-18 19:11:19 +00:00
|
|
|
let read_post_listing = PostQuery::builder()
|
2022-11-09 10:05:00 +00:00
|
|
|
.pool(pool)
|
2022-08-04 19:30:17 +00:00
|
|
|
.sort(Some(SortType::New))
|
2022-08-18 19:11:19 +00:00
|
|
|
.community_id(Some(data.inserted_community.id))
|
2022-08-19 14:27:39 +00:00
|
|
|
.local_user(Some(&inserted_local_user))
|
2022-08-04 19:30:17 +00:00
|
|
|
.build()
|
2021-08-19 20:54:15 +00:00
|
|
|
.list()
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2021-08-19 20:54:15 +00:00
|
|
|
.unwrap();
|
2020-12-11 15:27:33 +00:00
|
|
|
|
2022-08-18 19:11:19 +00:00
|
|
|
let post_listing_single_with_person =
|
2022-11-09 10:05:00 +00:00
|
|
|
PostView::read(pool, data.inserted_post.id, Some(data.inserted_person.id))
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2020-12-11 15:27:33 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let mut expected_post_listing_with_user = expected_post_view(&data, pool).await;
|
2020-12-11 15:27:33 +00:00
|
|
|
|
2022-08-18 19:11:19 +00:00
|
|
|
// Should be only one person, IE the bot post, and blocked should be missing
|
|
|
|
assert_eq!(1, read_post_listing.len());
|
|
|
|
|
|
|
|
assert_eq!(expected_post_listing_with_user, read_post_listing[0]);
|
|
|
|
expected_post_listing_with_user.my_vote = Some(0);
|
2021-03-11 04:43:11 +00:00
|
|
|
assert_eq!(
|
|
|
|
expected_post_listing_with_user,
|
2022-08-18 19:11:19 +00:00
|
|
|
post_listing_single_with_person
|
2021-03-11 04:43:11 +00:00
|
|
|
);
|
2021-04-21 21:41:14 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let local_user_form = LocalUserUpdateForm::builder()
|
|
|
|
.show_bot_accounts(Some(true))
|
|
|
|
.build();
|
2022-08-19 14:27:39 +00:00
|
|
|
let inserted_local_user =
|
2022-11-09 10:05:00 +00:00
|
|
|
LocalUser::update(pool, data.inserted_local_user.id, &local_user_form)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2022-08-19 14:27:39 +00:00
|
|
|
|
2022-08-18 19:11:19 +00:00
|
|
|
let post_listings_with_bots = PostQuery::builder()
|
2022-11-09 10:05:00 +00:00
|
|
|
.pool(pool)
|
2022-08-18 19:11:19 +00:00
|
|
|
.sort(Some(SortType::New))
|
|
|
|
.community_id(Some(data.inserted_community.id))
|
2022-08-19 14:27:39 +00:00
|
|
|
.local_user(Some(&inserted_local_user))
|
2022-08-18 19:11:19 +00:00
|
|
|
.build()
|
|
|
|
.list()
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2022-08-18 19:11:19 +00:00
|
|
|
.unwrap();
|
|
|
|
// should include bot post which has "undetermined" language
|
|
|
|
assert_eq!(2, post_listings_with_bots.len());
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
cleanup(data, pool).await;
|
2022-08-18 19:11:19 +00:00
|
|
|
}
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
#[tokio::test]
|
2022-08-18 19:11:19 +00:00
|
|
|
#[serial]
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn post_listing_no_person() {
|
|
|
|
let pool = &build_db_pool_for_tests().await;
|
|
|
|
let data = init_data(pool).await;
|
2022-08-18 19:11:19 +00:00
|
|
|
|
|
|
|
let read_post_listing_multiple_no_person = PostQuery::builder()
|
2022-11-09 10:05:00 +00:00
|
|
|
.pool(pool)
|
2022-08-18 19:11:19 +00:00
|
|
|
.sort(Some(SortType::New))
|
|
|
|
.community_id(Some(data.inserted_community.id))
|
|
|
|
.build()
|
|
|
|
.list()
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2022-08-18 19:11:19 +00:00
|
|
|
.unwrap();
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let read_post_listing_single_no_person = PostView::read(pool, data.inserted_post.id, None)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2020-12-11 15:27:33 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let expected_post_listing_no_person = expected_post_view(&data, pool).await;
|
2022-08-18 19:11:19 +00:00
|
|
|
|
|
|
|
// Should be 2 posts, with the bot post, and the blocked
|
|
|
|
assert_eq!(3, read_post_listing_multiple_no_person.len());
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
expected_post_listing_no_person,
|
|
|
|
read_post_listing_multiple_no_person[1]
|
|
|
|
);
|
2021-03-11 04:43:11 +00:00
|
|
|
assert_eq!(
|
|
|
|
expected_post_listing_no_person,
|
2022-08-18 19:11:19 +00:00
|
|
|
read_post_listing_single_no_person
|
2021-03-11 04:43:11 +00:00
|
|
|
);
|
2020-12-11 15:27:33 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
cleanup(data, pool).await;
|
2022-08-18 19:11:19 +00:00
|
|
|
}
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
#[tokio::test]
|
2022-08-18 19:11:19 +00:00
|
|
|
#[serial]
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn post_listing_block_community() {
|
|
|
|
let pool = &build_db_pool_for_tests().await;
|
|
|
|
let data = init_data(pool).await;
|
2022-08-18 19:11:19 +00:00
|
|
|
|
|
|
|
let community_block = CommunityBlockForm {
|
|
|
|
person_id: data.inserted_person.id,
|
|
|
|
community_id: data.inserted_community.id,
|
|
|
|
};
|
2022-11-09 10:05:00 +00:00
|
|
|
CommunityBlock::block(pool, &community_block).await.unwrap();
|
2021-08-19 20:54:15 +00:00
|
|
|
|
2022-08-18 19:11:19 +00:00
|
|
|
let read_post_listings_with_person_after_block = PostQuery::builder()
|
2022-11-09 10:05:00 +00:00
|
|
|
.pool(pool)
|
2022-08-18 19:11:19 +00:00
|
|
|
.sort(Some(SortType::New))
|
|
|
|
.community_id(Some(data.inserted_community.id))
|
2022-08-19 14:27:39 +00:00
|
|
|
.local_user(Some(&data.inserted_local_user))
|
2022-08-18 19:11:19 +00:00
|
|
|
.build()
|
|
|
|
.list()
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2022-08-18 19:11:19 +00:00
|
|
|
.unwrap();
|
2021-08-19 20:54:15 +00:00
|
|
|
// Should be 0 posts after the community block
|
|
|
|
assert_eq!(0, read_post_listings_with_person_after_block.len());
|
2021-04-21 21:41:14 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
CommunityBlock::unblock(pool, &community_block)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
cleanup(data, pool).await;
|
2022-08-18 19:11:19 +00:00
|
|
|
}
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
#[tokio::test]
|
2022-08-18 19:11:19 +00:00
|
|
|
#[serial]
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn post_listing_like() {
|
|
|
|
let pool = &build_db_pool_for_tests().await;
|
|
|
|
let data = init_data(pool).await;
|
2022-08-18 19:11:19 +00:00
|
|
|
|
|
|
|
let post_like_form = PostLikeForm {
|
|
|
|
post_id: data.inserted_post.id,
|
|
|
|
person_id: data.inserted_person.id,
|
|
|
|
score: 1,
|
|
|
|
};
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let inserted_post_like = PostLike::like(pool, &post_like_form).await.unwrap();
|
2022-08-18 19:11:19 +00:00
|
|
|
|
|
|
|
let expected_post_like = PostLike {
|
|
|
|
id: inserted_post_like.id,
|
|
|
|
post_id: data.inserted_post.id,
|
|
|
|
person_id: data.inserted_person.id,
|
|
|
|
published: inserted_post_like.published,
|
|
|
|
score: 1,
|
|
|
|
};
|
2020-12-11 15:27:33 +00:00
|
|
|
assert_eq!(expected_post_like, inserted_post_like);
|
2022-08-18 19:11:19 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let like_removed = PostLike::remove(pool, data.inserted_person.id, data.inserted_post.id)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2020-12-11 15:27:33 +00:00
|
|
|
assert_eq!(1, like_removed);
|
2022-11-09 10:05:00 +00:00
|
|
|
cleanup(data, pool).await;
|
2022-08-18 19:11:19 +00:00
|
|
|
}
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
#[tokio::test]
|
2022-08-18 19:11:19 +00:00
|
|
|
#[serial]
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn post_listing_person_language() {
|
|
|
|
let pool = &build_db_pool_for_tests().await;
|
|
|
|
let data = init_data(pool).await;
|
2022-08-18 19:11:19 +00:00
|
|
|
|
2023-02-05 05:38:08 +00:00
|
|
|
let spanish_id = Language::read_id_from_code(pool, Some("es"))
|
|
|
|
.await
|
|
|
|
.unwrap()
|
|
|
|
.unwrap();
|
2022-10-27 09:24:07 +00:00
|
|
|
let post_spanish = PostInsertForm::builder()
|
|
|
|
.name("asffgdsc".to_string())
|
|
|
|
.creator_id(data.inserted_person.id)
|
|
|
|
.community_id(data.inserted_community.id)
|
|
|
|
.language_id(Some(spanish_id))
|
|
|
|
.build();
|
2022-08-18 19:11:19 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
Post::create(pool, &post_spanish).await.unwrap();
|
2022-08-18 19:11:19 +00:00
|
|
|
|
|
|
|
let post_listings_all = PostQuery::builder()
|
2022-11-09 10:05:00 +00:00
|
|
|
.pool(pool)
|
2022-08-18 19:11:19 +00:00
|
|
|
.sort(Some(SortType::New))
|
2022-08-19 14:27:39 +00:00
|
|
|
.local_user(Some(&data.inserted_local_user))
|
2022-08-18 19:11:19 +00:00
|
|
|
.build()
|
|
|
|
.list()
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2022-08-18 19:11:19 +00:00
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
// no language filters specified, all posts should be returned
|
2022-08-19 14:27:39 +00:00
|
|
|
assert_eq!(3, post_listings_all.len());
|
2022-08-18 19:11:19 +00:00
|
|
|
|
2023-02-05 05:38:08 +00:00
|
|
|
let french_id = Language::read_id_from_code(pool, Some("fr"))
|
|
|
|
.await
|
|
|
|
.unwrap()
|
|
|
|
.unwrap();
|
2022-11-09 10:05:00 +00:00
|
|
|
LocalUserLanguage::update(pool, vec![french_id], data.inserted_local_user.id)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2022-08-18 19:11:19 +00:00
|
|
|
|
|
|
|
let post_listing_french = PostQuery::builder()
|
2022-11-09 10:05:00 +00:00
|
|
|
.pool(pool)
|
2022-08-18 19:11:19 +00:00
|
|
|
.sort(Some(SortType::New))
|
2022-08-19 14:27:39 +00:00
|
|
|
.local_user(Some(&data.inserted_local_user))
|
2022-08-18 19:11:19 +00:00
|
|
|
.build()
|
|
|
|
.list()
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2022-08-18 19:11:19 +00:00
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
// only one french language post should be returned
|
|
|
|
assert_eq!(1, post_listing_french.len());
|
|
|
|
assert_eq!(french_id, post_listing_french[0].post.language_id);
|
|
|
|
|
2022-10-06 18:27:58 +00:00
|
|
|
LocalUserLanguage::update(
|
2022-11-09 10:05:00 +00:00
|
|
|
pool,
|
2023-03-01 00:49:31 +00:00
|
|
|
vec![french_id, UNDETERMINED_ID],
|
2022-08-19 14:27:39 +00:00
|
|
|
data.inserted_local_user.id,
|
2022-08-18 19:11:19 +00:00
|
|
|
)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2022-08-18 19:11:19 +00:00
|
|
|
.unwrap();
|
|
|
|
let post_listings_french_und = PostQuery::builder()
|
2022-11-09 10:05:00 +00:00
|
|
|
.pool(pool)
|
2022-08-18 19:11:19 +00:00
|
|
|
.sort(Some(SortType::New))
|
2022-08-19 14:27:39 +00:00
|
|
|
.local_user(Some(&data.inserted_local_user))
|
2022-08-18 19:11:19 +00:00
|
|
|
.build()
|
|
|
|
.list()
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2022-08-18 19:11:19 +00:00
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
// french post and undetermined language post should be returned
|
|
|
|
assert_eq!(2, post_listings_french_und.len());
|
|
|
|
assert_eq!(
|
2023-03-01 00:49:31 +00:00
|
|
|
UNDETERMINED_ID,
|
2022-08-18 19:11:19 +00:00
|
|
|
post_listings_french_und[0].post.language_id
|
|
|
|
);
|
|
|
|
assert_eq!(french_id, post_listings_french_und[1].post.language_id);
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
cleanup(data, pool).await;
|
2020-12-11 15:27:33 +00:00
|
|
|
}
|
2022-08-22 20:55:10 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn cleanup(data: Data, pool: &DbPool) {
|
|
|
|
let num_deleted = Post::delete(pool, data.inserted_post.id).await.unwrap();
|
|
|
|
Community::delete(pool, data.inserted_community.id)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
Person::delete(pool, data.inserted_person.id).await.unwrap();
|
|
|
|
Person::delete(pool, data.inserted_bot.id).await.unwrap();
|
|
|
|
Person::delete(pool, data.inserted_blocked_person.id)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
Instance::delete(pool, data.inserted_instance.id)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2022-08-22 20:55:10 +00:00
|
|
|
assert_eq!(1, num_deleted);
|
|
|
|
}
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn expected_post_view(data: &Data, pool: &DbPool) -> PostView {
|
2022-08-22 20:55:10 +00:00
|
|
|
let (inserted_person, inserted_community, inserted_post) = (
|
|
|
|
&data.inserted_person,
|
|
|
|
&data.inserted_community,
|
|
|
|
&data.inserted_post,
|
|
|
|
);
|
2022-11-09 10:05:00 +00:00
|
|
|
let agg = PostAggregates::read(pool, inserted_post.id).await.unwrap();
|
2022-08-22 20:55:10 +00:00
|
|
|
|
|
|
|
PostView {
|
|
|
|
post: Post {
|
|
|
|
id: inserted_post.id,
|
|
|
|
name: inserted_post.name.clone(),
|
|
|
|
creator_id: inserted_person.id,
|
|
|
|
url: None,
|
|
|
|
body: None,
|
|
|
|
published: inserted_post.published,
|
|
|
|
updated: None,
|
|
|
|
community_id: inserted_community.id,
|
|
|
|
removed: false,
|
|
|
|
deleted: false,
|
|
|
|
locked: false,
|
|
|
|
nsfw: false,
|
|
|
|
embed_title: None,
|
|
|
|
embed_description: None,
|
|
|
|
embed_video_url: None,
|
|
|
|
thumbnail_url: None,
|
2022-11-19 04:33:54 +00:00
|
|
|
ap_id: inserted_post.ap_id.clone(),
|
2022-08-22 20:55:10 +00:00
|
|
|
local: true,
|
|
|
|
language_id: LanguageId(47),
|
2022-12-12 11:17:10 +00:00
|
|
|
featured_community: false,
|
|
|
|
featured_local: false,
|
2022-08-22 20:55:10 +00:00
|
|
|
},
|
|
|
|
my_vote: None,
|
2022-09-27 16:45:46 +00:00
|
|
|
unread_comments: 0,
|
2022-08-22 20:55:10 +00:00
|
|
|
creator: PersonSafe {
|
|
|
|
id: inserted_person.id,
|
|
|
|
name: inserted_person.name.clone(),
|
|
|
|
display_name: None,
|
|
|
|
published: inserted_person.published,
|
|
|
|
avatar: None,
|
2022-11-19 04:33:54 +00:00
|
|
|
actor_id: inserted_person.actor_id.clone(),
|
2022-08-22 20:55:10 +00:00
|
|
|
local: true,
|
|
|
|
admin: false,
|
|
|
|
bot_account: false,
|
|
|
|
banned: false,
|
|
|
|
deleted: false,
|
|
|
|
bio: None,
|
|
|
|
banner: None,
|
|
|
|
updated: None,
|
2022-11-19 04:33:54 +00:00
|
|
|
inbox_url: inserted_person.inbox_url.clone(),
|
2022-08-22 20:55:10 +00:00
|
|
|
shared_inbox_url: None,
|
|
|
|
matrix_user_id: None,
|
|
|
|
ban_expires: None,
|
2022-10-27 09:24:07 +00:00
|
|
|
instance_id: data.inserted_instance.id,
|
2022-08-22 20:55:10 +00:00
|
|
|
},
|
|
|
|
creator_banned_from_community: false,
|
|
|
|
community: CommunitySafe {
|
|
|
|
id: inserted_community.id,
|
|
|
|
name: inserted_community.name.clone(),
|
|
|
|
icon: None,
|
|
|
|
removed: false,
|
|
|
|
deleted: false,
|
|
|
|
nsfw: false,
|
2022-11-19 04:33:54 +00:00
|
|
|
actor_id: inserted_community.actor_id.clone(),
|
2022-08-22 20:55:10 +00:00
|
|
|
local: true,
|
|
|
|
title: "nada".to_owned(),
|
|
|
|
description: None,
|
|
|
|
updated: None,
|
|
|
|
banner: None,
|
|
|
|
hidden: false,
|
|
|
|
posting_restricted_to_mods: false,
|
|
|
|
published: inserted_community.published,
|
2022-10-27 09:24:07 +00:00
|
|
|
instance_id: data.inserted_instance.id,
|
2022-08-22 20:55:10 +00:00
|
|
|
},
|
|
|
|
counts: PostAggregates {
|
|
|
|
id: agg.id,
|
|
|
|
post_id: inserted_post.id,
|
|
|
|
comments: 0,
|
|
|
|
score: 0,
|
|
|
|
upvotes: 0,
|
|
|
|
downvotes: 0,
|
|
|
|
published: agg.published,
|
|
|
|
newest_comment_time_necro: inserted_post.published,
|
|
|
|
newest_comment_time: inserted_post.published,
|
2022-12-12 11:17:10 +00:00
|
|
|
featured_community: false,
|
|
|
|
featured_local: false,
|
2022-08-22 20:55:10 +00:00
|
|
|
},
|
|
|
|
subscribed: SubscribedType::NotSubscribed,
|
|
|
|
read: false,
|
|
|
|
saved: false,
|
|
|
|
creator_blocked: false,
|
|
|
|
}
|
|
|
|
}
|
2020-12-11 15:27:33 +00:00
|
|
|
}
|