2021-03-25 19:19:40 +00:00
|
|
|
use crate::Perform;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
use lemmy_api_common::{
|
|
|
|
blocking,
|
2020-09-24 13:53:21 +00:00
|
|
|
check_community_ban,
|
2020-12-20 01:10:47 +00:00
|
|
|
check_downvotes_enabled,
|
2021-03-25 19:19:40 +00:00
|
|
|
comment::*,
|
2021-03-10 22:33:55 +00:00
|
|
|
get_local_user_view_from_jwt,
|
2020-05-16 14:04:08 +00:00
|
|
|
};
|
2021-03-25 19:19:40 +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)]
|
2020-08-12 11:31:45 +00:00
|
|
|
impl Perform for MarkCommentAsRead {
|
2020-07-21 01:37:44 +00:00
|
|
|
type Response = CommentResponse;
|
|
|
|
|
|
|
|
async fn perform(
|
|
|
|
&self,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: &Data<LemmyContext>,
|
2020-08-24 11:58:24 +00:00
|
|
|
_websocket_id: Option<ConnectionId>,
|
2020-07-21 01:37:44 +00:00
|
|
|
) -> Result<CommentResponse, LemmyError> {
|
2021-07-05 16:07:26 +00:00
|
|
|
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
|
|
|
|
2020-12-20 01:10:47 +00:00
|
|
|
let comment_id = data.comment_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let orig_comment = blocking(context.pool(), move |conn| {
|
2021-07-05 16:07:26 +00:00
|
|
|
CommentView::read(conn, comment_id, None)
|
2020-08-18 13:43:50 +00:00
|
|
|
})
|
|
|
|
.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;
|
2021-04-16 13:10:43 +00:00
|
|
|
blocking(context.pool(), move |conn| {
|
2020-12-20 01:10:47 +00:00
|
|
|
Comment::update_read(conn, comment_id, read)
|
2020-08-18 13:43:50 +00:00
|
|
|
})
|
|
|
|
.await?
|
2021-04-16 13:10:43 +00:00
|
|
|
.map_err(|_| ApiError::err("couldnt_update_comment"))?;
|
2020-07-21 01:37:44 +00:00
|
|
|
|
|
|
|
// Refetch it
|
2021-01-18 21:57:31 +00:00
|
|
|
let comment_id = data.comment_id;
|
2021-03-10 22:33:55 +00:00
|
|
|
let person_id = local_user_view.person.id;
|
2020-08-18 13:43:50 +00:00
|
|
|
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(),
|
2020-07-21 14:56:41 +00:00
|
|
|
form_id: None,
|
2020-07-21 01:37:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 11:31:45 +00:00
|
|
|
impl Perform for SaveComment {
|
2020-04-20 03:59:07 +00:00
|
|
|
type Response = CommentResponse;
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn perform(
|
2020-04-19 22:08:25 +00:00
|
|
|
&self,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: &Data<LemmyContext>,
|
2020-08-24 11:58:24 +00:00
|
|
|
_websocket_id: Option<ConnectionId>,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<CommentResponse, LemmyError> {
|
2021-07-05 16:07:26 +00:00
|
|
|
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 {
|
2020-07-01 12:54:29 +00:00
|
|
|
let save_comment = move |conn: &'_ _| CommentSaved::save(conn, &comment_saved_form);
|
2020-08-18 13:43:50 +00:00
|
|
|
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());
|
2020-07-01 12:54:29 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
} else {
|
2020-07-01 12:54:29 +00:00
|
|
|
let unsave_comment = move |conn: &'_ _| CommentSaved::unsave(conn, &comment_saved_form);
|
2020-08-18 13:43:50 +00:00
|
|
|
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());
|
2020-07-01 12:54:29 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let comment_id = data.comment_id;
|
2021-03-10 22:33:55 +00:00
|
|
|
let person_id = local_user_view.person.id;
|
2020-08-18 13:43:50 +00:00
|
|
|
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-01 12:54:29 +00:00
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
Ok(CommentResponse {
|
2020-12-15 19:39:18 +00:00
|
|
|
comment_view,
|
2020-02-01 01:02:20 +00:00
|
|
|
recipient_ids: Vec::new(),
|
2020-07-21 14:56:41 +00:00
|
|
|
form_id: None,
|
2019-09-07 15:35:05 +00:00
|
|
|
})
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 11:31:45 +00:00
|
|
|
impl Perform for CreateCommentLike {
|
2020-04-20 03:59:07 +00:00
|
|
|
type Response = CommentResponse;
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn perform(
|
2020-04-19 22:08:25 +00:00
|
|
|
&self,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: &Data<LemmyContext>,
|
2020-08-24 11:58:24 +00:00
|
|
|
websocket_id: Option<ConnectionId>,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<CommentResponse, LemmyError> {
|
2021-07-05 16:07:26 +00:00
|
|
|
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
|
|
|
|
2021-03-18 20:25:21 +00:00
|
|
|
let mut recipient_ids = Vec::<LocalUserId>::new();
|
2020-02-01 01:02:20 +00:00
|
|
|
|
2019-12-11 20:21:47 +00:00
|
|
|
// Don't do a downvote if site has downvotes disabled
|
2020-12-20 01:10:47 +00:00
|
|
|
check_downvotes_enabled(data.score, context.pool()).await?;
|
2019-12-11 20:21:47 +00:00
|
|
|
|
2020-07-21 01:37:44 +00:00
|
|
|
let comment_id = data.comment_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let orig_comment = blocking(context.pool(), move |conn| {
|
2021-07-05 16:07:26 +00:00
|
|
|
CommentView::read(conn, comment_id, None)
|
2020-08-18 13:43:50 +00:00
|
|
|
})
|
|
|
|
.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
|
|
|
|
2020-12-20 01:10:47 +00:00
|
|
|
// Add parent user to recipients
|
2021-03-18 20:25:21 +00:00
|
|
|
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);
|
|
|
|
}
|
2020-02-01 01:02:20 +00:00
|
|
|
|
2019-05-05 05:20:38 +00:00
|
|
|
let like_form = CommentLikeForm {
|
|
|
|
comment_id: data.comment_id,
|
2020-12-20 01:10:47 +00:00
|
|
|
post_id: orig_comment.post.id,
|
2021-03-10 22:33:55 +00:00
|
|
|
person_id: local_user_view.person.id,
|
2019-09-07 15:35:05 +00:00
|
|
|
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;
|
2020-08-18 13:43:50 +00:00
|
|
|
blocking(context.pool(), move |conn| {
|
2021-03-10 22:33:55 +00:00
|
|
|
CommentLike::remove(conn, person_id, comment_id)
|
2020-08-12 14:43:45 +00:00
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
// Only add the like if the score isnt 0
|
2020-12-20 01:10:47 +00:00
|
|
|
let comment = orig_comment.comment;
|
2019-12-19 21:59:13 +00:00
|
|
|
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 {
|
2020-07-01 12:54:29 +00:00
|
|
|
let like_form2 = like_form.clone();
|
|
|
|
let like = move |conn: &'_ _| CommentLike::like(conn, &like_form2);
|
2020-08-18 13:43:50 +00:00
|
|
|
if blocking(context.pool(), like).await?.is_err() {
|
2021-02-22 18:04:32 +00:00
|
|
|
return Err(ApiError::err("couldnt_like_comment").into());
|
2020-07-01 12:54:29 +00:00
|
|
|
}
|
2020-04-28 04:16:02 +00:00
|
|
|
|
|
|
|
if like_form.score == 1 {
|
2021-03-10 22:33:55 +00:00
|
|
|
comment.send_like(&local_user_view.person, context).await?;
|
2020-04-28 04:16:02 +00:00
|
|
|
} else if like_form.score == -1 {
|
2021-03-11 04:43:11 +00:00
|
|
|
comment
|
|
|
|
.send_dislike(&local_user_view.person, context)
|
|
|
|
.await?;
|
2020-04-28 04:16:02 +00:00
|
|
|
}
|
|
|
|
} 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
|
2020-07-01 12:54:29 +00:00
|
|
|
let comment_id = data.comment_id;
|
2021-03-10 22:33:55 +00:00
|
|
|
let person_id = local_user_view.person.id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let liked_comment = blocking(context.pool(), move |conn| {
|
2021-03-10 22:33:55 +00:00
|
|
|
CommentView::read(conn, comment_id, Some(person_id))
|
2020-07-01 12:54:29 +00:00
|
|
|
})
|
|
|
|
.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,
|
2020-02-01 01:02:20 +00:00
|
|
|
recipient_ids,
|
2020-07-21 14:56:41 +00:00
|
|
|
form_id: None,
|
2020-04-19 22:08:25 +00:00
|
|
|
};
|
|
|
|
|
2020-08-24 11:58:24 +00:00
|
|
|
context.chat_server().do_send(SendComment {
|
|
|
|
op: UserOperation::CreateCommentLike,
|
|
|
|
comment: res.clone(),
|
|
|
|
websocket_id,
|
|
|
|
});
|
2020-04-19 22:08:25 +00:00
|
|
|
|
|
|
|
Ok(res)
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|