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-11-21 13:42:28 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Queryable, Selectable, Identifiable, TS))]
|
2022-10-27 09:24:07 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = local_site_rate_limit))]
|
Remove id column and use different primary key on some tables (#4093)
* post_saved
* fmt
* remove unique and not null
* put person_id first in primary key and remove index
* use post_saved.find
* change captcha_answer
* remove removal of not null
* comment_aggregates
* comment_like
* comment_saved
* aggregates
* remove "\"
* deduplicate site_aggregates
* person_post_aggregates
* community_moderator
* community_block
* community_person_ban
* custom_emoji_keyword
* federation allow/block list
* federation_queue_state
* instance_block
* local_site_rate_limit, local_user_language, login_token
* person_ban, person_block, person_follower, post_like, post_read, received_activity
* community_follower, community_language, site_language
* fmt
* image_upload
* remove unused newtypes
* remove more indexes
* use .find
* merge
* fix site_aggregates_site function
* fmt
* Primary keys dess (#17)
* Also order reports by oldest first (ref #4123) (#4129)
* Support signed fetch for federation (fixes #868) (#4125)
* Support signed fetch for federation (fixes #868)
* taplo
* add federation queue state to get_federated_instances api (#4104)
* add federation queue state to get_federated_instances api
* feature gate
* move retry sleep function
* move stuff around
* Add UI setting for collapsing bot comments. Fixes #3838 (#4098)
* Add UI setting for collapsing bot comments. Fixes #3838
* Fixing clippy check.
* Only keep sent and received activities for 7 days (fixes #4113, fixes #4110) (#4131)
* Only check auth secure on release mode. (#4127)
* Only check auth secure on release mode.
* Fixing wrong js-client.
* Adding is_debug_mode var.
* Fixing the desktop image on the README. (#4135)
* Delete dupes and add possibly missing unique constraint on person_aggregates.
* Fixing clippy lints.
---------
Co-authored-by: Nutomic <me@nutomic.com>
Co-authored-by: phiresky <phireskyde+git@gmail.com>
* fmt
* Update community_block.rs
* Update instance_block.rs
* Update person_block.rs
* Update person_block.rs
---------
Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
Co-authored-by: Nutomic <me@nutomic.com>
Co-authored-by: phiresky <phireskyde+git@gmail.com>
2023-11-13 13:14:07 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(primary_key(local_site_id)))]
|
2022-10-27 09:24:07 +00:00
|
|
|
#[cfg_attr(
|
|
|
|
feature = "full",
|
|
|
|
diesel(belongs_to(crate::source::local_site::LocalSite))
|
|
|
|
)]
|
2023-11-21 13:42:28 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(check_for_backend(diesel::pg::Pg)))]
|
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 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>>,
|
2023-10-11 14:47:22 +00:00
|
|
|
pub import_user_settings: i32,
|
|
|
|
pub import_user_settings_per_second: i32,
|
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-10-11 14:47:22 +00:00
|
|
|
pub import_user_settings: Option<i32>,
|
|
|
|
pub import_user_settings_per_second: Option<i32>,
|
2022-10-27 09:24:07 +00:00
|
|
|
}
|
|
|
|
|
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-10-11 14:47:22 +00:00
|
|
|
pub import_user_settings: Option<i32>,
|
|
|
|
pub import_user_settings_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
|
|
|
}
|