2023-03-01 17:19:46 +00:00
use crate ::structs ::{ CommunityModeratorView , CommunityView , PersonView } ;
2022-11-09 10:05:00 +00:00
use diesel ::{
2023-07-28 08:36:50 +00:00
pg ::Pg ,
2022-11-09 10:05:00 +00:00
result ::Error ,
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 ::CommunityAggregates ,
2021-10-16 13:33:38 +00:00
newtypes ::{ CommunityId , PersonId } ,
2022-03-02 17:39:27 +00:00
schema ::{ community , community_aggregates , community_block , community_follower , local_user } ,
2021-08-19 20:54:15 +00:00
source ::{
2023-03-01 17:19:46 +00:00
community ::{ Community , CommunityFollower } ,
2021-08-19 20:54:15 +00:00
community_block ::CommunityBlock ,
2022-08-19 14:27:39 +00:00
local_user ::LocalUser ,
2021-08-19 20:54:15 +00:00
} ,
2023-03-01 17:19:46 +00:00
traits ::JoinView ,
2023-07-28 08:36:50 +00:00
utils ::{ fuzzy_search , limit_and_offset , DbConn , DbPool , ListFn , Queries , ReadFn } ,
2022-05-06 20:55:07 +00:00
ListingType ,
SortType ,
2020-12-18 16:17:21 +00:00
} ;
2020-12-04 16:29:44 +00:00
2020-12-11 01:39:42 +00:00
type CommunityViewTuple = (
2023-03-01 17:19:46 +00:00
Community ,
2020-12-11 01:39:42 +00:00
CommunityAggregates ,
Option < CommunityFollower > ,
2021-08-19 20:54:15 +00:00
Option < CommunityBlock > ,
2020-12-11 01:39:42 +00:00
) ;
2023-07-28 08:36:50 +00:00
fn queries < ' a > ( ) -> Queries <
impl ReadFn < ' a , CommunityView , ( CommunityId , Option < PersonId > , Option < bool > ) > ,
impl ListFn < ' a , CommunityView , CommunityQuery < ' a > > ,
> {
let all_joins = | query : community ::BoxedQuery < ' a , Pg > , my_person_id : Option < PersonId > | {
2020-12-06 03:49:15 +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-04 16:29:44 +00:00
2023-07-28 08:36:50 +00:00
query
2020-12-04 21:35:46 +00:00
. inner_join ( community_aggregates ::table )
2020-12-06 03:49:15 +00:00
. left_join (
community_follower ::table . on (
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-06 03:49:15 +00:00
) ,
)
2021-08-19 20:54:15 +00:00
. left_join (
community_block ::table . on (
community ::id
. eq ( community_block ::community_id )
. and ( community_block ::person_id . eq ( person_id_join ) ) ,
) ,
)
2023-07-28 08:36:50 +00:00
} ;
let selection = (
community ::all_columns ,
community_aggregates ::all_columns ,
community_follower ::all_columns . nullable ( ) ,
community_block ::all_columns . nullable ( ) ,
) ;
let not_removed_or_deleted = community ::removed
. eq ( false )
. and ( community ::deleted . eq ( false ) ) ;
let read = move | mut conn : DbConn < ' a > ,
( community_id , my_person_id , is_mod_or_admin ) : (
CommunityId ,
Option < PersonId > ,
Option < bool > ,
) | async move {
let mut query = all_joins (
community ::table . find ( community_id ) . into_boxed ( ) ,
my_person_id ,
)
. select ( selection ) ;
2023-03-01 03:46:15 +00:00
// Hide deleted and removed for non-admins or mods
2023-06-23 10:53:46 +00:00
if ! is_mod_or_admin . unwrap_or ( false ) {
2023-07-28 08:36:50 +00:00
query = query . filter ( not_removed_or_deleted ) ;
2023-03-01 03:46:15 +00:00
}
2023-07-28 08:36:50 +00:00
query . first ::< CommunityViewTuple > ( & mut conn ) . await
} ;
2020-12-06 03:49:15 +00:00
2023-07-28 08:36:50 +00:00
let list = move | mut conn : DbConn < ' a > , options : CommunityQuery < ' a > | async move {
2023-07-03 17:09:15 +00:00
use SortType ::* ;
2023-07-28 08:36:50 +00:00
let my_person_id = options . local_user . map ( | l | l . person_id ) ;
2022-11-09 10:05:00 +00:00
2020-12-16 18:59:43 +00:00
// The left join below will return None in this case
2023-07-28 08:36:50 +00:00
let person_id_join = my_person_id . unwrap_or ( PersonId ( - 1 ) ) ;
2020-12-16 18:59:43 +00:00
2023-07-28 08:36:50 +00:00
let mut query = all_joins ( community ::table . into_boxed ( ) , my_person_id )
2022-03-02 17:39:27 +00:00
. left_join ( local_user ::table . on ( local_user ::person_id . eq ( person_id_join ) ) )
2023-07-28 08:36:50 +00:00
. select ( selection ) ;
if let Some ( search_term ) = options . search_term {
2020-12-06 03:49:15 +00:00
let searcher = fuzzy_search ( & search_term ) ;
query = query
2022-11-19 04:33:54 +00:00
. filter ( community ::name . ilike ( searcher . clone ( ) ) )
2023-07-28 08:36:50 +00:00
. or_filter ( community ::title . ilike ( searcher ) )
}
2020-12-06 03:49:15 +00:00
2023-03-01 03:46:15 +00:00
// Hide deleted and removed for non-admins or mods
2023-07-28 08:36:50 +00:00
if ! options . is_mod_or_admin . unwrap_or ( false ) {
query = query . filter ( not_removed_or_deleted ) . filter (
community ::hidden
. eq ( false )
. or ( community_follower ::person_id . eq ( person_id_join ) ) ,
) ;
2023-03-01 03:46:15 +00:00
}
2023-07-28 08:36:50 +00:00
match options . sort . unwrap_or ( Hot ) {
2023-07-07 09:29:07 +00:00
Hot | Active = > query = query . order_by ( community_aggregates ::hot_rank . desc ( ) ) ,
2023-07-03 17:09:15 +00:00
NewComments | TopDay | TopTwelveHour | TopSixHour | TopHour = > {
query = query . order_by ( community_aggregates ::users_active_day . desc ( ) )
}
New = > query = query . order_by ( community ::published . desc ( ) ) ,
Old = > query = query . order_by ( community ::published . asc ( ) ) ,
2023-07-26 17:07:05 +00:00
// Controversial is temporary until a CommentSortType is created
MostComments | Controversial = > query = query . order_by ( community_aggregates ::comments . desc ( ) ) ,
2023-07-03 17:09:15 +00:00
TopAll | TopYear | TopNineMonths = > {
query = query . order_by ( community_aggregates ::subscribers . desc ( ) )
}
TopSixMonths | TopThreeMonths = > {
query = query . order_by ( community_aggregates ::users_active_half_year . desc ( ) )
}
TopMonth = > query = query . order_by ( community_aggregates ::users_active_month . desc ( ) ) ,
TopWeek = > query = query . order_by ( community_aggregates ::users_active_week . desc ( ) ) ,
2020-12-06 03:49:15 +00:00
} ;
2023-07-28 08:36:50 +00:00
if let Some ( listing_type ) = options . listing_type {
2021-04-15 03:37:51 +00:00
query = match listing_type {
ListingType ::Subscribed = > query . filter ( community_follower ::person_id . is_not_null ( ) ) , // TODO could be this: and(community_follower::person_id.eq(person_id_join)),
ListingType ::Local = > query . filter ( community ::local . eq ( true ) ) ,
_ = > query ,
} ;
}
2021-01-26 17:18:01 +00:00
2022-03-02 17:39:27 +00:00
// Don't show blocked communities or nsfw communities if not enabled in profile
2023-07-28 08:36:50 +00:00
if options . local_user . is_some ( ) {
2021-08-19 20:54:15 +00:00
query = query . filter ( community_block ::person_id . is_null ( ) ) ;
2022-03-02 17:39:27 +00:00
query = query . filter ( community ::nsfw . eq ( false ) . or ( local_user ::show_nsfw . eq ( true ) ) ) ;
} else {
2023-06-27 10:45:26 +00:00
// No person in request, only show nsfw communities if show_nsfw is passed into request
2023-07-28 08:36:50 +00:00
if ! options . show_nsfw . unwrap_or ( false ) {
2022-03-02 17:39:27 +00:00
query = query . filter ( community ::nsfw . eq ( false ) ) ;
}
2021-08-19 20:54:15 +00:00
}
2023-07-28 08:36:50 +00:00
let ( limit , offset ) = limit_and_offset ( options . page , options . limit ) ? ;
query
2020-12-06 03:49:15 +00:00
. limit ( limit )
. offset ( offset )
2023-07-28 08:36:50 +00:00
. load ::< CommunityViewTuple > ( & mut conn )
. await
} ;
Queries ::new ( read , list )
}
impl CommunityView {
pub async fn read (
pool : & mut DbPool < '_ > ,
community_id : CommunityId ,
my_person_id : Option < PersonId > ,
is_mod_or_admin : Option < bool > ,
) -> Result < Self , Error > {
queries ( )
. read ( pool , ( community_id , my_person_id , is_mod_or_admin ) )
. await
}
pub async fn is_mod_or_admin (
pool : & mut DbPool < '_ > ,
person_id : PersonId ,
community_id : CommunityId ,
) -> Result < bool , Error > {
let is_mod =
CommunityModeratorView ::is_community_moderator ( pool , community_id , person_id ) . await ? ;
if is_mod {
return Ok ( true ) ;
}
2020-12-06 03:49:15 +00:00
2023-07-28 08:36:50 +00:00
PersonView ::is_admin ( pool , person_id ) . await
}
}
#[ derive(Default) ]
pub struct CommunityQuery < ' a > {
pub listing_type : Option < ListingType > ,
pub sort : Option < SortType > ,
pub local_user : Option < & ' a LocalUser > ,
pub search_term : Option < String > ,
pub is_mod_or_admin : Option < bool > ,
pub show_nsfw : Option < bool > ,
pub page : Option < i64 > ,
pub limit : Option < i64 > ,
}
impl < ' a > CommunityQuery < ' a > {
pub async fn list ( self , pool : & mut DbPool < '_ > ) -> Result < Vec < CommunityView > , Error > {
queries ( ) . list ( pool , self ) . await
2020-12-06 03:49:15 +00:00
}
}
2023-03-01 17:19:46 +00:00
impl JoinView for CommunityView {
type JoinTuple = CommunityViewTuple ;
fn from_tuple ( a : Self ::JoinTuple ) -> Self {
Self {
community : a . 0 ,
counts : a . 1 ,
subscribed : CommunityFollower ::to_subscribed_type ( & a . 2 ) ,
blocked : a . 3. is_some ( ) ,
}
2020-12-11 01:39:42 +00:00
}
2020-12-06 03:49:15 +00:00
}