use crate::newtypes::LocalSiteId; #[cfg(feature = "full")] use crate::schema::local_site_rate_limit; use chrono::{DateTime, Utc}; use serde::{Deserialize, Serialize}; use serde_with::skip_serializing_none; #[cfg(feature = "full")] use ts_rs::TS; use typed_builder::TypedBuilder; #[skip_serializing_none] #[derive(PartialEq, Eq, Debug, Clone, Serialize, Deserialize)] #[cfg_attr(feature = "full", derive(Queryable, Identifiable, TS))] #[cfg_attr(feature = "full", diesel(table_name = local_site_rate_limit))] #[cfg_attr( feature = "full", diesel(belongs_to(crate::source::local_site::LocalSite)) )] #[cfg_attr(feature = "full", ts(export))] /// Rate limits for your site. Given in count / length of time. pub struct LocalSiteRateLimit { pub id: i32, pub local_site_id: LocalSiteId, pub message: i32, pub message_per_second: i32, pub post: i32, pub post_per_second: i32, pub register: i32, pub register_per_second: i32, pub image: i32, pub image_per_second: i32, pub comment: i32, pub comment_per_second: i32, pub search: i32, pub search_per_second: i32, pub published: DateTime, pub updated: Option>, pub import_user_settings: i32, pub import_user_settings_per_second: i32, } #[derive(Clone, TypedBuilder)] #[builder(field_defaults(default))] #[cfg_attr(feature = "full", derive(Insertable))] #[cfg_attr(feature = "full", diesel(table_name = local_site_rate_limit))] pub struct LocalSiteRateLimitInsertForm { #[builder(!default)] pub local_site_id: LocalSiteId, pub message: Option, pub message_per_second: Option, pub post: Option, pub post_per_second: Option, pub register: Option, pub register_per_second: Option, pub image: Option, pub image_per_second: Option, pub comment: Option, pub comment_per_second: Option, pub search: Option, pub search_per_second: Option, pub import_user_settings: Option, pub import_user_settings_per_second: Option, } #[derive(Clone, Default)] #[cfg_attr(feature = "full", derive(AsChangeset))] #[cfg_attr(feature = "full", diesel(table_name = local_site_rate_limit))] pub struct LocalSiteRateLimitUpdateForm { pub message: Option, pub message_per_second: Option, pub post: Option, pub post_per_second: Option, pub register: Option, pub register_per_second: Option, pub image: Option, pub image_per_second: Option, pub comment: Option, pub comment_per_second: Option, pub search: Option, pub search_per_second: Option, pub import_user_settings: Option, pub import_user_settings_per_second: Option, pub updated: Option>>, }