2019-05-05 05:20:38 +00:00
|
|
|
use super::*;
|
2019-12-11 20:21:47 +00:00
|
|
|
use crate::schema::{community, community_follower, community_moderator, community_user_ban};
|
2019-03-04 16:39:07 +00:00
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
#[derive(Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)]
|
2019-09-07 15:35:05 +00:00
|
|
|
#[table_name = "community"]
|
2019-03-04 16:39:07 +00:00
|
|
|
pub struct Community {
|
|
|
|
pub id: i32,
|
|
|
|
pub name: String,
|
2019-04-03 20:59:37 +00:00
|
|
|
pub title: String,
|
|
|
|
pub description: Option<String>,
|
|
|
|
pub category_id: i32,
|
2019-04-03 06:49:32 +00:00
|
|
|
pub creator_id: i32,
|
2019-04-20 04:06:25 +00:00
|
|
|
pub removed: bool,
|
2019-03-05 03:52:09 +00:00
|
|
|
pub published: chrono::NaiveDateTime,
|
2019-04-29 19:14:54 +00:00
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
pub deleted: bool,
|
2019-08-14 02:52:43 +00:00
|
|
|
pub nsfw: bool,
|
2019-03-04 16:39:07 +00:00
|
|
|
}
|
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
#[derive(Insertable, AsChangeset, Clone, Serialize, Deserialize)]
|
2019-09-07 15:35:05 +00:00
|
|
|
#[table_name = "community"]
|
2019-03-23 01:42:57 +00:00
|
|
|
pub struct CommunityForm {
|
|
|
|
pub name: String,
|
2019-04-03 20:59:37 +00:00
|
|
|
pub title: String,
|
|
|
|
pub description: Option<String>,
|
|
|
|
pub category_id: i32,
|
2019-04-03 06:49:32 +00:00
|
|
|
pub creator_id: i32,
|
2019-04-20 07:24:59 +00:00
|
|
|
pub removed: Option<bool>,
|
2019-04-29 19:14:54 +00:00
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
pub deleted: Option<bool>,
|
2019-08-14 02:52:43 +00:00
|
|
|
pub nsfw: bool,
|
2019-03-04 16:39:07 +00:00
|
|
|
}
|
|
|
|
|
2019-04-16 23:04:23 +00:00
|
|
|
impl Crud<CommunityForm> for Community {
|
|
|
|
fn read(conn: &PgConnection, community_id: i32) -> Result<Self, Error> {
|
2019-06-03 17:47:12 +00:00
|
|
|
use crate::schema::community::dsl::*;
|
2019-09-07 15:35:05 +00:00
|
|
|
community.find(community_id).first::<Self>(conn)
|
2019-04-16 23:04:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn delete(conn: &PgConnection, community_id: i32) -> Result<usize, Error> {
|
2019-06-03 17:47:12 +00:00
|
|
|
use crate::schema::community::dsl::*;
|
2019-09-07 15:35:05 +00:00
|
|
|
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> {
|
2019-06-03 17:47:12 +00:00
|
|
|
use crate::schema::community::dsl::*;
|
2019-09-07 15:35:05 +00:00
|
|
|
insert_into(community)
|
|
|
|
.values(new_community)
|
|
|
|
.get_result::<Self>(conn)
|
2019-04-16 23:04:23 +00:00
|
|
|
}
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
fn update(
|
|
|
|
conn: &PgConnection,
|
|
|
|
community_id: i32,
|
|
|
|
new_community: &CommunityForm,
|
|
|
|
) -> Result<Self, Error> {
|
2019-06-03 17:47:12 +00:00
|
|
|
use crate::schema::community::dsl::*;
|
2019-04-16 23:04:23 +00:00
|
|
|
diesel::update(community.find(community_id))
|
|
|
|
.set(new_community)
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-25 21:52:18 +00:00
|
|
|
impl Community {
|
|
|
|
pub fn read_from_name(conn: &PgConnection, community_name: String) -> Result<Self, Error> {
|
2019-06-03 17:47:12 +00:00
|
|
|
use crate::schema::community::dsl::*;
|
2019-09-07 15:35:05 +00:00
|
|
|
community
|
|
|
|
.filter(name.eq(community_name))
|
2019-04-25 21:52:18 +00:00
|
|
|
.first::<Self>(conn)
|
|
|
|
}
|
2019-12-18 00:59:47 +00:00
|
|
|
|
2019-12-26 19:48:13 +00:00
|
|
|
pub fn get_url(&self) -> String {
|
|
|
|
format!("https://{}/c/{}", Settings::get().hostname, self.name)
|
2019-12-18 00:59:47 +00:00
|
|
|
}
|
2019-04-25 21:52:18 +00:00
|
|
|
}
|
|
|
|
|
2019-03-04 16:39:07 +00:00
|
|
|
#[derive(Identifiable, Queryable, Associations, PartialEq, Debug)]
|
|
|
|
#[belongs_to(Community)]
|
2019-04-03 06:49:32 +00:00
|
|
|
#[table_name = "community_moderator"]
|
|
|
|
pub struct CommunityModerator {
|
2019-03-04 16:39:07 +00:00
|
|
|
pub id: i32,
|
|
|
|
pub community_id: i32,
|
2019-04-03 06:49:32 +00:00
|
|
|
pub user_id: i32,
|
2019-03-05 03:52:09 +00:00
|
|
|
pub published: chrono::NaiveDateTime,
|
2019-03-04 16:39:07 +00:00
|
|
|
}
|
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
#[derive(Insertable, AsChangeset, Clone)]
|
2019-09-07 15:35:05 +00:00
|
|
|
#[table_name = "community_moderator"]
|
2019-04-03 06:49:32 +00:00
|
|
|
pub struct CommunityModeratorForm {
|
2019-03-23 01:42:57 +00:00
|
|
|
pub community_id: i32,
|
2019-04-03 06:49:32 +00:00
|
|
|
pub user_id: i32,
|
2019-03-04 16:39:07 +00:00
|
|
|
}
|
|
|
|
|
2019-04-16 23:04:23 +00:00
|
|
|
impl Joinable<CommunityModeratorForm> for CommunityModerator {
|
2019-09-07 15:35:05 +00:00
|
|
|
fn join(
|
|
|
|
conn: &PgConnection,
|
|
|
|
community_user_form: &CommunityModeratorForm,
|
|
|
|
) -> Result<Self, Error> {
|
2019-06-03 17:47:12 +00:00
|
|
|
use crate::schema::community_moderator::dsl::*;
|
2019-04-16 23:04:23 +00:00
|
|
|
insert_into(community_moderator)
|
|
|
|
.values(community_user_form)
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
fn leave(
|
|
|
|
conn: &PgConnection,
|
|
|
|
community_user_form: &CommunityModeratorForm,
|
|
|
|
) -> Result<usize, Error> {
|
2019-06-03 17:47:12 +00:00
|
|
|
use crate::schema::community_moderator::dsl::*;
|
2019-09-07 15:35:05 +00:00
|
|
|
diesel::delete(
|
|
|
|
community_moderator
|
|
|
|
.filter(community_id.eq(community_user_form.community_id))
|
|
|
|
.filter(user_id.eq(community_user_form.user_id)),
|
|
|
|
)
|
|
|
|
.execute(conn)
|
2019-04-16 23:04:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-24 02:40:41 +00:00
|
|
|
impl CommunityModerator {
|
|
|
|
pub fn delete_for_community(conn: &PgConnection, for_community_id: i32) -> Result<usize, Error> {
|
|
|
|
use crate::schema::community_moderator::dsl::*;
|
2019-09-07 15:35:05 +00:00
|
|
|
diesel::delete(community_moderator.filter(community_id.eq(for_community_id))).execute(conn)
|
2019-08-24 02:40:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-15 23:12:06 +00:00
|
|
|
#[derive(Identifiable, Queryable, Associations, PartialEq, Debug)]
|
|
|
|
#[belongs_to(Community)]
|
|
|
|
#[table_name = "community_user_ban"]
|
|
|
|
pub struct CommunityUserBan {
|
|
|
|
pub id: i32,
|
|
|
|
pub community_id: i32,
|
|
|
|
pub user_id: i32,
|
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable, AsChangeset, Clone)]
|
2019-09-07 15:35:05 +00:00
|
|
|
#[table_name = "community_user_ban"]
|
2019-04-15 23:12:06 +00:00
|
|
|
pub struct CommunityUserBanForm {
|
|
|
|
pub community_id: i32,
|
|
|
|
pub user_id: i32,
|
|
|
|
}
|
|
|
|
|
2019-04-16 23:04:23 +00:00
|
|
|
impl Bannable<CommunityUserBanForm> for CommunityUserBan {
|
2019-09-07 15:35:05 +00:00
|
|
|
fn ban(
|
|
|
|
conn: &PgConnection,
|
|
|
|
community_user_ban_form: &CommunityUserBanForm,
|
|
|
|
) -> Result<Self, Error> {
|
2019-06-03 17:47:12 +00:00
|
|
|
use crate::schema::community_user_ban::dsl::*;
|
2019-04-16 23:04:23 +00:00
|
|
|
insert_into(community_user_ban)
|
|
|
|
.values(community_user_ban_form)
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
fn unban(
|
|
|
|
conn: &PgConnection,
|
|
|
|
community_user_ban_form: &CommunityUserBanForm,
|
|
|
|
) -> Result<usize, Error> {
|
2019-06-03 17:47:12 +00:00
|
|
|
use crate::schema::community_user_ban::dsl::*;
|
2019-09-07 15:35:05 +00:00
|
|
|
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)
|
2019-04-16 23:04:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-04 16:39:07 +00:00
|
|
|
#[derive(Identifiable, Queryable, Associations, PartialEq, Debug)]
|
|
|
|
#[belongs_to(Community)]
|
|
|
|
#[table_name = "community_follower"]
|
|
|
|
pub struct CommunityFollower {
|
|
|
|
pub id: i32,
|
|
|
|
pub community_id: i32,
|
2019-04-03 06:49:32 +00:00
|
|
|
pub user_id: i32,
|
2019-03-05 03:52:09 +00:00
|
|
|
pub published: chrono::NaiveDateTime,
|
2019-03-04 16:39:07 +00:00
|
|
|
}
|
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
#[derive(Insertable, AsChangeset, Clone)]
|
2019-09-07 15:35:05 +00:00
|
|
|
#[table_name = "community_follower"]
|
2019-03-23 01:42:57 +00:00
|
|
|
pub struct CommunityFollowerForm {
|
|
|
|
pub community_id: i32,
|
2019-04-03 06:49:32 +00:00
|
|
|
pub user_id: i32,
|
2019-03-04 16:39:07 +00:00
|
|
|
}
|
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
impl Followable<CommunityFollowerForm> for CommunityFollower {
|
2019-09-07 15:35:05 +00:00
|
|
|
fn follow(
|
|
|
|
conn: &PgConnection,
|
|
|
|
community_follower_form: &CommunityFollowerForm,
|
|
|
|
) -> Result<Self, Error> {
|
2019-06-03 17:47:12 +00:00
|
|
|
use crate::schema::community_follower::dsl::*;
|
2019-03-04 16:39:07 +00:00
|
|
|
insert_into(community_follower)
|
|
|
|
.values(community_follower_form)
|
2019-03-23 01:42:57 +00:00
|
|
|
.get_result::<Self>(conn)
|
2019-03-04 16:39:07 +00:00
|
|
|
}
|
2019-09-07 15:35:05 +00:00
|
|
|
fn ignore(
|
|
|
|
conn: &PgConnection,
|
|
|
|
community_follower_form: &CommunityFollowerForm,
|
|
|
|
) -> Result<usize, Error> {
|
2019-06-03 17:47:12 +00:00
|
|
|
use crate::schema::community_follower::dsl::*;
|
2019-09-07 15:35:05 +00:00
|
|
|
diesel::delete(
|
|
|
|
community_follower
|
|
|
|
.filter(community_id.eq(&community_follower_form.community_id))
|
|
|
|
.filter(user_id.eq(&community_follower_form.user_id)),
|
|
|
|
)
|
|
|
|
.execute(conn)
|
2019-03-04 16:39:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2019-05-03 01:34:21 +00:00
|
|
|
use super::super::user::*;
|
2019-09-07 15:35:05 +00:00
|
|
|
use super::*;
|
|
|
|
#[test]
|
2019-03-04 16:39:07 +00:00
|
|
|
fn test_crud() {
|
2020-01-12 15:31:51 +00:00
|
|
|
let conn = establish_unpooled_connection();
|
2019-04-03 06:49:32 +00:00
|
|
|
|
|
|
|
let new_user = UserForm {
|
2019-04-15 23:12:06 +00:00
|
|
|
name: "bobbee".into(),
|
2019-04-03 06:49:32 +00:00
|
|
|
fedi_name: "rrf".into(),
|
|
|
|
preferred_username: None,
|
|
|
|
password_encrypted: "nope".into(),
|
|
|
|
email: None,
|
2019-12-29 20:39:48 +00:00
|
|
|
avatar: None,
|
2019-04-16 23:04:23 +00:00
|
|
|
admin: false,
|
|
|
|
banned: false,
|
2019-08-14 03:15:52 +00:00
|
|
|
updated: None,
|
|
|
|
show_nsfw: false,
|
2019-10-15 19:21:27 +00:00
|
|
|
theme: "darkly".into(),
|
2019-10-21 04:21:54 +00:00
|
|
|
default_sort_type: SortType::Hot as i16,
|
|
|
|
default_listing_type: ListingType::Subscribed as i16,
|
2019-12-09 08:24:53 +00:00
|
|
|
lang: "browser".into(),
|
2020-01-02 21:55:54 +00:00
|
|
|
show_avatars: true,
|
|
|
|
send_notifications_to_email: false,
|
2019-04-03 06:49:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let inserted_user = User_::create(&conn, &new_user).unwrap();
|
|
|
|
|
2019-03-04 16:39:07 +00:00
|
|
|
let new_community = CommunityForm {
|
|
|
|
name: "TIL".into(),
|
2019-04-03 20:59:37 +00:00
|
|
|
creator_id: inserted_user.id,
|
|
|
|
title: "nada".to_owned(),
|
|
|
|
description: None,
|
|
|
|
category_id: 1,
|
2019-08-14 02:52:43 +00:00
|
|
|
nsfw: false,
|
2019-04-20 07:24:59 +00:00
|
|
|
removed: None,
|
2019-04-29 19:14:54 +00:00
|
|
|
deleted: None,
|
2019-04-03 06:49:32 +00:00
|
|
|
updated: None,
|
2019-03-04 16:39:07 +00:00
|
|
|
};
|
|
|
|
|
2019-03-23 01:42:57 +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,
|
2019-04-03 06:49:32 +00:00
|
|
|
creator_id: inserted_user.id,
|
2019-03-04 16:39:07 +00:00
|
|
|
name: "TIL".into(),
|
2019-04-03 20:59:37 +00:00
|
|
|
title: "nada".to_owned(),
|
|
|
|
description: None,
|
|
|
|
category_id: 1,
|
2019-08-14 02:52:43 +00:00
|
|
|
nsfw: false,
|
2019-04-20 04:06:25 +00:00
|
|
|
removed: false,
|
2019-04-29 19:14:54 +00:00
|
|
|
deleted: false,
|
2019-03-05 03:52:09 +00:00
|
|
|
published: inserted_community.published,
|
2019-09-07 15:35:05 +00:00
|
|
|
updated: None,
|
2019-03-04 16:39:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let community_follower_form = CommunityFollowerForm {
|
2019-03-23 01:42:57 +00:00
|
|
|
community_id: inserted_community.id,
|
2019-09-07 15:35:05 +00:00
|
|
|
user_id: inserted_user.id,
|
2019-03-04 16:39:07 +00:00
|
|
|
};
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
let inserted_community_follower =
|
|
|
|
CommunityFollower::follow(&conn, &community_follower_form).unwrap();
|
2019-04-15 23:12:06 +00:00
|
|
|
|
2019-03-04 16:39:07 +00:00
|
|
|
let expected_community_follower = CommunityFollower {
|
|
|
|
id: inserted_community_follower.id,
|
|
|
|
community_id: inserted_community.id,
|
2019-04-03 06:49:32 +00:00
|
|
|
user_id: inserted_user.id,
|
2019-09-07 15:35:05 +00:00
|
|
|
published: inserted_community_follower.published,
|
2019-03-04 16:39:07 +00:00
|
|
|
};
|
2019-09-07 15:35:05 +00:00
|
|
|
|
2019-04-03 06:49:32 +00:00
|
|
|
let community_user_form = CommunityModeratorForm {
|
2019-03-23 01:42:57 +00:00
|
|
|
community_id: inserted_community.id,
|
2019-09-07 15:35:05 +00:00
|
|
|
user_id: inserted_user.id,
|
2019-03-04 16:39:07 +00:00
|
|
|
};
|
|
|
|
|
2019-04-03 06:49:32 +00:00
|
|
|
let inserted_community_user = CommunityModerator::join(&conn, &community_user_form).unwrap();
|
2019-03-04 16:39:07 +00:00
|
|
|
|
2019-04-03 06:49:32 +00:00
|
|
|
let expected_community_user = CommunityModerator {
|
2019-03-04 16:39:07 +00:00
|
|
|
id: inserted_community_user.id,
|
|
|
|
community_id: inserted_community.id,
|
2019-04-03 06:49:32 +00:00
|
|
|
user_id: inserted_user.id,
|
2019-09-07 15:35:05 +00:00
|
|
|
published: inserted_community_user.published,
|
2019-03-04 16:39:07 +00:00
|
|
|
};
|
|
|
|
|
2019-04-15 23:12:06 +00:00
|
|
|
let community_user_ban_form = CommunityUserBanForm {
|
|
|
|
community_id: inserted_community.id,
|
2019-09-07 15:35:05 +00:00
|
|
|
user_id: inserted_user.id,
|
2019-04-15 23:12:06 +00:00
|
|
|
};
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
let inserted_community_user_ban =
|
|
|
|
CommunityUserBan::ban(&conn, &community_user_ban_form).unwrap();
|
2019-04-15 23:12:06 +00:00
|
|
|
|
|
|
|
let expected_community_user_ban = CommunityUserBan {
|
|
|
|
id: inserted_community_user_ban.id,
|
|
|
|
community_id: inserted_community.id,
|
|
|
|
user_id: inserted_user.id,
|
2019-09-07 15:35:05 +00:00
|
|
|
published: inserted_community_user_ban.published,
|
2019-04-15 23:12:06 +00:00
|
|
|
};
|
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
let read_community = Community::read(&conn, inserted_community.id).unwrap();
|
2019-09-07 15:35:05 +00:00
|
|
|
let updated_community =
|
|
|
|
Community::update(&conn, inserted_community.id, &new_community).unwrap();
|
2019-03-23 01:42:57 +00:00
|
|
|
let ignored_community = CommunityFollower::ignore(&conn, &community_follower_form).unwrap();
|
2019-04-03 06:49:32 +00:00
|
|
|
let left_community = CommunityModerator::leave(&conn, &community_user_form).unwrap();
|
2019-04-15 23:12:06 +00:00
|
|
|
let unban = CommunityUserBan::unban(&conn, &community_user_ban_form).unwrap();
|
2019-03-23 01:42:57 +00:00
|
|
|
let num_deleted = Community::delete(&conn, inserted_community.id).unwrap();
|
|
|
|
User_::delete(&conn, inserted_user.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);
|
|
|
|
assert_eq!(expected_community_user, inserted_community_user);
|
2019-04-15 23:12:06 +00:00
|
|
|
assert_eq!(expected_community_user_ban, inserted_community_user_ban);
|
2019-03-04 16:39:07 +00:00
|
|
|
assert_eq!(1, ignored_community);
|
|
|
|
assert_eq!(1, left_community);
|
2019-04-15 23:12:06 +00:00
|
|
|
assert_eq!(1, unban);
|
2019-04-03 06:49:32 +00:00
|
|
|
// assert_eq!(2, loaded_count);
|
2019-03-04 16:39:07 +00:00
|
|
|
assert_eq!(1, num_deleted);
|
|
|
|
}
|
|
|
|
}
|