2022-05-03 17:44:13 +00:00
|
|
|
use crate::newtypes::{CommunityId, DbUrl, PersonId};
|
2021-10-19 16:37:01 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2020-12-21 12:28:12 +00:00
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use crate::schema::{community, community_follower, community_moderator, community_person_ban};
|
|
|
|
|
|
|
|
#[derive(Clone, PartialEq, Debug, Serialize, Deserialize)]
|
|
|
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "community")]
|
2020-12-21 12:28:12 +00:00
|
|
|
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
|
2022-05-03 17:44:13 +00:00
|
|
|
#[derive(Clone, PartialEq, Debug, Serialize, Deserialize)]
|
|
|
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "community")]
|
2020-12-21 12:28:12 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[derive(Debug, Default)]
|
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "community")]
|
2020-12-21 12:28:12 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[derive(PartialEq, Debug)]
|
|
|
|
#[cfg_attr(feature = "full", derive(Identifiable, Queryable, Associations))]
|
|
|
|
#[cfg_attr(feature = "full", belongs_to(Community))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "community_moderator")]
|
2020-12-21 12:28:12 +00:00
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[derive(Clone)]
|
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "community_moderator")]
|
2020-12-21 12:28:12 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[derive(PartialEq, Debug)]
|
|
|
|
#[cfg_attr(feature = "full", derive(Identifiable, Queryable, Associations))]
|
|
|
|
#[cfg_attr(feature = "full", belongs_to(Community))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "community_person_ban")]
|
2021-02-26 13:49:58 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[derive(Clone)]
|
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "community_person_ban")]
|
2021-02-26 13:49:58 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[derive(PartialEq, Debug)]
|
|
|
|
#[cfg_attr(feature = "full", derive(Identifiable, Queryable, Associations))]
|
|
|
|
#[cfg_attr(feature = "full", belongs_to(Community))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "community_follower")]
|
2020-12-21 12:28:12 +00:00
|
|
|
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,
|
2022-05-26 15:17:04 +00:00
|
|
|
pub pending: Option<bool>,
|
2020-12-21 12:28:12 +00:00
|
|
|
}
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[derive(Clone)]
|
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "community_follower")]
|
2020-12-21 12:28:12 +00:00
|
|
|
pub struct CommunityFollowerForm {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub community_id: CommunityId,
|
|
|
|
pub person_id: PersonId,
|
2022-05-17 18:02:48 +00:00
|
|
|
pub pending: bool,
|
2020-12-21 12:28:12 +00:00
|
|
|
}
|