]> Untitled Git - lemmy.git/blob - crates/api/src/local_user/notifications/mark_reply_read.rs
Merge pull request #2593 from LemmyNet/refactor-notifications
[lemmy.git] / crates / api / src / local_user / notifications / mark_reply_read.rs
1 use crate::Perform;
2 use actix_web::web::Data;
3 use lemmy_api_common::{
4   context::LemmyContext,
5   person::{CommentReplyResponse, MarkCommentReplyAsRead},
6   utils::get_local_user_view_from_jwt,
7 };
8 use lemmy_db_schema::{
9   source::comment_reply::{CommentReply, CommentReplyUpdateForm},
10   traits::Crud,
11 };
12 use lemmy_db_views_actor::structs::CommentReplyView;
13 use lemmy_utils::{error::LemmyError, ConnectionId};
14
15 #[async_trait::async_trait(?Send)]
16 impl Perform for MarkCommentReplyAsRead {
17   type Response = CommentReplyResponse;
18
19   #[tracing::instrument(skip(context, _websocket_id))]
20   async fn perform(
21     &self,
22     context: &Data<LemmyContext>,
23     _websocket_id: Option<ConnectionId>,
24   ) -> Result<CommentReplyResponse, LemmyError> {
25     let data = self;
26     let local_user_view =
27       get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
28
29     let comment_reply_id = data.comment_reply_id;
30     let read_comment_reply = CommentReply::read(context.pool(), comment_reply_id).await?;
31
32     if local_user_view.person.id != read_comment_reply.recipient_id {
33       return Err(LemmyError::from_message("couldnt_update_comment"));
34     }
35
36     let comment_reply_id = read_comment_reply.id;
37     let read = Some(data.read);
38
39     CommentReply::update(
40       context.pool(),
41       comment_reply_id,
42       &CommentReplyUpdateForm { read },
43     )
44     .await
45     .map_err(|e| LemmyError::from_error_message(e, "couldnt_update_comment"))?;
46
47     let comment_reply_id = read_comment_reply.id;
48     let person_id = local_user_view.person.id;
49     let comment_reply_view =
50       CommentReplyView::read(context.pool(), comment_reply_id, Some(person_id)).await?;
51
52     Ok(CommentReplyResponse { comment_reply_view })
53   }
54 }