mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-25 13:51:19 +00:00
43 lines
1.4 KiB
Rust
43 lines
1.4 KiB
Rust
use activitypub_federation::config::Data;
|
|
use actix_web::web::Json;
|
|
use lemmy_api_common::{
|
|
context::LemmyContext,
|
|
custom_emoji::{CustomEmojiResponse, EditCustomEmoji},
|
|
utils::is_admin,
|
|
};
|
|
use lemmy_db_schema::{
|
|
source::{
|
|
custom_emoji::{CustomEmoji, CustomEmojiUpdateForm},
|
|
custom_emoji_keyword::{CustomEmojiKeyword, CustomEmojiKeywordInsertForm},
|
|
},
|
|
traits::Crud,
|
|
};
|
|
use lemmy_db_views::structs::{CustomEmojiView, LocalUserView};
|
|
use lemmy_utils::error::LemmyResult;
|
|
|
|
#[tracing::instrument(skip(context))]
|
|
pub async fn update_custom_emoji(
|
|
data: Json<EditCustomEmoji>,
|
|
context: Data<LemmyContext>,
|
|
local_user_view: LocalUserView,
|
|
) -> LemmyResult<Json<CustomEmojiResponse>> {
|
|
// Make sure user is an admin
|
|
is_admin(&local_user_view)?;
|
|
|
|
let emoji_form = CustomEmojiUpdateForm::new(
|
|
data.clone().image_url.into(),
|
|
data.alt_text.to_string(),
|
|
data.category.to_string(),
|
|
);
|
|
let emoji = CustomEmoji::update(&mut context.pool(), data.id, &emoji_form).await?;
|
|
CustomEmojiKeyword::delete(&mut context.pool(), data.id).await?;
|
|
let mut keywords = vec![];
|
|
for keyword in &data.keywords {
|
|
let keyword_form =
|
|
CustomEmojiKeywordInsertForm::new(emoji.id, keyword.to_lowercase().trim().to_string());
|
|
keywords.push(keyword_form);
|
|
}
|
|
CustomEmojiKeyword::create(&mut context.pool(), keywords).await?;
|
|
let view = CustomEmojiView::get(&mut context.pool(), emoji.id).await?;
|
|
Ok(Json(CustomEmojiResponse { custom_emoji: view }))
|
|
}
|