mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-15 00:43:59 +00:00
c9f1407429
* Initial commit to bump diesel to 2.0.0-rc.0 and see what happens * Add chrono feature from diesel * db_schema crate is close to building? * Upgrade diesel-derive-newtype * Mostly modifying references to connections to be mutable ones; also used new way to do migrations as suggested by the migration guide; a lot more compiles now, though I can't figure out this tricky ToSql issue at the moment * Running clippy --fix * Trying to fix drone clippy 1 * Fix clippy * Upgrade clux-musl * Trying to fix drone clippy 2 * Trying to fix drone clippy 3 * Trying to fix drone clippy 5 * Adding diesel table aliases, removing sql view hack. Fixes #2101 Co-authored-by: Steven Chu <stevenc1@gmail.com> Co-authored-by: Nutomic <me@nutomic.com>
225 lines
6.8 KiB
Rust
225 lines
6.8 KiB
Rust
use crate::structs::{CommunityModeratorView, CommunityView, PersonViewSafe};
|
|
use diesel::{result::Error, *};
|
|
use lemmy_db_schema::{
|
|
aggregates::structs::CommunityAggregates,
|
|
newtypes::{CommunityId, PersonId},
|
|
schema::{community, community_aggregates, community_block, community_follower, local_user},
|
|
source::{
|
|
community::{Community, CommunityFollower, CommunitySafe},
|
|
community_block::CommunityBlock,
|
|
local_user::LocalUser,
|
|
},
|
|
traits::{ToSafe, ViewToVec},
|
|
utils::{functions::hot_rank, fuzzy_search, limit_and_offset},
|
|
ListingType,
|
|
SortType,
|
|
};
|
|
use typed_builder::TypedBuilder;
|
|
|
|
type CommunityViewTuple = (
|
|
CommunitySafe,
|
|
CommunityAggregates,
|
|
Option<CommunityFollower>,
|
|
Option<CommunityBlock>,
|
|
);
|
|
|
|
impl CommunityView {
|
|
pub fn read(
|
|
conn: &mut PgConnection,
|
|
community_id: CommunityId,
|
|
my_person_id: Option<PersonId>,
|
|
) -> Result<Self, Error> {
|
|
// The left join below will return None in this case
|
|
let person_id_join = my_person_id.unwrap_or(PersonId(-1));
|
|
|
|
let (community, counts, follower, blocked) = community::table
|
|
.find(community_id)
|
|
.inner_join(community_aggregates::table)
|
|
.left_join(
|
|
community_follower::table.on(
|
|
community::id
|
|
.eq(community_follower::community_id)
|
|
.and(community_follower::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)),
|
|
),
|
|
)
|
|
.select((
|
|
Community::safe_columns_tuple(),
|
|
community_aggregates::all_columns,
|
|
community_follower::all_columns.nullable(),
|
|
community_block::all_columns.nullable(),
|
|
))
|
|
.first::<CommunityViewTuple>(conn)?;
|
|
|
|
Ok(CommunityView {
|
|
community,
|
|
subscribed: CommunityFollower::to_subscribed_type(&follower),
|
|
blocked: blocked.is_some(),
|
|
counts,
|
|
})
|
|
}
|
|
|
|
pub fn is_mod_or_admin(
|
|
conn: &mut PgConnection,
|
|
person_id: PersonId,
|
|
community_id: CommunityId,
|
|
) -> bool {
|
|
let is_mod = CommunityModeratorView::for_community(conn, community_id)
|
|
.map(|v| {
|
|
v.into_iter()
|
|
.map(|m| m.moderator.id)
|
|
.collect::<Vec<PersonId>>()
|
|
})
|
|
.unwrap_or_default()
|
|
.contains(&person_id);
|
|
if is_mod {
|
|
return true;
|
|
}
|
|
|
|
PersonViewSafe::admins(conn)
|
|
.map(|v| {
|
|
v.into_iter()
|
|
.map(|a| a.person.id)
|
|
.collect::<Vec<PersonId>>()
|
|
})
|
|
.unwrap_or_default()
|
|
.contains(&person_id)
|
|
}
|
|
}
|
|
|
|
#[derive(TypedBuilder)]
|
|
#[builder(field_defaults(default))]
|
|
pub struct CommunityQuery<'a> {
|
|
#[builder(!default)]
|
|
conn: &'a mut PgConnection,
|
|
listing_type: Option<ListingType>,
|
|
sort: Option<SortType>,
|
|
local_user: Option<&'a LocalUser>,
|
|
search_term: Option<String>,
|
|
page: Option<i64>,
|
|
limit: Option<i64>,
|
|
}
|
|
|
|
impl<'a> CommunityQuery<'a> {
|
|
pub fn list(self) -> Result<Vec<CommunityView>, Error> {
|
|
// The left join below will return None in this case
|
|
let person_id_join = self.local_user.map(|l| l.person_id).unwrap_or(PersonId(-1));
|
|
|
|
let mut query = community::table
|
|
.inner_join(community_aggregates::table)
|
|
.left_join(local_user::table.on(local_user::person_id.eq(person_id_join)))
|
|
.left_join(
|
|
community_follower::table.on(
|
|
community::id
|
|
.eq(community_follower::community_id)
|
|
.and(community_follower::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)),
|
|
),
|
|
)
|
|
.select((
|
|
Community::safe_columns_tuple(),
|
|
community_aggregates::all_columns,
|
|
community_follower::all_columns.nullable(),
|
|
community_block::all_columns.nullable(),
|
|
))
|
|
.into_boxed();
|
|
|
|
if let Some(search_term) = self.search_term {
|
|
let searcher = fuzzy_search(&search_term);
|
|
query = query
|
|
.filter(community::name.ilike(searcher.to_owned()))
|
|
.or_filter(community::title.ilike(searcher));
|
|
};
|
|
|
|
match self.sort.unwrap_or(SortType::Hot) {
|
|
SortType::New => query = query.order_by(community::published.desc()),
|
|
SortType::TopAll => query = query.order_by(community_aggregates::subscribers.desc()),
|
|
SortType::TopMonth => query = query.order_by(community_aggregates::users_active_month.desc()),
|
|
SortType::Hot => {
|
|
query = query
|
|
.order_by(
|
|
hot_rank(
|
|
community_aggregates::subscribers,
|
|
community_aggregates::published,
|
|
)
|
|
.desc(),
|
|
)
|
|
.then_order_by(community_aggregates::published.desc());
|
|
// Don't show hidden communities in Hot (trending)
|
|
query = query.filter(
|
|
community::hidden
|
|
.eq(false)
|
|
.or(community_follower::person_id.eq(person_id_join)),
|
|
);
|
|
}
|
|
// Covers all other sorts
|
|
_ => {
|
|
query = query
|
|
.order_by(
|
|
hot_rank(
|
|
community_aggregates::subscribers,
|
|
community_aggregates::published,
|
|
)
|
|
.desc(),
|
|
)
|
|
.then_order_by(community_aggregates::published.desc())
|
|
}
|
|
};
|
|
|
|
if let Some(listing_type) = self.listing_type {
|
|
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,
|
|
};
|
|
}
|
|
|
|
// Don't show blocked communities or nsfw communities if not enabled in profile
|
|
if self.local_user.is_some() {
|
|
query = query.filter(community_block::person_id.is_null());
|
|
query = query.filter(community::nsfw.eq(false).or(local_user::show_nsfw.eq(true)));
|
|
} else {
|
|
// No person in request, only show nsfw communities if show_nsfw passed into request
|
|
if !self.local_user.map(|l| l.show_nsfw).unwrap_or(false) {
|
|
query = query.filter(community::nsfw.eq(false));
|
|
}
|
|
}
|
|
|
|
let (limit, offset) = limit_and_offset(self.page, self.limit)?;
|
|
let res = query
|
|
.limit(limit)
|
|
.offset(offset)
|
|
.filter(community::removed.eq(false))
|
|
.filter(community::deleted.eq(false))
|
|
.load::<CommunityViewTuple>(self.conn)?;
|
|
|
|
Ok(CommunityView::from_tuple_to_vec(res))
|
|
}
|
|
}
|
|
|
|
impl ViewToVec for CommunityView {
|
|
type DbTuple = CommunityViewTuple;
|
|
fn from_tuple_to_vec(items: Vec<Self::DbTuple>) -> Vec<Self> {
|
|
items
|
|
.into_iter()
|
|
.map(|a| Self {
|
|
community: a.0,
|
|
counts: a.1,
|
|
subscribed: CommunityFollower::to_subscribed_type(&a.2),
|
|
blocked: a.3.is_some(),
|
|
})
|
|
.collect::<Vec<Self>>()
|
|
}
|
|
}
|