2021-01-27 16:42:23 +00:00
|
|
|
use crate::{
|
2021-10-16 13:33:38 +00:00
|
|
|
newtypes::{CommunityId, DbUrl, PersonId},
|
2021-02-26 13:49:58 +00:00
|
|
|
schema::{community, community_follower, community_moderator, community_person_ban},
|
2021-01-27 16:42:23 +00:00
|
|
|
};
|
2021-10-19 16:37:01 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2020-12-21 12:28:12 +00:00
|
|
|
|
2021-10-19 16:37:01 +00:00
|
|
|
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)]
|
2020-12-21 12:28:12 +00:00
|
|
|
#[table_name = "community"]
|
|
|
|
pub struct Community {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub id: CommunityId,
|
2020-12-21 12:28:12 +00:00
|
|
|
pub name: String,
|
|
|
|
pub title: String,
|
|
|
|
pub description: Option<String>,
|
|
|
|
pub removed: bool,
|
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
pub deleted: bool,
|
|
|
|
pub nsfw: bool,
|
2021-03-02 12:41:48 +00:00
|
|
|
pub actor_id: DbUrl,
|
2020-12-21 12:28:12 +00:00
|
|
|
pub local: bool,
|
|
|
|
pub private_key: Option<String>,
|
2021-11-22 15:10:18 +00:00
|
|
|
pub public_key: String,
|
2020-12-21 12:28:12 +00:00
|
|
|
pub last_refreshed_at: chrono::NaiveDateTime,
|
2021-03-02 12:41:48 +00:00
|
|
|
pub icon: Option<DbUrl>,
|
|
|
|
pub banner: Option<DbUrl>,
|
|
|
|
pub followers_url: DbUrl,
|
|
|
|
pub inbox_url: DbUrl,
|
|
|
|
pub shared_inbox_url: Option<DbUrl>,
|
2022-02-18 02:30:47 +00:00
|
|
|
pub hidden: bool,
|
2022-04-28 20:32:32 +00:00
|
|
|
pub posting_restricted_to_mods: bool,
|
2020-12-21 12:28:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// A safe representation of community, without the sensitive info
|
2021-10-19 16:37:01 +00:00
|
|
|
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)]
|
2020-12-21 12:28:12 +00:00
|
|
|
#[table_name = "community"]
|
|
|
|
pub struct CommunitySafe {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub id: CommunityId,
|
2020-12-21 12:28:12 +00:00
|
|
|
pub name: String,
|
|
|
|
pub title: String,
|
|
|
|
pub description: Option<String>,
|
|
|
|
pub removed: bool,
|
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
pub deleted: bool,
|
|
|
|
pub nsfw: bool,
|
2021-03-02 12:41:48 +00:00
|
|
|
pub actor_id: DbUrl,
|
2020-12-21 12:28:12 +00:00
|
|
|
pub local: bool,
|
2021-03-02 12:41:48 +00:00
|
|
|
pub icon: Option<DbUrl>,
|
|
|
|
pub banner: Option<DbUrl>,
|
2022-02-18 02:30:47 +00:00
|
|
|
pub hidden: bool,
|
2022-04-28 20:32:32 +00:00
|
|
|
pub posting_restricted_to_mods: bool,
|
2020-12-21 12:28:12 +00:00
|
|
|
}
|
|
|
|
|
2021-03-20 20:59:07 +00:00
|
|
|
#[derive(Insertable, AsChangeset, Debug, Default)]
|
2020-12-21 12:28:12 +00:00
|
|
|
#[table_name = "community"]
|
|
|
|
pub struct CommunityForm {
|
|
|
|
pub name: String,
|
|
|
|
pub title: String,
|
|
|
|
pub description: Option<String>,
|
|
|
|
pub removed: Option<bool>,
|
|
|
|
pub published: Option<chrono::NaiveDateTime>,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
pub deleted: Option<bool>,
|
2021-03-20 20:59:07 +00:00
|
|
|
pub nsfw: Option<bool>,
|
2021-03-02 12:41:48 +00:00
|
|
|
pub actor_id: Option<DbUrl>,
|
2021-03-20 20:59:07 +00:00
|
|
|
pub local: Option<bool>,
|
2021-11-22 15:10:18 +00:00
|
|
|
pub private_key: Option<Option<String>>,
|
|
|
|
pub public_key: String,
|
2020-12-21 12:28:12 +00:00
|
|
|
pub last_refreshed_at: Option<chrono::NaiveDateTime>,
|
2021-03-02 12:41:48 +00:00
|
|
|
pub icon: Option<Option<DbUrl>>,
|
|
|
|
pub banner: Option<Option<DbUrl>>,
|
|
|
|
pub followers_url: Option<DbUrl>,
|
|
|
|
pub inbox_url: Option<DbUrl>,
|
|
|
|
pub shared_inbox_url: Option<Option<DbUrl>>,
|
2022-02-18 02:30:47 +00:00
|
|
|
pub hidden: Option<bool>,
|
2022-04-28 20:32:32 +00:00
|
|
|
pub posting_restricted_to_mods: Option<bool>,
|
2020-12-21 12:28:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Identifiable, Queryable, Associations, PartialEq, Debug)]
|
|
|
|
#[belongs_to(Community)]
|
|
|
|
#[table_name = "community_moderator"]
|
|
|
|
pub struct CommunityModerator {
|
|
|
|
pub id: i32,
|
2021-03-18 20:25:21 +00:00
|
|
|
pub community_id: CommunityId,
|
|
|
|
pub person_id: PersonId,
|
2020-12-21 12:28:12 +00:00
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable, AsChangeset, Clone)]
|
|
|
|
#[table_name = "community_moderator"]
|
|
|
|
pub struct CommunityModeratorForm {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub community_id: CommunityId,
|
|
|
|
pub person_id: PersonId,
|
2020-12-21 12:28:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Identifiable, Queryable, Associations, PartialEq, Debug)]
|
|
|
|
#[belongs_to(Community)]
|
2021-02-26 13:49:58 +00:00
|
|
|
#[table_name = "community_person_ban"]
|
|
|
|
pub struct CommunityPersonBan {
|
2020-12-21 12:28:12 +00:00
|
|
|
pub id: i32,
|
2021-03-18 20:25:21 +00:00
|
|
|
pub community_id: CommunityId,
|
|
|
|
pub person_id: PersonId,
|
2020-12-21 12:28:12 +00:00
|
|
|
pub published: chrono::NaiveDateTime,
|
2022-01-08 12:37:07 +00:00
|
|
|
pub expires: Option<chrono::NaiveDateTime>,
|
2020-12-21 12:28:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable, AsChangeset, Clone)]
|
2021-02-26 13:49:58 +00:00
|
|
|
#[table_name = "community_person_ban"]
|
|
|
|
pub struct CommunityPersonBanForm {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub community_id: CommunityId,
|
|
|
|
pub person_id: PersonId,
|
2022-01-08 12:37:07 +00:00
|
|
|
pub expires: Option<Option<chrono::NaiveDateTime>>,
|
2020-12-21 12:28:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Identifiable, Queryable, Associations, PartialEq, Debug)]
|
|
|
|
#[belongs_to(Community)]
|
|
|
|
#[table_name = "community_follower"]
|
|
|
|
pub struct CommunityFollower {
|
|
|
|
pub id: i32,
|
2021-03-18 20:25:21 +00:00
|
|
|
pub community_id: CommunityId,
|
|
|
|
pub person_id: PersonId,
|
2020-12-21 12:28:12 +00:00
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
pub pending: Option<bool>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable, AsChangeset, Clone)]
|
|
|
|
#[table_name = "community_follower"]
|
|
|
|
pub struct CommunityFollowerForm {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub community_id: CommunityId,
|
|
|
|
pub person_id: PersonId,
|
2020-12-21 12:28:12 +00:00
|
|
|
pub pending: bool,
|
|
|
|
}
|