lemmy/crates/db_queries/src/source/community.rs

450 lines
13 KiB
Rust
Raw Normal View History

use crate::{ApubObject, Bannable, Crud, DeleteableOrRemoveable, Followable, Joinable};
2020-05-16 14:04:08 +00:00
use diesel::{dsl::*, result::Error, *};
use lemmy_db_schema::{
naive_now,
2020-12-21 12:28:12 +00:00
source::community::{
Community,
CommunityFollower,
CommunityFollowerForm,
CommunityForm,
CommunityModerator,
CommunityModeratorForm,
2021-02-26 13:49:58 +00:00
CommunityPersonBan,
CommunityPersonBanForm,
CommunitySafe,
2020-12-21 12:28:12 +00:00
},
CommunityId,
DbUrl,
PersonId,
};
2020-12-06 03:49:15 +00:00
mod safe_type {
use crate::{source::community::Community, ToSafe};
2020-12-21 12:28:12 +00:00
use lemmy_db_schema::schema::community::*;
2020-12-06 03:49:15 +00:00
type Columns = (
id,
name,
title,
description,
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,
removed,
published,
updated,
deleted,
nsfw,
actor_id,
local,
icon,
banner,
)
}
}
}
impl Crud<CommunityForm, CommunityId> for Community {
fn read(conn: &PgConnection, community_id: CommunityId) -> Result<Self, Error> {
use lemmy_db_schema::schema::community::dsl::*;
community.find(community_id).first::<Self>(conn)
2019-04-16 23:04:23 +00:00
}
fn delete(conn: &PgConnection, community_id: CommunityId) -> Result<usize, Error> {
use lemmy_db_schema::schema::community::dsl::*;
diesel::delete(community.find(community_id)).execute(conn)
2019-04-16 23:04:23 +00:00
}
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)
2019-04-16 23:04:23 +00:00
}
fn update(
conn: &PgConnection,
community_id: CommunityId,
new_community: &CommunityForm,
) -> Result<Self, Error> {
use lemmy_db_schema::schema::community::dsl::*;
2019-04-16 23:04:23 +00:00
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: &DbUrl) -> Result<Self, Error> {
use lemmy_db_schema::schema::community::dsl::*;
community
.filter(actor_id.eq(for_actor_id))
.first::<Self>(conn)
}
2019-12-18 00:59:47 +00:00
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)
}
}
2020-12-21 12:28:12 +00:00
pub trait Community_ {
fn read_from_name(conn: &PgConnection, community_name: &str) -> Result<Community, Error>;
fn update_deleted(
conn: &PgConnection,
community_id: CommunityId,
2020-12-21 12:28:12 +00:00
new_deleted: bool,
) -> Result<Community, Error>;
fn update_removed(
conn: &PgConnection,
community_id: CommunityId,
2020-12-21 12:28:12 +00:00
new_removed: bool,
) -> Result<Community, Error>;
fn distinct_federated_communities(conn: &PgConnection) -> Result<Vec<String>, Error>;
fn read_from_followers_url(
conn: &PgConnection,
followers_url: &DbUrl,
) -> Result<Community, Error>;
2020-12-21 12:28:12 +00:00
}
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)
}
2020-12-21 12:28:12 +00:00
fn update_deleted(
2020-07-20 17:37:39 +00:00
conn: &PgConnection,
community_id: CommunityId,
2020-07-20 17:37:39 +00:00
new_deleted: bool,
2020-12-21 12:28:12 +00:00
) -> Result<Community, Error> {
use lemmy_db_schema::schema::community::dsl::*;
2020-07-20 17:37:39 +00:00
diesel::update(community.find(community_id))
.set((deleted.eq(new_deleted), updated.eq(naive_now())))
2020-07-20 17:37:39 +00:00
.get_result::<Self>(conn)
}
2020-12-21 12:28:12 +00:00
fn update_removed(
2020-07-20 17:37:39 +00:00
conn: &PgConnection,
community_id: CommunityId,
2020-07-20 17:37:39 +00:00
new_removed: bool,
2020-12-21 12:28:12 +00:00
) -> Result<Community, Error> {
use lemmy_db_schema::schema::community::dsl::*;
2020-07-20 17:37:39 +00:00
diesel::update(community.find(community_id))
.set((removed.eq(new_removed), updated.eq(naive_now())))
2020-07-20 17:37:39 +00:00
.get_result::<Self>(conn)
}
2020-12-21 12:28:12 +00:00
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 read_from_followers_url(
conn: &PgConnection,
followers_url_: &DbUrl,
) -> Result<Community, Error> {
use lemmy_db_schema::schema::community::dsl::*;
community
.filter(followers_url.eq(followers_url_))
.first::<Self>(conn)
}
}
2019-04-16 23:04:23 +00:00
impl Joinable<CommunityModeratorForm> for CommunityModerator {
fn join(
conn: &PgConnection,
2021-02-26 13:49:58 +00:00
community_moderator_form: &CommunityModeratorForm,
) -> Result<Self, Error> {
use lemmy_db_schema::schema::community_moderator::dsl::*;
2019-04-16 23:04:23 +00:00
insert_into(community_moderator)
2021-02-26 13:49:58 +00:00
.values(community_moderator_form)
2019-04-16 23:04:23 +00:00
.get_result::<Self>(conn)
}
fn leave(
conn: &PgConnection,
2021-02-26 13:49:58 +00:00
community_moderator_form: &CommunityModeratorForm,
) -> Result<usize, Error> {
use lemmy_db_schema::schema::community_moderator::dsl::*;
diesel::delete(
community_moderator
2021-02-26 13:49:58 +00:00
.filter(community_id.eq(community_moderator_form.community_id))
.filter(person_id.eq(community_moderator_form.person_id)),
)
.execute(conn)
2019-04-16 23:04:23 +00:00
}
}
impl DeleteableOrRemoveable for CommunitySafe {
fn blank_out_deleted_or_removed_info(mut self) -> Self {
self.title = "".into();
self.description = None;
self.icon = None;
self.banner = None;
self
}
}
impl DeleteableOrRemoveable for Community {
fn blank_out_deleted_or_removed_info(mut self) -> Self {
self.title = "".into();
self.description = None;
self.icon = None;
self.banner = None;
self
}
}
2020-12-21 12:28:12 +00:00
pub trait CommunityModerator_ {
fn delete_for_community(
conn: &PgConnection,
for_community_id: CommunityId,
) -> Result<usize, Error>;
2021-02-26 13:49:58 +00:00
fn get_person_moderated_communities(
2020-12-21 12:28:12 +00:00
conn: &PgConnection,
for_person_id: PersonId,
) -> Result<Vec<CommunityId>, Error>;
2020-12-21 12:28:12 +00:00
}
impl CommunityModerator_ for CommunityModerator {
fn delete_for_community(
conn: &PgConnection,
for_community_id: CommunityId,
) -> Result<usize, Error> {
use lemmy_db_schema::schema::community_moderator::dsl::*;
diesel::delete(community_moderator.filter(community_id.eq(for_community_id))).execute(conn)
}
2021-02-26 13:49:58 +00:00
fn get_person_moderated_communities(
conn: &PgConnection,
for_person_id: PersonId,
) -> Result<Vec<CommunityId>, Error> {
use lemmy_db_schema::schema::community_moderator::dsl::*;
community_moderator
2021-02-26 13:49:58 +00:00
.filter(person_id.eq(for_person_id))
.select(community_id)
.load::<CommunityId>(conn)
}
}
2021-02-26 13:49:58 +00:00
impl Bannable<CommunityPersonBanForm> for CommunityPersonBan {
fn ban(
conn: &PgConnection,
2021-02-26 13:49:58 +00:00
community_person_ban_form: &CommunityPersonBanForm,
) -> Result<Self, Error> {
2021-02-26 13:49:58 +00:00
use lemmy_db_schema::schema::community_person_ban::dsl::*;
insert_into(community_person_ban)
.values(community_person_ban_form)
2019-04-16 23:04:23 +00:00
.get_result::<Self>(conn)
}
fn unban(
conn: &PgConnection,
2021-02-26 13:49:58 +00:00
community_person_ban_form: &CommunityPersonBanForm,
) -> Result<usize, Error> {
2021-02-26 13:49:58 +00:00
use lemmy_db_schema::schema::community_person_ban::dsl::*;
diesel::delete(
2021-02-26 13:49:58 +00:00
community_person_ban
.filter(community_id.eq(community_person_ban_form.community_id))
.filter(person_id.eq(community_person_ban_form.person_id)),
)
.execute(conn)
2019-04-16 23:04:23 +00:00
}
}
impl Followable<CommunityFollowerForm> for CommunityFollower {
fn follow(
conn: &PgConnection,
community_follower_form: &CommunityFollowerForm,
) -> Result<Self, Error> {
use lemmy_db_schema::schema::community_follower::dsl::*;
2019-03-04 16:39:07 +00:00
insert_into(community_follower)
.values(community_follower_form)
2021-03-10 22:33:55 +00:00
.on_conflict((community_id, person_id))
.do_update()
.set(community_follower_form)
.get_result::<Self>(conn)
2019-03-04 16:39:07 +00:00
}
2021-03-11 04:43:11 +00:00
fn follow_accepted(
conn: &PgConnection,
community_id_: CommunityId,
person_id_: PersonId,
2021-03-11 04:43:11 +00:00
) -> Result<Self, Error>
where
Self: Sized,
{
use lemmy_db_schema::schema::community_follower::dsl::*;
diesel::update(
community_follower
.filter(community_id.eq(community_id_))
2021-03-10 22:33:55 +00:00
.filter(person_id.eq(person_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))
2021-03-10 22:33:55 +00:00
.filter(person_id.eq(&community_follower_form.person_id)),
)
.execute(conn)
2019-03-04 16:39:07 +00:00
}
// 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_: CommunityId) -> 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)
}
2019-03-04 16:39:07 +00:00
}
#[cfg(test)]
mod tests {
2021-03-11 04:43:11 +00:00
use crate::{establish_unpooled_connection, Bannable, Crud, Followable, Joinable};
2021-02-26 13:49:58 +00:00
use lemmy_db_schema::source::{community::*, person::*};
use serial_test::serial;
2020-05-16 14:04:08 +00:00
#[test]
#[serial]
2019-03-04 16:39:07 +00:00
fn test_crud() {
let conn = establish_unpooled_connection();
2021-02-26 13:49:58 +00:00
let new_person = PersonForm {
name: "bobbee".into(),
2021-03-20 20:59:07 +00:00
..PersonForm::default()
};
2021-02-26 13:49:58 +00:00
let inserted_person = Person::create(&conn, &new_person).unwrap();
2019-03-04 16:39:07 +00:00
let new_community = CommunityForm {
name: "TIL".into(),
title: "nada".to_owned(),
2021-03-20 20:59:07 +00:00
..CommunityForm::default()
2019-03-04 16:39:07 +00:00
};
let inserted_community = Community::create(&conn, &new_community).unwrap();
2019-03-04 16:39:07 +00:00
let expected_community = Community {
id: inserted_community.id,
name: "TIL".into(),
title: "nada".to_owned(),
description: None,
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,
followers_url: inserted_community.followers_url.to_owned(),
inbox_url: inserted_community.inbox_url.to_owned(),
shared_inbox_url: None,
2019-03-04 16:39:07 +00:00
};
let community_follower_form = CommunityFollowerForm {
community_id: inserted_community.id,
2021-02-26 13:49:58 +00:00
person_id: inserted_person.id,
2020-11-10 16:11:08 +00:00
pending: false,
2019-03-04 16:39:07 +00:00
};
let inserted_community_follower =
CommunityFollower::follow(&conn, &community_follower_form).unwrap();
2019-03-04 16:39:07 +00:00
let expected_community_follower = CommunityFollower {
id: inserted_community_follower.id,
community_id: inserted_community.id,
2021-02-26 13:49:58 +00:00
person_id: inserted_person.id,
2020-11-10 16:11:08 +00:00
pending: Some(false),
published: inserted_community_follower.published,
2019-03-04 16:39:07 +00:00
};
2021-02-26 13:49:58 +00:00
let community_moderator_form = CommunityModeratorForm {
community_id: inserted_community.id,
2021-02-26 13:49:58 +00:00
person_id: inserted_person.id,
2019-03-04 16:39:07 +00:00
};
2021-03-11 04:43:11 +00:00
let inserted_community_moderator =
CommunityModerator::join(&conn, &community_moderator_form).unwrap();
2019-03-04 16:39:07 +00:00
2021-02-26 13:49:58 +00:00
let expected_community_moderator = CommunityModerator {
id: inserted_community_moderator.id,
2019-03-04 16:39:07 +00:00
community_id: inserted_community.id,
2021-02-26 13:49:58 +00:00
person_id: inserted_person.id,
published: inserted_community_moderator.published,
2019-03-04 16:39:07 +00:00
};
2021-02-26 13:49:58 +00:00
let community_person_ban_form = CommunityPersonBanForm {
community_id: inserted_community.id,
2021-02-26 13:49:58 +00:00
person_id: inserted_person.id,
};
2021-02-26 13:49:58 +00:00
let inserted_community_person_ban =
CommunityPersonBan::ban(&conn, &community_person_ban_form).unwrap();
2021-02-26 13:49:58 +00:00
let expected_community_person_ban = CommunityPersonBan {
id: inserted_community_person_ban.id,
community_id: inserted_community.id,
2021-02-26 13:49:58 +00:00
person_id: inserted_person.id,
published: inserted_community_person_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();
2021-02-26 13:49:58 +00:00
let left_community = CommunityModerator::leave(&conn, &community_moderator_form).unwrap();
let unban = CommunityPersonBan::unban(&conn, &community_person_ban_form).unwrap();
let num_deleted = Community::delete(&conn, inserted_community.id).unwrap();
2021-02-26 13:49:58 +00:00
Person::delete(&conn, inserted_person.id).unwrap();
2019-03-04 16:39:07 +00:00
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);
2021-02-26 13:49:58 +00:00
assert_eq!(expected_community_moderator, inserted_community_moderator);
assert_eq!(expected_community_person_ban, inserted_community_person_ban);
2019-03-04 16:39:07 +00:00
assert_eq!(1, ignored_community);
assert_eq!(1, left_community);
assert_eq!(1, unban);
// assert_eq!(2, loaded_count);
2019-03-04 16:39:07 +00:00
assert_eq!(1, num_deleted);
}
}