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::{MarkPostAsRead, PostResponse},
|
2023-09-05 09:33:46 +00:00
|
|
|
utils,
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
2023-09-21 10:42:28 +00:00
|
|
|
use lemmy_db_views::structs::{LocalUserView, PostView};
|
2023-06-06 16:27:22 +00:00
|
|
|
use lemmy_utils::error::LemmyError;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-09-05 09:33:46 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
pub async fn mark_post_as_read(
|
|
|
|
data: Json<MarkPostAsRead>,
|
|
|
|
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_id = data.post_id;
|
|
|
|
let person_id = local_user_view.person.id;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-09-05 09:33:46 +00:00
|
|
|
// Mark the post as read / unread
|
|
|
|
if data.read {
|
|
|
|
utils::mark_post_as_read(person_id, post_id, &mut context.pool()).await?;
|
|
|
|
} else {
|
|
|
|
utils::mark_post_as_unread(person_id, post_id, &mut context.pool()).await?;
|
|
|
|
}
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-09-05 09:33:46 +00:00
|
|
|
// Fetch it
|
|
|
|
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
|
|
|
Ok(Json(PostResponse { post_view }))
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|