2023-07-28 14:39:38 +00:00
|
|
|
use actix_web::web::{Data, Json};
|
2022-04-13 18:12:25 +00:00
|
|
|
use lemmy_api_common::{
|
|
|
|
comment::{CommentResponse, SaveComment},
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2023-05-25 14:50:07 +00:00
|
|
|
utils::local_user_view_from_jwt,
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::comment::{CommentSaved, CommentSavedForm},
|
|
|
|
traits::Saveable,
|
|
|
|
};
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_views::structs::CommentView;
|
2023-07-10 14:50:07 +00:00
|
|
|
use lemmy_utils::error::{LemmyError, LemmyErrorExt, LemmyErrorType};
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-07-28 14:39:38 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
pub async fn save_comment(
|
|
|
|
data: Json<SaveComment>,
|
|
|
|
context: Data<LemmyContext>,
|
|
|
|
) -> Result<Json<CommentResponse>, LemmyError> {
|
|
|
|
let local_user_view = local_user_view_from_jwt(&data.auth, &context).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-07-28 14:39:38 +00:00
|
|
|
let comment_saved_form = CommentSavedForm {
|
|
|
|
comment_id: data.comment_id,
|
|
|
|
person_id: local_user_view.person.id,
|
|
|
|
};
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-07-28 14:39:38 +00:00
|
|
|
if data.save {
|
|
|
|
CommentSaved::save(&mut context.pool(), &comment_saved_form)
|
|
|
|
.await
|
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntSaveComment)?;
|
|
|
|
} else {
|
|
|
|
CommentSaved::unsave(&mut context.pool(), &comment_saved_form)
|
|
|
|
.await
|
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntSaveComment)?;
|
|
|
|
}
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-07-28 14:39:38 +00:00
|
|
|
let comment_id = data.comment_id;
|
|
|
|
let person_id = local_user_view.person.id;
|
|
|
|
let comment_view = CommentView::read(&mut context.pool(), comment_id, Some(person_id)).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-07-28 14:39:38 +00:00
|
|
|
Ok(Json(CommentResponse {
|
|
|
|
comment_view,
|
|
|
|
recipient_ids: Vec::new(),
|
|
|
|
}))
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|