Nutomic
2ef0f8f5f8
* implement language tags for site/community in db and api * add api checks for valid languages * during db migration, update existing users, sites, communities to have all languages enabled * init new users/communities with site languages (not all languages) * federate site/community languages * fix tests * when updating site languages, limit community languages to this subset also, when making a new post and subset of user lang, community lang contains only one item, use that as post lang * add tests for actor_language db functions * include language list in siteview/communityview * Fix some of the review comments * Some more review changes * Add todo about boxed query * Add default_post_language to GetCommunityResponse
68 lines
2.4 KiB
Rust
68 lines
2.4 KiB
Rust
use crate::newtypes::{DbUrl, SiteId};
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[cfg(feature = "full")]
|
|
use crate::schema::site;
|
|
|
|
#[derive(PartialEq, Eq, Debug, Clone, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = site))]
|
|
pub struct Site {
|
|
pub id: SiteId,
|
|
pub name: String,
|
|
pub sidebar: Option<String>,
|
|
pub published: chrono::NaiveDateTime,
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
pub enable_downvotes: bool,
|
|
pub open_registration: bool,
|
|
pub enable_nsfw: bool,
|
|
pub icon: Option<DbUrl>,
|
|
pub banner: Option<DbUrl>,
|
|
pub description: Option<String>,
|
|
pub community_creation_admin_only: bool,
|
|
pub require_email_verification: bool,
|
|
pub require_application: bool,
|
|
pub application_question: Option<String>,
|
|
pub private_instance: bool,
|
|
pub actor_id: DbUrl,
|
|
pub last_refreshed_at: chrono::NaiveDateTime,
|
|
pub inbox_url: DbUrl,
|
|
pub private_key: Option<String>,
|
|
pub public_key: String,
|
|
pub default_theme: String,
|
|
pub default_post_listing_type: String,
|
|
pub legal_information: Option<String>,
|
|
pub application_email_admins: bool,
|
|
pub hide_modlog_mod_names: bool,
|
|
}
|
|
|
|
#[derive(Default)]
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = site))]
|
|
pub struct SiteForm {
|
|
pub name: String,
|
|
pub sidebar: Option<Option<String>>,
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
pub enable_downvotes: Option<bool>,
|
|
pub open_registration: Option<bool>,
|
|
pub enable_nsfw: Option<bool>,
|
|
// 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.
|
|
pub icon: Option<Option<DbUrl>>,
|
|
pub banner: Option<Option<DbUrl>>,
|
|
pub description: Option<Option<String>>,
|
|
pub community_creation_admin_only: Option<bool>,
|
|
pub require_email_verification: Option<bool>,
|
|
pub require_application: Option<bool>,
|
|
pub application_question: Option<Option<String>>,
|
|
pub private_instance: Option<bool>,
|
|
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>,
|
|
pub default_theme: Option<String>,
|
|
pub default_post_listing_type: Option<String>,
|
|
pub legal_information: Option<Option<String>>,
|
|
pub application_email_admins: Option<bool>,
|
|
pub hide_modlog_mod_names: Option<bool>,
|
|
}
|