mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-04-04 17:39:38 +00:00
Community local removed (#5500)
* Better handling of local and remote bans (fixes #3399, ref #4571) * rename migration * basic code changes * post/community pending * revert person.local_banned * ignore local_removed communities in queries * fix test * Add column `community.local_removed` * fmt
This commit is contained in:
parent
fcd4bbe8e3
commit
d78fe5fb1f
9 changed files with 50 additions and 31 deletions
|
@ -671,6 +671,7 @@ mod tests {
|
|||
report_count: 0,
|
||||
unresolved_report_count: 0,
|
||||
interactions_month: 0,
|
||||
local_removed: false,
|
||||
};
|
||||
|
||||
let community_follower_form = CommunityFollowerForm::new(
|
||||
|
|
|
@ -1,45 +1,45 @@
|
|||
// @generated automatically by Diesel CLI.
|
||||
|
||||
pub mod sql_types {
|
||||
#[derive(diesel::query_builder::QueryId, diesel::sql_types::SqlType)]
|
||||
#[diesel(postgres_type(name = "actor_type_enum"))]
|
||||
pub struct ActorTypeEnum;
|
||||
#[derive(diesel::query_builder::QueryId, diesel::sql_types::SqlType)]
|
||||
#[diesel(postgres_type(name = "actor_type_enum"))]
|
||||
pub struct ActorTypeEnum;
|
||||
|
||||
#[derive(diesel::query_builder::QueryId, diesel::sql_types::SqlType)]
|
||||
#[diesel(postgres_type(name = "comment_sort_type_enum"))]
|
||||
pub struct CommentSortTypeEnum;
|
||||
#[derive(diesel::query_builder::QueryId, diesel::sql_types::SqlType)]
|
||||
#[diesel(postgres_type(name = "comment_sort_type_enum"))]
|
||||
pub struct CommentSortTypeEnum;
|
||||
|
||||
#[derive(diesel::query_builder::QueryId, diesel::sql_types::SqlType)]
|
||||
#[diesel(postgres_type(name = "community_follower_state"))]
|
||||
pub struct CommunityFollowerState;
|
||||
#[derive(diesel::query_builder::QueryId, diesel::sql_types::SqlType)]
|
||||
#[diesel(postgres_type(name = "community_follower_state"))]
|
||||
pub struct CommunityFollowerState;
|
||||
|
||||
#[derive(diesel::query_builder::QueryId, diesel::sql_types::SqlType)]
|
||||
#[diesel(postgres_type(name = "community_visibility"))]
|
||||
pub struct CommunityVisibility;
|
||||
#[derive(diesel::query_builder::QueryId, diesel::sql_types::SqlType)]
|
||||
#[diesel(postgres_type(name = "community_visibility"))]
|
||||
pub struct CommunityVisibility;
|
||||
|
||||
#[derive(diesel::query_builder::QueryId, diesel::sql_types::SqlType)]
|
||||
#[diesel(postgres_type(name = "federation_mode_enum"))]
|
||||
pub struct FederationModeEnum;
|
||||
#[derive(diesel::query_builder::QueryId, diesel::sql_types::SqlType)]
|
||||
#[diesel(postgres_type(name = "federation_mode_enum"))]
|
||||
pub struct FederationModeEnum;
|
||||
|
||||
#[derive(diesel::query_builder::QueryId, diesel::sql_types::SqlType)]
|
||||
#[diesel(postgres_type(name = "listing_type_enum"))]
|
||||
pub struct ListingTypeEnum;
|
||||
#[derive(diesel::query_builder::QueryId, diesel::sql_types::SqlType)]
|
||||
#[diesel(postgres_type(name = "listing_type_enum"))]
|
||||
pub struct ListingTypeEnum;
|
||||
|
||||
#[derive(diesel::query_builder::QueryId, diesel::sql_types::SqlType)]
|
||||
#[diesel(postgres_type(name = "ltree"))]
|
||||
pub struct Ltree;
|
||||
#[derive(diesel::query_builder::QueryId, diesel::sql_types::SqlType)]
|
||||
#[diesel(postgres_type(name = "ltree"))]
|
||||
pub struct Ltree;
|
||||
|
||||
#[derive(diesel::query_builder::QueryId, diesel::sql_types::SqlType)]
|
||||
#[diesel(postgres_type(name = "post_listing_mode_enum"))]
|
||||
pub struct PostListingModeEnum;
|
||||
#[derive(diesel::query_builder::QueryId, diesel::sql_types::SqlType)]
|
||||
#[diesel(postgres_type(name = "post_listing_mode_enum"))]
|
||||
pub struct PostListingModeEnum;
|
||||
|
||||
#[derive(diesel::query_builder::QueryId, diesel::sql_types::SqlType)]
|
||||
#[diesel(postgres_type(name = "post_sort_type_enum"))]
|
||||
pub struct PostSortTypeEnum;
|
||||
#[derive(diesel::query_builder::QueryId, diesel::sql_types::SqlType)]
|
||||
#[diesel(postgres_type(name = "post_sort_type_enum"))]
|
||||
pub struct PostSortTypeEnum;
|
||||
|
||||
#[derive(diesel::query_builder::QueryId, diesel::sql_types::SqlType)]
|
||||
#[diesel(postgres_type(name = "registration_mode_enum"))]
|
||||
pub struct RegistrationModeEnum;
|
||||
#[derive(diesel::query_builder::QueryId, diesel::sql_types::SqlType)]
|
||||
#[diesel(postgres_type(name = "registration_mode_enum"))]
|
||||
pub struct RegistrationModeEnum;
|
||||
}
|
||||
|
||||
diesel::table! {
|
||||
|
@ -226,6 +226,7 @@ diesel::table! {
|
|||
report_count -> Int2,
|
||||
unresolved_report_count -> Int2,
|
||||
interactions_month -> Int8,
|
||||
local_removed -> Bool,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -93,6 +93,7 @@ pub struct Community {
|
|||
/// Number of any interactions over the last month.
|
||||
#[serde(skip)]
|
||||
pub interactions_month: i64,
|
||||
pub local_removed: bool,
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, derive_new::new)]
|
||||
|
@ -141,6 +142,8 @@ pub struct CommunityInsertForm {
|
|||
pub visibility: Option<CommunityVisibility>,
|
||||
#[new(default)]
|
||||
pub description: Option<String>,
|
||||
#[new(default)]
|
||||
pub local_removed: Option<bool>,
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, Default)]
|
||||
|
@ -168,6 +171,7 @@ pub struct CommunityUpdateForm {
|
|||
pub posting_restricted_to_mods: Option<bool>,
|
||||
pub visibility: Option<CommunityVisibility>,
|
||||
pub description: Option<Option<String>>,
|
||||
pub local_removed: Option<bool>,
|
||||
}
|
||||
|
||||
#[skip_serializing_none]
|
||||
|
|
|
@ -90,6 +90,7 @@ impl SearchCombinedViewInternal {
|
|||
.eq(community::id.nullable())
|
||||
.or(post::community_id.eq(community::id))
|
||||
.and(not(community::removed))
|
||||
.and(not(community::local_removed))
|
||||
.and(not(community::deleted)),
|
||||
);
|
||||
|
||||
|
|
|
@ -96,6 +96,7 @@ impl CommunityFollowerView {
|
|||
.filter(community_actions::person_id.eq(person_id))
|
||||
.filter(community::deleted.eq(false))
|
||||
.filter(community::removed.eq(false))
|
||||
.filter(community::local_removed.eq(false))
|
||||
.select(Self::as_select())
|
||||
.order_by(community::title)
|
||||
.load::<CommunityFollowerView>(conn)
|
||||
|
|
|
@ -91,7 +91,9 @@ impl CommunityModeratorView {
|
|||
|
||||
// Show removed communities to admins only
|
||||
if !local_user.is_admin() {
|
||||
query = query.filter(community::removed.eq(false))
|
||||
query = query
|
||||
.filter(community::removed.eq(false))
|
||||
.filter(community::local_removed.eq(false));
|
||||
}
|
||||
|
||||
query.load::<Self>(conn).await
|
||||
|
|
|
@ -362,6 +362,7 @@ impl<'a> PostQuery<'a> {
|
|||
if !(o.creator_id.is_some() && o.local_user.is_admin()) {
|
||||
query = query
|
||||
.filter(community::removed.eq(false))
|
||||
.filter(community::local_removed.eq(false))
|
||||
.filter(post::removed.eq(false));
|
||||
}
|
||||
if let Some(community_id) = o.community_id {
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
ALTER TABLE community
|
||||
DROP COLUMN local_removed;
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
-- Same for remote community, local removal should not be overwritten by
|
||||
-- remove+restore on home instance
|
||||
ALTER TABLE community
|
||||
ADD COLUMN local_removed boolean NOT NULL DEFAULT FALSE;
|
||||
|
Loading…
Reference in a new issue