2022-10-27 09:24:07 +00:00
|
|
|
use crate::newtypes::{CommunityId, DbUrl, InstanceId, PersonId};
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use crate::schema::{community, community_follower, community_moderator, community_person_ban};
|
2022-11-02 19:18:22 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use typed_builder::TypedBuilder;
|
2022-05-03 17:44:13 +00:00
|
|
|
|
2022-09-26 14:09:32 +00:00
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(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,
|
2022-10-27 09:24:07 +00:00
|
|
|
pub instance_id: InstanceId,
|
2020-12-21 12:28:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// A safe representation of community, without the sensitive info
|
2022-09-26 14:09:32 +00:00
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(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,
|
2022-10-27 09:24:07 +00:00
|
|
|
pub instance_id: InstanceId,
|
2020-12-21 12:28:12 +00:00
|
|
|
}
|
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
#[derive(Debug, Clone, TypedBuilder)]
|
|
|
|
#[builder(field_defaults(default))]
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = community))]
|
2022-10-27 09:24:07 +00:00
|
|
|
pub struct CommunityInsertForm {
|
|
|
|
#[builder(!default)]
|
2020-12-21 12:28:12 +00:00
|
|
|
pub name: String,
|
2022-10-27 09:24:07 +00:00
|
|
|
#[builder(!default)]
|
2020-12-21 12:28:12 +00:00
|
|
|
pub title: String,
|
2022-10-27 09:24:07 +00:00
|
|
|
pub description: Option<String>,
|
2020-12-21 12:28:12 +00:00
|
|
|
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>,
|
2022-10-27 09:24:07 +00:00
|
|
|
pub private_key: Option<String>,
|
|
|
|
pub public_key: String,
|
|
|
|
pub last_refreshed_at: Option<chrono::NaiveDateTime>,
|
|
|
|
pub icon: Option<DbUrl>,
|
|
|
|
pub banner: Option<DbUrl>,
|
|
|
|
pub followers_url: Option<DbUrl>,
|
|
|
|
pub inbox_url: Option<DbUrl>,
|
|
|
|
pub shared_inbox_url: Option<DbUrl>,
|
|
|
|
pub hidden: Option<bool>,
|
|
|
|
pub posting_restricted_to_mods: Option<bool>,
|
|
|
|
#[builder(!default)]
|
|
|
|
pub instance_id: InstanceId,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, TypedBuilder)]
|
|
|
|
#[builder(field_defaults(default))]
|
|
|
|
#[cfg_attr(feature = "full", derive(AsChangeset))]
|
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = community))]
|
|
|
|
pub struct CommunityUpdateForm {
|
|
|
|
pub title: Option<String>,
|
|
|
|
pub description: Option<Option<String>>,
|
|
|
|
pub removed: Option<bool>,
|
|
|
|
pub published: Option<chrono::NaiveDateTime>,
|
|
|
|
pub updated: Option<Option<chrono::NaiveDateTime>>,
|
|
|
|
pub deleted: Option<bool>,
|
|
|
|
pub nsfw: Option<bool>,
|
|
|
|
pub actor_id: Option<DbUrl>,
|
|
|
|
pub local: Option<bool>,
|
2022-07-11 18:25:33 +00:00
|
|
|
pub public_key: Option<String>,
|
2022-10-27 09:24:07 +00:00
|
|
|
pub private_key: Option<Option<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-09-26 14:09:32 +00:00
|
|
|
#[derive(PartialEq, Eq, Debug)]
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Identifiable, Queryable, Associations))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(
|
|
|
|
feature = "full",
|
|
|
|
diesel(belongs_to(crate::source::community::Community))
|
|
|
|
)]
|
|
|
|
#[cfg_attr(feature = "full", diesel(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))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(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-09-26 14:09:32 +00:00
|
|
|
#[derive(PartialEq, Eq, Debug)]
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Identifiable, Queryable, Associations))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(
|
|
|
|
feature = "full",
|
|
|
|
diesel(belongs_to(crate::source::community::Community))
|
|
|
|
)]
|
|
|
|
#[cfg_attr(feature = "full", diesel(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))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(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-09-26 14:09:32 +00:00
|
|
|
#[derive(PartialEq, Eq, Debug)]
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Identifiable, Queryable, Associations))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(
|
|
|
|
feature = "full",
|
|
|
|
diesel(belongs_to(crate::source::community::Community))
|
|
|
|
)]
|
|
|
|
#[cfg_attr(feature = "full", diesel(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))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(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
|
|
|
}
|