2022-05-03 17:44:13 +00:00
|
|
|
use crate::newtypes::DbUrl;
|
2021-10-19 16:37:01 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2020-12-21 13:38:34 +00:00
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use crate::schema::site;
|
|
|
|
|
|
|
|
#[derive(PartialEq, Debug, Clone, Serialize, Deserialize)]
|
|
|
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "site")]
|
2020-12-21 13:38:34 +00:00
|
|
|
pub struct Site {
|
|
|
|
pub id: i32,
|
|
|
|
pub name: String,
|
2021-04-07 11:40:35 +00:00
|
|
|
pub sidebar: Option<String>,
|
2020-12-21 13:38:34 +00:00
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
pub enable_downvotes: bool,
|
|
|
|
pub open_registration: bool,
|
|
|
|
pub enable_nsfw: bool,
|
2021-03-02 12:41:48 +00:00
|
|
|
pub icon: Option<DbUrl>,
|
|
|
|
pub banner: Option<DbUrl>,
|
2021-04-07 11:40:35 +00:00
|
|
|
pub description: Option<String>,
|
2021-04-22 23:42:58 +00:00
|
|
|
pub community_creation_admin_only: bool,
|
2021-12-15 19:49:59 +00:00
|
|
|
pub require_email_verification: bool,
|
|
|
|
pub require_application: bool,
|
|
|
|
pub application_question: Option<String>,
|
|
|
|
pub private_instance: bool,
|
2022-02-07 19:23:12 +00:00
|
|
|
pub actor_id: DbUrl,
|
|
|
|
pub last_refreshed_at: chrono::NaiveDateTime,
|
|
|
|
pub inbox_url: DbUrl,
|
|
|
|
pub private_key: Option<String>,
|
|
|
|
pub public_key: String,
|
2022-02-23 16:40:36 +00:00
|
|
|
pub default_theme: String,
|
2022-04-19 19:05:08 +00:00
|
|
|
pub default_post_listing_type: String,
|
2020-12-21 13:38:34 +00:00
|
|
|
}
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[derive(Default)]
|
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "site")]
|
2020-12-21 13:38:34 +00:00
|
|
|
pub struct SiteForm {
|
|
|
|
pub name: String,
|
2021-04-15 03:37:51 +00:00
|
|
|
pub sidebar: Option<Option<String>>,
|
2020-12-21 13:38:34 +00:00
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
2021-04-15 03:37:51 +00:00
|
|
|
pub enable_downvotes: Option<bool>,
|
|
|
|
pub open_registration: Option<bool>,
|
|
|
|
pub enable_nsfw: Option<bool>,
|
2020-12-21 13:38:34 +00:00
|
|
|
// when you want to null out a column, you have to send Some(None)), since sending None means you just don't want to update that column.
|
2021-03-02 12:41:48 +00:00
|
|
|
pub icon: Option<Option<DbUrl>>,
|
|
|
|
pub banner: Option<Option<DbUrl>>,
|
2021-04-07 11:40:35 +00:00
|
|
|
pub description: Option<Option<String>>,
|
2021-04-22 23:42:58 +00:00
|
|
|
pub community_creation_admin_only: Option<bool>,
|
2021-12-15 19:49:59 +00:00
|
|
|
pub require_email_verification: Option<bool>,
|
|
|
|
pub require_application: Option<bool>,
|
|
|
|
pub application_question: Option<Option<String>>,
|
|
|
|
pub private_instance: Option<bool>,
|
2022-02-07 19:23:12 +00:00
|
|
|
pub actor_id: Option<DbUrl>,
|
|
|
|
pub last_refreshed_at: Option<chrono::NaiveDateTime>,
|
|
|
|
pub inbox_url: Option<DbUrl>,
|
|
|
|
pub private_key: Option<Option<String>>,
|
|
|
|
pub public_key: Option<String>,
|
2022-02-23 16:40:36 +00:00
|
|
|
pub default_theme: Option<String>,
|
2022-04-19 19:05:08 +00:00
|
|
|
pub default_post_listing_type: Option<String>,
|
2020-12-21 13:38:34 +00:00
|
|
|
}
|