lemmy/crates/api/src/comment.rs

217 lines
6.2 KiB
Rust
Raw Normal View History

use crate::Perform;
use actix_web::web::Data;
use lemmy_api_common::{
blocking,
check_community_ban,
check_downvotes_enabled,
comment::*,
2021-03-10 22:33:55 +00:00
get_local_user_view_from_jwt,
2020-05-16 14:04:08 +00:00
};
use lemmy_apub::ApubLikeableType;
use lemmy_db_queries::{source::comment::Comment_, Likeable, Saveable};
use lemmy_db_schema::{source::comment::*, LocalUserId};
use lemmy_db_views::{comment_view::CommentView, local_user_view::LocalUserView};
use lemmy_utils::{ApiError, ConnectionId, LemmyError};
use lemmy_websocket::{messages::SendComment, LemmyContext, UserOperation};
2019-05-05 05:20:38 +00:00
2020-07-21 01:37:44 +00:00
#[async_trait::async_trait(?Send)]
impl Perform for MarkCommentAsRead {
2020-07-21 01:37:44 +00:00
type Response = CommentResponse;
async fn perform(
&self,
context: &Data<LemmyContext>,
_websocket_id: Option<ConnectionId>,
2020-07-21 01:37:44 +00:00
) -> Result<CommentResponse, LemmyError> {
let data: &MarkCommentAsRead = &self;
2021-03-10 22:33:55 +00:00
let local_user_view = get_local_user_view_from_jwt(&data.auth, context.pool()).await?;
2020-07-21 01:37:44 +00:00
let comment_id = data.comment_id;
let orig_comment = blocking(context.pool(), move |conn| {
CommentView::read(&conn, comment_id, None)
})
.await??;
2020-07-21 01:37:44 +00:00
2021-03-11 04:43:11 +00:00
check_community_ban(
local_user_view.person.id,
orig_comment.community.id,
context.pool(),
)
.await?;
2020-07-21 01:37:44 +00:00
// Verify that only the recipient can mark as read
2021-03-10 22:33:55 +00:00
if local_user_view.person.id != orig_comment.get_recipient_id() {
2021-02-22 18:04:32 +00:00
return Err(ApiError::err("no_comment_edit_allowed").into());
2020-07-21 01:37:44 +00:00
}
// Do the mark as read
let read = data.read;
blocking(context.pool(), move |conn| {
Comment::update_read(conn, comment_id, read)
})
.await?
.map_err(|_| ApiError::err("couldnt_update_comment"))?;
2020-07-21 01:37:44 +00:00
// Refetch it
let comment_id = data.comment_id;
2021-03-10 22:33:55 +00:00
let person_id = local_user_view.person.id;
let comment_view = blocking(context.pool(), move |conn| {
2021-03-10 22:33:55 +00:00
CommentView::read(conn, comment_id, Some(person_id))
2020-07-21 01:37:44 +00:00
})
.await??;
let res = CommentResponse {
2020-12-15 19:39:18 +00:00
comment_view,
2020-07-21 01:37:44 +00:00
recipient_ids: Vec::new(),
form_id: None,
2020-07-21 01:37:44 +00:00
};
Ok(res)
}
}
#[async_trait::async_trait(?Send)]
impl Perform for SaveComment {
type Response = CommentResponse;
async fn perform(
&self,
context: &Data<LemmyContext>,
_websocket_id: Option<ConnectionId>,
) -> Result<CommentResponse, LemmyError> {
let data: &SaveComment = &self;
2021-03-10 22:33:55 +00:00
let local_user_view = get_local_user_view_from_jwt(&data.auth, context.pool()).await?;
2019-05-05 05:20:38 +00:00
let comment_saved_form = CommentSavedForm {
comment_id: data.comment_id,
2021-03-10 22:33:55 +00:00
person_id: local_user_view.person.id,
2019-05-05 05:20:38 +00:00
};
if data.save {
let save_comment = move |conn: &'_ _| CommentSaved::save(conn, &comment_saved_form);
if blocking(context.pool(), save_comment).await?.is_err() {
2021-02-22 18:04:32 +00:00
return Err(ApiError::err("couldnt_save_comment").into());
}
2019-05-05 05:20:38 +00:00
} else {
let unsave_comment = move |conn: &'_ _| CommentSaved::unsave(conn, &comment_saved_form);
if blocking(context.pool(), unsave_comment).await?.is_err() {
2021-02-22 18:04:32 +00:00
return Err(ApiError::err("couldnt_save_comment").into());
}
2019-05-05 05:20:38 +00:00
}
let comment_id = data.comment_id;
2021-03-10 22:33:55 +00:00
let person_id = local_user_view.person.id;
let comment_view = blocking(context.pool(), move |conn| {
2021-03-10 22:33:55 +00:00
CommentView::read(conn, comment_id, Some(person_id))
})
.await??;
2019-05-05 05:20:38 +00:00
Ok(CommentResponse {
2020-12-15 19:39:18 +00:00
comment_view,
recipient_ids: Vec::new(),
form_id: None,
})
2019-05-05 05:20:38 +00:00
}
}
#[async_trait::async_trait(?Send)]
impl Perform for CreateCommentLike {
type Response = CommentResponse;
async fn perform(
&self,
context: &Data<LemmyContext>,
websocket_id: Option<ConnectionId>,
) -> Result<CommentResponse, LemmyError> {
let data: &CreateCommentLike = &self;
2021-03-10 22:33:55 +00:00
let local_user_view = get_local_user_view_from_jwt(&data.auth, context.pool()).await?;
2019-05-05 05:20:38 +00:00
let mut recipient_ids = Vec::<LocalUserId>::new();
// Don't do a downvote if site has downvotes disabled
check_downvotes_enabled(data.score, context.pool()).await?;
2020-07-21 01:37:44 +00:00
let comment_id = data.comment_id;
let orig_comment = blocking(context.pool(), move |conn| {
CommentView::read(&conn, comment_id, None)
})
.await??;
2020-07-21 01:37:44 +00:00
2021-03-11 04:43:11 +00:00
check_community_ban(
local_user_view.person.id,
orig_comment.community.id,
context.pool(),
)
.await?;
2019-05-05 05:20:38 +00:00
// Add parent user to recipients
let recipient_id = orig_comment.get_recipient_id();
if let Ok(local_recipient) = blocking(context.pool(), move |conn| {
LocalUserView::read_person(conn, recipient_id)
})
.await?
{
recipient_ids.push(local_recipient.local_user.id);
}
2019-05-05 05:20:38 +00:00
let like_form = CommentLikeForm {
comment_id: data.comment_id,
post_id: orig_comment.post.id,
2021-03-10 22:33:55 +00:00
person_id: local_user_view.person.id,
score: data.score,
2019-05-05 05:20:38 +00:00
};
// Remove any likes first
2021-03-10 22:33:55 +00:00
let person_id = local_user_view.person.id;
blocking(context.pool(), move |conn| {
2021-03-10 22:33:55 +00:00
CommentLike::remove(conn, person_id, comment_id)
})
.await??;
2019-05-05 05:20:38 +00:00
// Only add the like if the score isnt 0
let comment = orig_comment.comment;
let do_add = like_form.score != 0 && (like_form.score == 1 || like_form.score == -1);
2019-05-15 16:46:39 +00:00
if do_add {
let like_form2 = like_form.clone();
let like = move |conn: &'_ _| CommentLike::like(conn, &like_form2);
if blocking(context.pool(), like).await?.is_err() {
2021-02-22 18:04:32 +00:00
return Err(ApiError::err("couldnt_like_comment").into());
}
if like_form.score == 1 {
2021-03-10 22:33:55 +00:00
comment.send_like(&local_user_view.person, context).await?;
} else if like_form.score == -1 {
2021-03-11 04:43:11 +00:00
comment
.send_dislike(&local_user_view.person, context)
.await?;
}
} else {
2021-03-11 04:43:11 +00:00
comment
.send_undo_like(&local_user_view.person, context)
.await?;
2019-05-05 05:20:38 +00:00
}
// Have to refetch the comment to get the current state
let comment_id = data.comment_id;
2021-03-10 22:33:55 +00:00
let person_id = local_user_view.person.id;
let liked_comment = blocking(context.pool(), move |conn| {
2021-03-10 22:33:55 +00:00
CommentView::read(conn, comment_id, Some(person_id))
})
.await??;
2019-05-05 05:20:38 +00:00
2021-01-07 06:17:42 +00:00
let res = CommentResponse {
2020-12-15 19:39:18 +00:00
comment_view: liked_comment,
recipient_ids,
form_id: None,
};
context.chat_server().do_send(SendComment {
op: UserOperation::CreateCommentLike,
comment: res.clone(),
websocket_id,
});
Ok(res)
2019-05-05 05:20:38 +00:00
}
}