2022-10-27 09:24:07 +00:00
|
|
|
use crate::newtypes::LocalSiteId;
|
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use crate::schema::local_site_rate_limit;
|
2023-08-24 15:27:00 +00:00
|
|
|
use chrono::{DateTime, Utc};
|
2022-11-02 19:18:22 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2023-04-26 04:26:10 +00:00
|
|
|
use serde_with::skip_serializing_none;
|
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use ts_rs::TS;
|
2022-11-02 19:18:22 +00:00
|
|
|
use typed_builder::TypedBuilder;
|
2022-10-27 09:24:07 +00:00
|
|
|
|
2023-04-26 04:26:10 +00:00
|
|
|
#[skip_serializing_none]
|
2022-10-27 09:24:07 +00:00
|
|
|
#[derive(PartialEq, Eq, Debug, Clone, Serialize, Deserialize)]
|
2023-04-26 04:26:10 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable, TS))]
|
2022-10-27 09:24:07 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = local_site_rate_limit))]
|
|
|
|
#[cfg_attr(
|
|
|
|
feature = "full",
|
|
|
|
diesel(belongs_to(crate::source::local_site::LocalSite))
|
|
|
|
)]
|
2023-04-26 04:26:10 +00:00
|
|
|
#[cfg_attr(feature = "full", ts(export))]
|
2023-05-10 19:20:39 +00:00
|
|
|
/// Rate limits for your site. Given in count / length of time.
|
2022-10-27 09:24:07 +00:00
|
|
|
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,
|
2023-08-24 15:27:00 +00:00
|
|
|
pub published: DateTime<Utc>,
|
|
|
|
pub updated: Option<DateTime<Utc>>,
|
2022-10-27 09:24:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[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>,
|
|
|
|
}
|
|
|
|
|
2023-08-08 09:41:41 +00:00
|
|
|
#[derive(Clone, Default)]
|
2022-10-27 09:24:07 +00:00
|
|
|
#[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>,
|
2023-08-24 15:27:00 +00:00
|
|
|
pub updated: Option<Option<DateTime<Utc>>>,
|
2022-10-27 09:24:07 +00:00
|
|
|
}
|