lemmy/crates/api/src/post/mark_read.rs

33 lines
957 B
Rust
Raw Normal View History

use actix_web::web::{Data, Json};
2022-04-13 18:12:25 +00:00
use lemmy_api_common::{
context::LemmyContext,
2022-04-13 18:12:25 +00:00
post::{MarkPostAsRead, PostResponse},
utils,
utils::local_user_view_from_jwt,
2022-04-13 18:12:25 +00:00
};
use lemmy_db_views::structs::PostView;
use lemmy_utils::error::LemmyError;
2022-04-13 18:12:25 +00:00
#[tracing::instrument(skip(context))]
pub async fn mark_post_as_read(
data: Json<MarkPostAsRead>,
context: Data<LemmyContext>,
) -> Result<Json<PostResponse>, LemmyError> {
let local_user_view = local_user_view_from_jwt(&data.auth, &context).await?;
2022-04-13 18:12:25 +00:00
let post_id = data.post_id;
let person_id = local_user_view.person.id;
2022-04-13 18:12:25 +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
// 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
Ok(Json(PostResponse { post_view }))
2022-04-13 18:12:25 +00:00
}