mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-15 17:03:59 +00:00
Nutomic
c3fbb7702f
* Fix error during site creation due to empty LocalSiteRateLimit update * Move main function into lib.rs, to allow calling from other crates Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
56 lines
1.6 KiB
Rust
56 lines
1.6 KiB
Rust
use crate::{
|
|
schema::local_site_rate_limit,
|
|
source::local_site_rate_limit::{
|
|
LocalSiteRateLimit,
|
|
LocalSiteRateLimitInsertForm,
|
|
LocalSiteRateLimitUpdateForm,
|
|
},
|
|
utils::{get_conn, DbPool},
|
|
};
|
|
use diesel::{dsl::insert_into, result::Error};
|
|
use diesel_async::RunQueryDsl;
|
|
|
|
impl LocalSiteRateLimit {
|
|
pub async fn read(pool: &DbPool) -> Result<Self, Error> {
|
|
let conn = &mut get_conn(pool).await?;
|
|
local_site_rate_limit::table.first::<Self>(conn).await
|
|
}
|
|
|
|
pub async fn create(pool: &DbPool, form: &LocalSiteRateLimitInsertForm) -> Result<Self, Error> {
|
|
let conn = &mut get_conn(pool).await?;
|
|
insert_into(local_site_rate_limit::table)
|
|
.values(form)
|
|
.get_result::<Self>(conn)
|
|
.await
|
|
}
|
|
pub async fn update(pool: &DbPool, form: &LocalSiteRateLimitUpdateForm) -> Result<(), Error> {
|
|
// avoid error "There are no changes to save. This query cannot be built"
|
|
if form.is_empty() {
|
|
return Ok(());
|
|
}
|
|
let conn = &mut get_conn(pool).await?;
|
|
diesel::update(local_site_rate_limit::table)
|
|
.set(form)
|
|
.get_result::<Self>(conn)
|
|
.await?;
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
impl LocalSiteRateLimitUpdateForm {
|
|
fn is_empty(&self) -> bool {
|
|
self.message.is_none()
|
|
&& self.message_per_second.is_none()
|
|
&& self.post.is_none()
|
|
&& self.post_per_second.is_none()
|
|
&& self.register.is_none()
|
|
&& self.register_per_second.is_none()
|
|
&& self.image.is_none()
|
|
&& self.image_per_second.is_none()
|
|
&& self.comment.is_none()
|
|
&& self.comment_per_second.is_none()
|
|
&& self.search.is_none()
|
|
&& self.search_per_second.is_none()
|
|
&& self.updated.is_none()
|
|
}
|
|
}
|