mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-16 01:14:02 +00:00
503 lines
15 KiB
Rust
503 lines
15 KiB
Rust
use crate::{
|
|
views::{community::community_moderator_view::CommunityModeratorView, user_view::UserViewSafe},
|
|
ApubObject,
|
|
Bannable,
|
|
Crud,
|
|
Followable,
|
|
Joinable,
|
|
};
|
|
use diesel::{dsl::*, result::Error, *};
|
|
use lemmy_db_schema::{
|
|
naive_now,
|
|
source::community::{
|
|
Community,
|
|
CommunityFollower,
|
|
CommunityFollowerForm,
|
|
CommunityForm,
|
|
CommunityModerator,
|
|
CommunityModeratorForm,
|
|
CommunityUserBan,
|
|
CommunityUserBanForm,
|
|
},
|
|
};
|
|
|
|
mod safe_type {
|
|
use crate::{source::community::Community, ToSafe};
|
|
use lemmy_db_schema::schema::community::*;
|
|
|
|
type Columns = (
|
|
id,
|
|
name,
|
|
title,
|
|
description,
|
|
category_id,
|
|
creator_id,
|
|
removed,
|
|
published,
|
|
updated,
|
|
deleted,
|
|
nsfw,
|
|
actor_id,
|
|
local,
|
|
icon,
|
|
banner,
|
|
);
|
|
|
|
impl ToSafe for Community {
|
|
type SafeColumns = Columns;
|
|
fn safe_columns_tuple() -> Self::SafeColumns {
|
|
(
|
|
id,
|
|
name,
|
|
title,
|
|
description,
|
|
category_id,
|
|
creator_id,
|
|
removed,
|
|
published,
|
|
updated,
|
|
deleted,
|
|
nsfw,
|
|
actor_id,
|
|
local,
|
|
icon,
|
|
banner,
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Crud<CommunityForm> for Community {
|
|
fn read(conn: &PgConnection, community_id: i32) -> Result<Self, Error> {
|
|
use lemmy_db_schema::schema::community::dsl::*;
|
|
community.find(community_id).first::<Self>(conn)
|
|
}
|
|
|
|
fn delete(conn: &PgConnection, community_id: i32) -> Result<usize, Error> {
|
|
use lemmy_db_schema::schema::community::dsl::*;
|
|
diesel::delete(community.find(community_id)).execute(conn)
|
|
}
|
|
|
|
fn create(conn: &PgConnection, new_community: &CommunityForm) -> Result<Self, Error> {
|
|
use lemmy_db_schema::schema::community::dsl::*;
|
|
insert_into(community)
|
|
.values(new_community)
|
|
.get_result::<Self>(conn)
|
|
}
|
|
|
|
fn update(
|
|
conn: &PgConnection,
|
|
community_id: i32,
|
|
new_community: &CommunityForm,
|
|
) -> Result<Self, Error> {
|
|
use lemmy_db_schema::schema::community::dsl::*;
|
|
diesel::update(community.find(community_id))
|
|
.set(new_community)
|
|
.get_result::<Self>(conn)
|
|
}
|
|
}
|
|
|
|
impl ApubObject<CommunityForm> for Community {
|
|
fn read_from_apub_id(conn: &PgConnection, for_actor_id: &str) -> Result<Self, Error> {
|
|
use lemmy_db_schema::schema::community::dsl::*;
|
|
community
|
|
.filter(actor_id.eq(for_actor_id))
|
|
.first::<Self>(conn)
|
|
}
|
|
|
|
fn upsert(conn: &PgConnection, community_form: &CommunityForm) -> Result<Community, Error> {
|
|
use lemmy_db_schema::schema::community::dsl::*;
|
|
insert_into(community)
|
|
.values(community_form)
|
|
.on_conflict(actor_id)
|
|
.do_update()
|
|
.set(community_form)
|
|
.get_result::<Self>(conn)
|
|
}
|
|
}
|
|
|
|
pub trait Community_ {
|
|
fn read_from_name(conn: &PgConnection, community_name: &str) -> Result<Community, Error>;
|
|
fn update_deleted(
|
|
conn: &PgConnection,
|
|
community_id: i32,
|
|
new_deleted: bool,
|
|
) -> Result<Community, Error>;
|
|
fn update_removed(
|
|
conn: &PgConnection,
|
|
community_id: i32,
|
|
new_removed: bool,
|
|
) -> Result<Community, Error>;
|
|
fn update_removed_for_creator(
|
|
conn: &PgConnection,
|
|
for_creator_id: i32,
|
|
new_removed: bool,
|
|
) -> Result<Vec<Community>, Error>;
|
|
fn update_creator(
|
|
conn: &PgConnection,
|
|
community_id: i32,
|
|
new_creator_id: i32,
|
|
) -> Result<Community, Error>;
|
|
fn community_mods_and_admins(conn: &PgConnection, community_id: i32) -> Result<Vec<i32>, Error>;
|
|
fn distinct_federated_communities(conn: &PgConnection) -> Result<Vec<String>, Error>;
|
|
fn is_mod_or_admin(conn: &PgConnection, user_id: i32, community_id: i32) -> bool;
|
|
}
|
|
|
|
impl Community_ for Community {
|
|
fn read_from_name(conn: &PgConnection, community_name: &str) -> Result<Community, Error> {
|
|
use lemmy_db_schema::schema::community::dsl::*;
|
|
community
|
|
.filter(local.eq(true))
|
|
.filter(name.eq(community_name))
|
|
.first::<Self>(conn)
|
|
}
|
|
|
|
fn update_deleted(
|
|
conn: &PgConnection,
|
|
community_id: i32,
|
|
new_deleted: bool,
|
|
) -> Result<Community, Error> {
|
|
use lemmy_db_schema::schema::community::dsl::*;
|
|
diesel::update(community.find(community_id))
|
|
.set((deleted.eq(new_deleted), updated.eq(naive_now())))
|
|
.get_result::<Self>(conn)
|
|
}
|
|
|
|
fn update_removed(
|
|
conn: &PgConnection,
|
|
community_id: i32,
|
|
new_removed: bool,
|
|
) -> Result<Community, Error> {
|
|
use lemmy_db_schema::schema::community::dsl::*;
|
|
diesel::update(community.find(community_id))
|
|
.set((removed.eq(new_removed), updated.eq(naive_now())))
|
|
.get_result::<Self>(conn)
|
|
}
|
|
|
|
fn update_removed_for_creator(
|
|
conn: &PgConnection,
|
|
for_creator_id: i32,
|
|
new_removed: bool,
|
|
) -> Result<Vec<Community>, Error> {
|
|
use lemmy_db_schema::schema::community::dsl::*;
|
|
diesel::update(community.filter(creator_id.eq(for_creator_id)))
|
|
.set((removed.eq(new_removed), updated.eq(naive_now())))
|
|
.get_results::<Self>(conn)
|
|
}
|
|
|
|
fn update_creator(
|
|
conn: &PgConnection,
|
|
community_id: i32,
|
|
new_creator_id: i32,
|
|
) -> Result<Community, Error> {
|
|
use lemmy_db_schema::schema::community::dsl::*;
|
|
diesel::update(community.find(community_id))
|
|
.set((creator_id.eq(new_creator_id), updated.eq(naive_now())))
|
|
.get_result::<Self>(conn)
|
|
}
|
|
|
|
fn community_mods_and_admins(conn: &PgConnection, community_id: i32) -> Result<Vec<i32>, Error> {
|
|
let mut mods_and_admins: Vec<i32> = Vec::new();
|
|
mods_and_admins.append(
|
|
&mut CommunityModeratorView::for_community(conn, community_id)
|
|
.map(|v| v.into_iter().map(|m| m.moderator.id).collect())?,
|
|
);
|
|
mods_and_admins
|
|
.append(&mut UserViewSafe::admins(conn).map(|v| v.into_iter().map(|a| a.user.id).collect())?);
|
|
Ok(mods_and_admins)
|
|
}
|
|
|
|
fn distinct_federated_communities(conn: &PgConnection) -> Result<Vec<String>, Error> {
|
|
use lemmy_db_schema::schema::community::dsl::*;
|
|
community.select(actor_id).distinct().load::<String>(conn)
|
|
}
|
|
|
|
fn is_mod_or_admin(conn: &PgConnection, user_id: i32, community_id: i32) -> bool {
|
|
Self::community_mods_and_admins(conn, community_id)
|
|
.unwrap_or_default()
|
|
.contains(&user_id)
|
|
}
|
|
}
|
|
|
|
impl Joinable<CommunityModeratorForm> for CommunityModerator {
|
|
fn join(
|
|
conn: &PgConnection,
|
|
community_user_form: &CommunityModeratorForm,
|
|
) -> Result<Self, Error> {
|
|
use lemmy_db_schema::schema::community_moderator::dsl::*;
|
|
insert_into(community_moderator)
|
|
.values(community_user_form)
|
|
.get_result::<Self>(conn)
|
|
}
|
|
|
|
fn leave(
|
|
conn: &PgConnection,
|
|
community_user_form: &CommunityModeratorForm,
|
|
) -> Result<usize, Error> {
|
|
use lemmy_db_schema::schema::community_moderator::dsl::*;
|
|
diesel::delete(
|
|
community_moderator
|
|
.filter(community_id.eq(community_user_form.community_id))
|
|
.filter(user_id.eq(community_user_form.user_id)),
|
|
)
|
|
.execute(conn)
|
|
}
|
|
}
|
|
|
|
pub trait CommunityModerator_ {
|
|
fn delete_for_community(conn: &PgConnection, for_community_id: i32) -> Result<usize, Error>;
|
|
fn get_user_moderated_communities(
|
|
conn: &PgConnection,
|
|
for_user_id: i32,
|
|
) -> Result<Vec<i32>, Error>;
|
|
}
|
|
|
|
impl CommunityModerator_ for CommunityModerator {
|
|
fn delete_for_community(conn: &PgConnection, for_community_id: i32) -> Result<usize, Error> {
|
|
use lemmy_db_schema::schema::community_moderator::dsl::*;
|
|
diesel::delete(community_moderator.filter(community_id.eq(for_community_id))).execute(conn)
|
|
}
|
|
|
|
fn get_user_moderated_communities(
|
|
conn: &PgConnection,
|
|
for_user_id: i32,
|
|
) -> Result<Vec<i32>, Error> {
|
|
use lemmy_db_schema::schema::community_moderator::dsl::*;
|
|
community_moderator
|
|
.filter(user_id.eq(for_user_id))
|
|
.select(community_id)
|
|
.load::<i32>(conn)
|
|
}
|
|
}
|
|
|
|
impl Bannable<CommunityUserBanForm> for CommunityUserBan {
|
|
fn ban(
|
|
conn: &PgConnection,
|
|
community_user_ban_form: &CommunityUserBanForm,
|
|
) -> Result<Self, Error> {
|
|
use lemmy_db_schema::schema::community_user_ban::dsl::*;
|
|
insert_into(community_user_ban)
|
|
.values(community_user_ban_form)
|
|
.get_result::<Self>(conn)
|
|
}
|
|
|
|
fn unban(
|
|
conn: &PgConnection,
|
|
community_user_ban_form: &CommunityUserBanForm,
|
|
) -> Result<usize, Error> {
|
|
use lemmy_db_schema::schema::community_user_ban::dsl::*;
|
|
diesel::delete(
|
|
community_user_ban
|
|
.filter(community_id.eq(community_user_ban_form.community_id))
|
|
.filter(user_id.eq(community_user_ban_form.user_id)),
|
|
)
|
|
.execute(conn)
|
|
}
|
|
}
|
|
|
|
impl Followable<CommunityFollowerForm> for CommunityFollower {
|
|
fn follow(
|
|
conn: &PgConnection,
|
|
community_follower_form: &CommunityFollowerForm,
|
|
) -> Result<Self, Error> {
|
|
use lemmy_db_schema::schema::community_follower::dsl::*;
|
|
insert_into(community_follower)
|
|
.values(community_follower_form)
|
|
.on_conflict((community_id, user_id))
|
|
.do_update()
|
|
.set(community_follower_form)
|
|
.get_result::<Self>(conn)
|
|
}
|
|
fn follow_accepted(conn: &PgConnection, community_id_: i32, user_id_: i32) -> Result<Self, Error>
|
|
where
|
|
Self: Sized,
|
|
{
|
|
use lemmy_db_schema::schema::community_follower::dsl::*;
|
|
diesel::update(
|
|
community_follower
|
|
.filter(community_id.eq(community_id_))
|
|
.filter(user_id.eq(user_id_)),
|
|
)
|
|
.set(pending.eq(true))
|
|
.get_result::<Self>(conn)
|
|
}
|
|
fn unfollow(
|
|
conn: &PgConnection,
|
|
community_follower_form: &CommunityFollowerForm,
|
|
) -> Result<usize, Error> {
|
|
use lemmy_db_schema::schema::community_follower::dsl::*;
|
|
diesel::delete(
|
|
community_follower
|
|
.filter(community_id.eq(&community_follower_form.community_id))
|
|
.filter(user_id.eq(&community_follower_form.user_id)),
|
|
)
|
|
.execute(conn)
|
|
}
|
|
// TODO: this function name only makes sense if you call it with a remote community. for a local
|
|
// community, it will also return true if only remote followers exist
|
|
fn has_local_followers(conn: &PgConnection, community_id_: i32) -> Result<bool, Error> {
|
|
use lemmy_db_schema::schema::community_follower::dsl::*;
|
|
diesel::select(exists(
|
|
community_follower.filter(community_id.eq(community_id_)),
|
|
))
|
|
.get_result(conn)
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use crate::{
|
|
tests::establish_unpooled_connection,
|
|
Bannable,
|
|
Crud,
|
|
Followable,
|
|
Joinable,
|
|
ListingType,
|
|
SortType,
|
|
};
|
|
use lemmy_db_schema::source::{community::*, user::*};
|
|
|
|
#[test]
|
|
fn test_crud() {
|
|
let conn = establish_unpooled_connection();
|
|
|
|
let new_user = UserForm {
|
|
name: "bobbee".into(),
|
|
preferred_username: None,
|
|
password_encrypted: "nope".into(),
|
|
email: None,
|
|
matrix_user_id: None,
|
|
avatar: None,
|
|
banner: None,
|
|
admin: false,
|
|
banned: Some(false),
|
|
published: None,
|
|
updated: None,
|
|
show_nsfw: false,
|
|
theme: "browser".into(),
|
|
default_sort_type: SortType::Hot as i16,
|
|
default_listing_type: ListingType::Subscribed as i16,
|
|
lang: "browser".into(),
|
|
show_avatars: true,
|
|
send_notifications_to_email: false,
|
|
actor_id: None,
|
|
bio: None,
|
|
local: true,
|
|
private_key: None,
|
|
public_key: None,
|
|
last_refreshed_at: None,
|
|
};
|
|
|
|
let inserted_user = User_::create(&conn, &new_user).unwrap();
|
|
|
|
let new_community = CommunityForm {
|
|
name: "TIL".into(),
|
|
creator_id: inserted_user.id,
|
|
title: "nada".to_owned(),
|
|
description: None,
|
|
category_id: 1,
|
|
nsfw: false,
|
|
removed: None,
|
|
deleted: None,
|
|
updated: None,
|
|
actor_id: None,
|
|
local: true,
|
|
private_key: None,
|
|
public_key: None,
|
|
last_refreshed_at: None,
|
|
published: None,
|
|
icon: None,
|
|
banner: None,
|
|
};
|
|
|
|
let inserted_community = Community::create(&conn, &new_community).unwrap();
|
|
|
|
let expected_community = Community {
|
|
id: inserted_community.id,
|
|
creator_id: inserted_user.id,
|
|
name: "TIL".into(),
|
|
title: "nada".to_owned(),
|
|
description: None,
|
|
category_id: 1,
|
|
nsfw: false,
|
|
removed: false,
|
|
deleted: false,
|
|
published: inserted_community.published,
|
|
updated: None,
|
|
actor_id: inserted_community.actor_id.to_owned(),
|
|
local: true,
|
|
private_key: None,
|
|
public_key: None,
|
|
last_refreshed_at: inserted_community.published,
|
|
icon: None,
|
|
banner: None,
|
|
};
|
|
|
|
let community_follower_form = CommunityFollowerForm {
|
|
community_id: inserted_community.id,
|
|
user_id: inserted_user.id,
|
|
pending: false,
|
|
};
|
|
|
|
let inserted_community_follower =
|
|
CommunityFollower::follow(&conn, &community_follower_form).unwrap();
|
|
|
|
let expected_community_follower = CommunityFollower {
|
|
id: inserted_community_follower.id,
|
|
community_id: inserted_community.id,
|
|
user_id: inserted_user.id,
|
|
pending: Some(false),
|
|
published: inserted_community_follower.published,
|
|
};
|
|
|
|
let community_user_form = CommunityModeratorForm {
|
|
community_id: inserted_community.id,
|
|
user_id: inserted_user.id,
|
|
};
|
|
|
|
let inserted_community_user = CommunityModerator::join(&conn, &community_user_form).unwrap();
|
|
|
|
let expected_community_user = CommunityModerator {
|
|
id: inserted_community_user.id,
|
|
community_id: inserted_community.id,
|
|
user_id: inserted_user.id,
|
|
published: inserted_community_user.published,
|
|
};
|
|
|
|
let community_user_ban_form = CommunityUserBanForm {
|
|
community_id: inserted_community.id,
|
|
user_id: inserted_user.id,
|
|
};
|
|
|
|
let inserted_community_user_ban =
|
|
CommunityUserBan::ban(&conn, &community_user_ban_form).unwrap();
|
|
|
|
let expected_community_user_ban = CommunityUserBan {
|
|
id: inserted_community_user_ban.id,
|
|
community_id: inserted_community.id,
|
|
user_id: inserted_user.id,
|
|
published: inserted_community_user_ban.published,
|
|
};
|
|
|
|
let read_community = Community::read(&conn, inserted_community.id).unwrap();
|
|
let updated_community =
|
|
Community::update(&conn, inserted_community.id, &new_community).unwrap();
|
|
let ignored_community = CommunityFollower::unfollow(&conn, &community_follower_form).unwrap();
|
|
let left_community = CommunityModerator::leave(&conn, &community_user_form).unwrap();
|
|
let unban = CommunityUserBan::unban(&conn, &community_user_ban_form).unwrap();
|
|
let num_deleted = Community::delete(&conn, inserted_community.id).unwrap();
|
|
User_::delete(&conn, inserted_user.id).unwrap();
|
|
|
|
assert_eq!(expected_community, read_community);
|
|
assert_eq!(expected_community, inserted_community);
|
|
assert_eq!(expected_community, updated_community);
|
|
assert_eq!(expected_community_follower, inserted_community_follower);
|
|
assert_eq!(expected_community_user, inserted_community_user);
|
|
assert_eq!(expected_community_user_ban, inserted_community_user_ban);
|
|
assert_eq!(1, ignored_community);
|
|
assert_eq!(1, left_community);
|
|
assert_eq!(1, unban);
|
|
// assert_eq!(2, loaded_count);
|
|
assert_eq!(1, num_deleted);
|
|
}
|
|
}
|