mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-23 21:01:23 +00:00
6497ec519e
* Create viewer.rs * Rename viewer.rs to viewer.rs * Update viewer.rs * Update post_view.rs * Update distinguish.rs * Update like.rs * Update viewer.rs * Update list_comment_likes.rs * Update like.rs * Update save.rs * Update like.rs * revert changes in api crate * Update post_view.rs * Update post_view.rs * Update comment_view.rs * Update post_view.rs * Update community_view.rs * Update comment_view.rs * Update post_view.rs * Update viewer.rs * Update post_view.rs * Update community_view.rs * Update local_user_view.rs * Update viewer.rs * Update community_view.rs * Update viewer.rs * Update lib.rs * Update comment_view.rs * Update post_view.rs * Update viewer.rs * Update viewer.rs * Update viewer.rs * Update viewer.rs * Update local_user_view.rs * Update viewer.rs * Update viewer.rs * Update local_user_view.rs * Update community_view.rs * Update viewer.rs * Update crates/db_schema/src/viewer.rs Co-authored-by: SleeplessOne1917 <28871516+SleeplessOne1917@users.noreply.github.com> * Update viewer.rs * Update viewer.rs * Update viewer.rs * Update viewer.rs * Update post_view.rs * Update community_view.rs * Update comment_view.rs * Update viewer.rs * Update post_view.rs * Update save.rs * Update resolve_object.rs * Update viewer.rs * Update save.rs * Update resolve_object.rs * Update comment_view.rs * Update post_view.rs * Update community_view.rs * Update local_user_view.rs * Update post_view.rs * Update viewer.rs * Update comment_view.rs * Update post_view.rs * Update community_view.rs * Update viewer.rs * Update viewer.rs * Update viewer.rs * Update viewer.rs * Update viewer.rs * Some additions to localuser DB view helpers. (#39) * Some additions to localuser DB view helpers. - Getting rid of generics. - Passing in only LocalUser to views. * Formatting fixes. * Getting rid of unecessary as_refs * Fixing clippy. --------- Co-authored-by: SleeplessOne1917 <28871516+SleeplessOne1917@users.noreply.github.com> Co-authored-by: Dessalines <dessalines@users.noreply.github.com> Co-authored-by: Dessalines <tyhou13@gmx.com>
399 lines
11 KiB
Rust
399 lines
11 KiB
Rust
use crate::structs::{CommunityModeratorView, CommunityView, PersonView};
|
|
use diesel::{
|
|
pg::Pg,
|
|
result::Error,
|
|
BoolExpressionMethods,
|
|
ExpressionMethods,
|
|
JoinOnDsl,
|
|
NullableExpressionMethods,
|
|
PgTextExpressionMethods,
|
|
QueryDsl,
|
|
};
|
|
use diesel_async::RunQueryDsl;
|
|
use lemmy_db_schema::{
|
|
impls::local_user::LocalUserOptionHelper,
|
|
newtypes::{CommunityId, PersonId},
|
|
schema::{
|
|
community,
|
|
community_aggregates,
|
|
community_block,
|
|
community_follower,
|
|
community_person_ban,
|
|
instance_block,
|
|
},
|
|
source::{community::CommunityFollower, local_user::LocalUser, site::Site},
|
|
utils::{
|
|
fuzzy_search,
|
|
limit_and_offset,
|
|
visible_communities_only,
|
|
DbConn,
|
|
DbPool,
|
|
ListFn,
|
|
Queries,
|
|
ReadFn,
|
|
},
|
|
ListingType,
|
|
SortType,
|
|
};
|
|
|
|
fn queries<'a>() -> Queries<
|
|
impl ReadFn<'a, CommunityView, (CommunityId, Option<PersonId>, bool)>,
|
|
impl ListFn<'a, CommunityView, (CommunityQuery<'a>, &'a Site)>,
|
|
> {
|
|
let all_joins = |query: community::BoxedQuery<'a, Pg>, my_person_id: Option<PersonId>| {
|
|
// The left join below will return None in this case
|
|
let person_id_join = my_person_id.unwrap_or(PersonId(-1));
|
|
|
|
query
|
|
.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(
|
|
instance_block::table.on(
|
|
community::instance_id
|
|
.eq(instance_block::instance_id)
|
|
.and(instance_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)),
|
|
),
|
|
)
|
|
.left_join(
|
|
community_person_ban::table.on(
|
|
community::id
|
|
.eq(community_person_ban::community_id)
|
|
.and(community_person_ban::person_id.eq(person_id_join)),
|
|
),
|
|
)
|
|
};
|
|
|
|
let selection = (
|
|
community::all_columns,
|
|
CommunityFollower::select_subscribed_type(),
|
|
community_block::community_id.nullable().is_not_null(),
|
|
community_aggregates::all_columns,
|
|
community_person_ban::person_id.nullable().is_not_null(),
|
|
);
|
|
|
|
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>,
|
|
bool,
|
|
)| async move {
|
|
let mut query = all_joins(
|
|
community::table.find(community_id).into_boxed(),
|
|
my_person_id,
|
|
)
|
|
.select(selection);
|
|
|
|
// Hide deleted and removed for non-admins or mods
|
|
if !is_mod_or_admin {
|
|
query = query.filter(not_removed_or_deleted);
|
|
}
|
|
|
|
query = visible_communities_only(my_person_id, query);
|
|
|
|
query.first(&mut conn).await
|
|
};
|
|
|
|
let list = move |mut conn: DbConn<'a>, (options, site): (CommunityQuery<'a>, &'a Site)| async move {
|
|
use SortType::*;
|
|
|
|
// The left join below will return None in this case
|
|
let person_id_join = options.local_user.person_id().unwrap_or(PersonId(-1));
|
|
|
|
let mut query = all_joins(
|
|
community::table.into_boxed(),
|
|
options.local_user.person_id(),
|
|
)
|
|
.select(selection);
|
|
|
|
if let Some(search_term) = options.search_term {
|
|
let searcher = fuzzy_search(&search_term);
|
|
query = query
|
|
.filter(community::name.ilike(searcher.clone()))
|
|
.or_filter(community::title.ilike(searcher))
|
|
}
|
|
|
|
// Hide deleted and removed for non-admins or mods
|
|
if !options.is_mod_or_admin {
|
|
query = query.filter(not_removed_or_deleted).filter(
|
|
community::hidden
|
|
.eq(false)
|
|
.or(community_follower::person_id.eq(person_id_join)),
|
|
);
|
|
}
|
|
|
|
match options.sort.unwrap_or(Hot) {
|
|
Hot | Active | Scaled => query = query.order_by(community_aggregates::hot_rank.desc()),
|
|
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()),
|
|
// Controversial is temporary until a CommentSortType is created
|
|
MostComments | Controversial => query = query.order_by(community_aggregates::comments.desc()),
|
|
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()),
|
|
};
|
|
|
|
if let Some(listing_type) = options.listing_type {
|
|
query = match listing_type {
|
|
ListingType::Subscribed => query.filter(community_follower::pending.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 and communities on blocked instances. nsfw communities are
|
|
// also hidden (based on profile setting)
|
|
query = query.filter(instance_block::person_id.is_null());
|
|
query = query.filter(community_block::person_id.is_null());
|
|
if !(options.local_user.show_nsfw(site) || options.show_nsfw) {
|
|
query = query.filter(community::nsfw.eq(false));
|
|
}
|
|
|
|
query = visible_communities_only(options.local_user.person_id(), query);
|
|
|
|
let (limit, offset) = limit_and_offset(options.page, options.limit)?;
|
|
query
|
|
.limit(limit)
|
|
.offset(offset)
|
|
.load::<CommunityView>(&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: bool,
|
|
) -> Result<Option<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 {
|
|
Ok(true)
|
|
} else if let Ok(Some(person_view)) = PersonView::read(pool, person_id).await {
|
|
Ok(person_view.is_admin)
|
|
} else {
|
|
Ok(false)
|
|
}
|
|
}
|
|
|
|
/// Checks if a person is an admin, or moderator of any community.
|
|
pub async fn is_mod_of_any_or_admin(
|
|
pool: &mut DbPool<'_>,
|
|
person_id: PersonId,
|
|
) -> Result<bool, Error> {
|
|
let is_mod_of_any =
|
|
CommunityModeratorView::is_community_moderator_of_any(pool, person_id).await?;
|
|
if is_mod_of_any {
|
|
Ok(true)
|
|
} else if let Ok(Some(person_view)) = PersonView::read(pool, person_id).await {
|
|
Ok(person_view.is_admin)
|
|
} else {
|
|
Ok(false)
|
|
}
|
|
}
|
|
}
|
|
|
|
#[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: bool,
|
|
pub show_nsfw: bool,
|
|
pub page: Option<i64>,
|
|
pub limit: Option<i64>,
|
|
}
|
|
|
|
impl<'a> CommunityQuery<'a> {
|
|
pub async fn list(self, site: &Site, pool: &mut DbPool<'_>) -> Result<Vec<CommunityView>, Error> {
|
|
queries().list(pool, (self, site)).await
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
#[allow(clippy::unwrap_used)]
|
|
#[allow(clippy::indexing_slicing)]
|
|
mod tests {
|
|
|
|
use crate::{community_view::CommunityQuery, structs::CommunityView};
|
|
use lemmy_db_schema::{
|
|
source::{
|
|
community::{Community, CommunityInsertForm, CommunityUpdateForm},
|
|
instance::Instance,
|
|
local_user::{LocalUser, LocalUserInsertForm},
|
|
person::{Person, PersonInsertForm},
|
|
site::Site,
|
|
},
|
|
traits::Crud,
|
|
utils::{build_db_pool_for_tests, DbPool},
|
|
CommunityVisibility,
|
|
};
|
|
use serial_test::serial;
|
|
use url::Url;
|
|
|
|
struct Data {
|
|
inserted_instance: Instance,
|
|
local_user: LocalUser,
|
|
inserted_community: Community,
|
|
site: Site,
|
|
}
|
|
|
|
async fn init_data(pool: &mut DbPool<'_>) -> Data {
|
|
let inserted_instance = Instance::read_or_create(pool, "my_domain.tld".to_string())
|
|
.await
|
|
.unwrap();
|
|
|
|
let person_name = "tegan".to_string();
|
|
|
|
let new_person = PersonInsertForm::test_form(inserted_instance.id, &person_name);
|
|
|
|
let inserted_person = Person::create(pool, &new_person).await.unwrap();
|
|
|
|
let local_user_form = LocalUserInsertForm::builder()
|
|
.person_id(inserted_person.id)
|
|
.password_encrypted(String::new())
|
|
.build();
|
|
let local_user = LocalUser::create(pool, &local_user_form, vec![])
|
|
.await
|
|
.unwrap();
|
|
|
|
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();
|
|
|
|
let inserted_community = Community::create(pool, &new_community).await.unwrap();
|
|
|
|
let url = Url::parse("http://example.com").unwrap();
|
|
let site = Site {
|
|
id: Default::default(),
|
|
name: String::new(),
|
|
sidebar: None,
|
|
published: Default::default(),
|
|
updated: None,
|
|
icon: None,
|
|
banner: None,
|
|
description: None,
|
|
actor_id: url.clone().into(),
|
|
last_refreshed_at: Default::default(),
|
|
inbox_url: url.into(),
|
|
private_key: None,
|
|
public_key: String::new(),
|
|
instance_id: Default::default(),
|
|
content_warning: None,
|
|
};
|
|
|
|
Data {
|
|
inserted_instance,
|
|
local_user,
|
|
inserted_community,
|
|
site,
|
|
}
|
|
}
|
|
|
|
async fn cleanup(data: Data, pool: &mut DbPool<'_>) {
|
|
Community::delete(pool, data.inserted_community.id)
|
|
.await
|
|
.unwrap();
|
|
Person::delete(pool, data.local_user.person_id)
|
|
.await
|
|
.unwrap();
|
|
Instance::delete(pool, data.inserted_instance.id)
|
|
.await
|
|
.unwrap();
|
|
}
|
|
|
|
#[tokio::test]
|
|
#[serial]
|
|
async fn local_only_community() {
|
|
let pool = &build_db_pool_for_tests().await;
|
|
let pool = &mut pool.into();
|
|
let data = init_data(pool).await;
|
|
|
|
Community::update(
|
|
pool,
|
|
data.inserted_community.id,
|
|
&CommunityUpdateForm {
|
|
visibility: Some(CommunityVisibility::LocalOnly),
|
|
..Default::default()
|
|
},
|
|
)
|
|
.await
|
|
.unwrap();
|
|
|
|
let unauthenticated_query = CommunityQuery {
|
|
..Default::default()
|
|
}
|
|
.list(&data.site, pool)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(0, unauthenticated_query.len());
|
|
|
|
let authenticated_query = CommunityQuery {
|
|
local_user: Some(&data.local_user),
|
|
..Default::default()
|
|
}
|
|
.list(&data.site, pool)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(1, authenticated_query.len());
|
|
|
|
let unauthenticated_community =
|
|
CommunityView::read(pool, data.inserted_community.id, None, false)
|
|
.await
|
|
.unwrap();
|
|
assert!(unauthenticated_community.is_none());
|
|
|
|
let authenticated_community = CommunityView::read(
|
|
pool,
|
|
data.inserted_community.id,
|
|
Some(data.local_user.person_id),
|
|
false,
|
|
)
|
|
.await;
|
|
assert!(authenticated_community.is_ok());
|
|
|
|
cleanup(data, pool).await;
|
|
}
|
|
}
|