d8722b6e91
* Adding diesel enums for SortType and ListingType - Uses diesel-derive-enum. - Adds diesel.toml , so we can again use the auto-generated schema.rs - Fixes a lot of DB null issues and column ordering issues. - Fixes #1136 - Also replaces RegistrationMode boilerplate. * Fixing unit tests 1. * Remove comment line. * Before patch. * Before again. * Using patch file to fix diesel_ltree issue with diesel.toml * Adding some yalc ignores * Fixing RegistrationMode enums * Adding woodpecker diesel schema check. * Try adding openssl 1. * Try using diesel-cli image 1 * Try using diesel-cli image 2 * Try using diesel-cli image 3 * Try using diesel-cli image 4 * Try using diesel-cli image 5 * Try using diesel-cli image 6 * Try using diesel-cli image 7 * Try using diesel-cli image 8 * Try using diesel-cli image 9 * Try using diesel-cli image 10 * Try using diesel-cli image 11 * Try using diesel-cli image 12 * Try using diesel-cli image 13
176 lines
5.6 KiB
Rust
176 lines
5.6 KiB
Rust
use crate::newtypes::{CommunityId, DbUrl, InstanceId, PersonId};
|
|
#[cfg(feature = "full")]
|
|
use crate::schema::{community, community_follower, community_moderator, community_person_ban};
|
|
use serde::{Deserialize, Serialize};
|
|
use typed_builder::TypedBuilder;
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = community))]
|
|
pub struct Community {
|
|
pub id: CommunityId,
|
|
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,
|
|
pub actor_id: DbUrl,
|
|
pub local: bool,
|
|
#[serde(skip)]
|
|
pub private_key: Option<String>,
|
|
#[serde(skip)]
|
|
pub public_key: String,
|
|
#[serde(skip)]
|
|
pub last_refreshed_at: chrono::NaiveDateTime,
|
|
pub icon: Option<DbUrl>,
|
|
pub banner: Option<DbUrl>,
|
|
#[serde(skip_serializing)]
|
|
pub followers_url: DbUrl,
|
|
#[serde(skip_serializing)]
|
|
pub inbox_url: DbUrl,
|
|
#[serde(skip)]
|
|
pub shared_inbox_url: Option<DbUrl>,
|
|
pub hidden: bool,
|
|
pub posting_restricted_to_mods: bool,
|
|
pub instance_id: InstanceId,
|
|
/// Url where moderators collection is served over Activitypub
|
|
#[serde(skip)]
|
|
pub moderators_url: Option<DbUrl>,
|
|
/// Url where featured posts collection is served over Activitypub
|
|
#[serde(skip)]
|
|
pub featured_url: Option<DbUrl>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, TypedBuilder)]
|
|
#[builder(field_defaults(default))]
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = community))]
|
|
pub struct CommunityInsertForm {
|
|
#[builder(!default)]
|
|
pub name: String,
|
|
#[builder(!default)]
|
|
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>,
|
|
pub nsfw: Option<bool>,
|
|
pub actor_id: Option<DbUrl>,
|
|
pub local: Option<bool>,
|
|
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 moderators_url: Option<DbUrl>,
|
|
pub featured_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>,
|
|
pub public_key: Option<String>,
|
|
pub private_key: Option<Option<String>>,
|
|
pub last_refreshed_at: Option<chrono::NaiveDateTime>,
|
|
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>>,
|
|
pub moderators_url: Option<DbUrl>,
|
|
pub featured_url: Option<DbUrl>,
|
|
pub hidden: Option<bool>,
|
|
pub posting_restricted_to_mods: Option<bool>,
|
|
}
|
|
|
|
#[derive(PartialEq, Eq, Debug)]
|
|
#[cfg_attr(feature = "full", derive(Identifiable, Queryable, Associations))]
|
|
#[cfg_attr(
|
|
feature = "full",
|
|
diesel(belongs_to(crate::source::community::Community))
|
|
)]
|
|
#[cfg_attr(feature = "full", diesel(table_name = community_moderator))]
|
|
pub struct CommunityModerator {
|
|
pub id: i32,
|
|
pub community_id: CommunityId,
|
|
pub person_id: PersonId,
|
|
pub published: chrono::NaiveDateTime,
|
|
}
|
|
|
|
#[derive(Clone)]
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = community_moderator))]
|
|
pub struct CommunityModeratorForm {
|
|
pub community_id: CommunityId,
|
|
pub person_id: PersonId,
|
|
}
|
|
|
|
#[derive(PartialEq, Eq, Debug)]
|
|
#[cfg_attr(feature = "full", derive(Identifiable, Queryable, Associations))]
|
|
#[cfg_attr(
|
|
feature = "full",
|
|
diesel(belongs_to(crate::source::community::Community))
|
|
)]
|
|
#[cfg_attr(feature = "full", diesel(table_name = community_person_ban))]
|
|
pub struct CommunityPersonBan {
|
|
pub id: i32,
|
|
pub community_id: CommunityId,
|
|
pub person_id: PersonId,
|
|
pub published: chrono::NaiveDateTime,
|
|
pub expires: Option<chrono::NaiveDateTime>,
|
|
}
|
|
|
|
#[derive(Clone)]
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = community_person_ban))]
|
|
pub struct CommunityPersonBanForm {
|
|
pub community_id: CommunityId,
|
|
pub person_id: PersonId,
|
|
pub expires: Option<Option<chrono::NaiveDateTime>>,
|
|
}
|
|
|
|
#[derive(PartialEq, Eq, Debug)]
|
|
#[cfg_attr(feature = "full", derive(Identifiable, Queryable, Associations))]
|
|
#[cfg_attr(
|
|
feature = "full",
|
|
diesel(belongs_to(crate::source::community::Community))
|
|
)]
|
|
#[cfg_attr(feature = "full", diesel(table_name = community_follower))]
|
|
pub struct CommunityFollower {
|
|
pub id: i32,
|
|
pub community_id: CommunityId,
|
|
pub person_id: PersonId,
|
|
pub published: chrono::NaiveDateTime,
|
|
pub pending: bool,
|
|
}
|
|
|
|
#[derive(Clone)]
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = community_follower))]
|
|
pub struct CommunityFollowerForm {
|
|
pub community_id: CommunityId,
|
|
pub person_id: PersonId,
|
|
pub pending: bool,
|
|
}
|