2023-09-05 09:33:46 +00:00
|
|
|
use actix_web::web::{Data, Json};
|
2022-04-13 18:12:25 +00:00
|
|
|
use lemmy_api_common::{
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2022-04-13 18:12:25 +00:00
|
|
|
post::{PostResponse, SavePost},
|
2023-09-21 10:42:28 +00:00
|
|
|
utils::mark_post_as_read,
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::post::{PostSaved, PostSavedForm},
|
|
|
|
traits::Saveable,
|
|
|
|
};
|
2023-09-21 10:42:28 +00:00
|
|
|
use lemmy_db_views::structs::{LocalUserView, PostView};
|
2023-07-10 14:50:07 +00:00
|
|
|
use lemmy_utils::error::{LemmyError, LemmyErrorExt, LemmyErrorType};
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-09-05 09:33:46 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
pub async fn save_post(
|
|
|
|
data: Json<SavePost>,
|
|
|
|
context: Data<LemmyContext>,
|
2023-09-21 10:42:28 +00:00
|
|
|
local_user_view: LocalUserView,
|
2023-09-05 09:33:46 +00:00
|
|
|
) -> Result<Json<PostResponse>, LemmyError> {
|
|
|
|
let post_saved_form = PostSavedForm {
|
|
|
|
post_id: data.post_id,
|
|
|
|
person_id: local_user_view.person.id,
|
|
|
|
};
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-09-05 09:33:46 +00:00
|
|
|
if data.save {
|
|
|
|
PostSaved::save(&mut context.pool(), &post_saved_form)
|
|
|
|
.await
|
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntSavePost)?;
|
|
|
|
} else {
|
|
|
|
PostSaved::unsave(&mut context.pool(), &post_saved_form)
|
|
|
|
.await
|
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntSavePost)?;
|
|
|
|
}
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-09-05 09:33:46 +00:00
|
|
|
let post_id = data.post_id;
|
|
|
|
let person_id = local_user_view.person.id;
|
|
|
|
let post_view = PostView::read(&mut context.pool(), post_id, Some(person_id), false).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-09-05 09:33:46 +00:00
|
|
|
// Mark the post as read
|
|
|
|
mark_post_as_read(person_id, post_id, &mut context.pool()).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-09-05 09:33:46 +00:00
|
|
|
Ok(Json(PostResponse { post_view }))
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|