mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-31 17:50:01 +00:00
235cc8b228
* Moving settings to Database. - Moves many settings into the database. Fixes #2285 - Adds a local_site and instance table. Fixes #2365 . Fixes #2368 - Separates SQL update an insert forms, to avoid runtime errors. - Adds TypedBuilder to all the SQL forms, instead of default. * Fix weird clippy issue. * Removing extra lines. * Some fixes from suggestions. * Fixing apub tests. * Using instance creation helper function. * Move forms to their own line. * Trying to fix local_site_data, still broken. * Fixing federation tests. * Trying to fix check features 1. * Addressing PR comments. * Adding check_apub to all verify functions.
73 lines
2.2 KiB
Rust
73 lines
2.2 KiB
Rust
use crate::newtypes::LocalSiteId;
|
|
use serde::{Deserialize, Serialize};
|
|
use typed_builder::TypedBuilder;
|
|
|
|
#[cfg(feature = "full")]
|
|
use crate::schema::local_site_rate_limit;
|
|
|
|
#[derive(PartialEq, Eq, Debug, Clone, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = local_site_rate_limit))]
|
|
#[cfg_attr(
|
|
feature = "full",
|
|
diesel(belongs_to(crate::source::local_site::LocalSite))
|
|
)]
|
|
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: chrono::NaiveDateTime,
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
}
|
|
|
|
#[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<i32>,
|
|
pub message_per_second: Option<i32>,
|
|
pub post: Option<i32>,
|
|
pub post_per_second: Option<i32>,
|
|
pub register: Option<i32>,
|
|
pub register_per_second: Option<i32>,
|
|
pub image: Option<i32>,
|
|
pub image_per_second: Option<i32>,
|
|
pub comment: Option<i32>,
|
|
pub comment_per_second: Option<i32>,
|
|
pub search: Option<i32>,
|
|
pub search_per_second: Option<i32>,
|
|
}
|
|
|
|
#[derive(Clone, TypedBuilder)]
|
|
#[builder(field_defaults(default))]
|
|
#[cfg_attr(feature = "full", derive(AsChangeset))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = local_site_rate_limit))]
|
|
pub struct LocalSiteRateLimitUpdateForm {
|
|
pub message: Option<i32>,
|
|
pub message_per_second: Option<i32>,
|
|
pub post: Option<i32>,
|
|
pub post_per_second: Option<i32>,
|
|
pub register: Option<i32>,
|
|
pub register_per_second: Option<i32>,
|
|
pub image: Option<i32>,
|
|
pub image_per_second: Option<i32>,
|
|
pub comment: Option<i32>,
|
|
pub comment_per_second: Option<i32>,
|
|
pub search: Option<i32>,
|
|
pub search_per_second: Option<i32>,
|
|
pub updated: Option<Option<chrono::NaiveDateTime>>,
|
|
}
|