mirror of https://github.com/LemmyNet/lemmy.git
61 lines
1.8 KiB
Rust
61 lines
1.8 KiB
Rust
use crate::{
|
|
newtypes::CustomEmojiId,
|
|
schema::{
|
|
custom_emoji::dsl::custom_emoji,
|
|
custom_emoji_keyword::dsl::{custom_emoji_id, custom_emoji_keyword},
|
|
},
|
|
source::{
|
|
custom_emoji::{CustomEmoji, CustomEmojiInsertForm, CustomEmojiUpdateForm},
|
|
custom_emoji_keyword::{CustomEmojiKeyword, CustomEmojiKeywordInsertForm},
|
|
},
|
|
utils::{get_conn, DbPool},
|
|
};
|
|
use diesel::{dsl::insert_into, result::Error, ExpressionMethods, QueryDsl};
|
|
use diesel_async::RunQueryDsl;
|
|
|
|
impl CustomEmoji {
|
|
pub async fn create(pool: &mut DbPool<'_>, form: &CustomEmojiInsertForm) -> Result<Self, Error> {
|
|
let conn = &mut get_conn(pool).await?;
|
|
insert_into(custom_emoji)
|
|
.values(form)
|
|
.get_result::<Self>(conn)
|
|
.await
|
|
}
|
|
pub async fn update(
|
|
pool: &mut DbPool<'_>,
|
|
emoji_id: CustomEmojiId,
|
|
form: &CustomEmojiUpdateForm,
|
|
) -> Result<Self, Error> {
|
|
let conn = &mut get_conn(pool).await?;
|
|
diesel::update(custom_emoji.find(emoji_id))
|
|
.set(form)
|
|
.get_result::<Self>(conn)
|
|
.await
|
|
}
|
|
pub async fn delete(pool: &mut DbPool<'_>, emoji_id: CustomEmojiId) -> Result<usize, Error> {
|
|
let conn = &mut get_conn(pool).await?;
|
|
diesel::delete(custom_emoji.find(emoji_id))
|
|
.execute(conn)
|
|
.await
|
|
}
|
|
}
|
|
|
|
impl CustomEmojiKeyword {
|
|
pub async fn create(
|
|
pool: &mut DbPool<'_>,
|
|
form: Vec<CustomEmojiKeywordInsertForm>,
|
|
) -> Result<Vec<Self>, Error> {
|
|
let conn = &mut get_conn(pool).await?;
|
|
insert_into(custom_emoji_keyword)
|
|
.values(form)
|
|
.get_results::<Self>(conn)
|
|
.await
|
|
}
|
|
pub async fn delete(pool: &mut DbPool<'_>, emoji_id: CustomEmojiId) -> Result<usize, Error> {
|
|
let conn = &mut get_conn(pool).await?;
|
|
diesel::delete(custom_emoji_keyword.filter(custom_emoji_id.eq(emoji_id)))
|
|
.execute(conn)
|
|
.await
|
|
}
|
|
}
|