2020-05-16 14:04:08 +00:00
|
|
|
use crate::{
|
2020-08-04 14:39:55 +00:00
|
|
|
api::{
|
|
|
|
check_community_ban,
|
2020-08-20 12:44:22 +00:00
|
|
|
get_post,
|
2020-08-04 14:39:55 +00:00
|
|
|
get_user_from_jwt,
|
|
|
|
get_user_from_jwt_opt,
|
|
|
|
is_mod_or_admin,
|
|
|
|
Perform,
|
|
|
|
},
|
2020-05-16 14:04:08 +00:00
|
|
|
apub::{ApubLikeableType, ApubObjectType},
|
2020-09-15 19:26:47 +00:00
|
|
|
websocket::{messages::SendComment, UserOperation},
|
2020-08-18 13:43:50 +00:00
|
|
|
LemmyContext,
|
2020-07-10 18:15:41 +00:00
|
|
|
};
|
2020-08-18 13:43:50 +00:00
|
|
|
use actix_web::web::Data;
|
2020-09-14 15:29:50 +00:00
|
|
|
use lemmy_api_structs::{blocking, comment::*, send_local_notifs};
|
2020-07-10 18:15:41 +00:00
|
|
|
use lemmy_db::{
|
|
|
|
comment::*,
|
|
|
|
comment_view::*,
|
|
|
|
moderator::*,
|
|
|
|
post::*,
|
|
|
|
site_view::*,
|
|
|
|
user::*,
|
|
|
|
Crud,
|
|
|
|
Likeable,
|
|
|
|
ListingType,
|
|
|
|
Saveable,
|
|
|
|
SortType,
|
|
|
|
};
|
|
|
|
use lemmy_utils::{
|
2020-09-14 15:29:50 +00:00
|
|
|
apub::{make_apub_endpoint, EndpointType},
|
|
|
|
utils::{remove_slurs, scrape_text_for_mentions},
|
2020-09-03 19:45:12 +00:00
|
|
|
APIError,
|
2020-09-01 14:25:34 +00:00
|
|
|
ConnectionId,
|
|
|
|
LemmyError,
|
2020-05-16 14:04:08 +00:00
|
|
|
};
|
|
|
|
use std::str::FromStr;
|
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 CreateComment {
|
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> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &CreateComment = &self;
|
2020-08-18 13:43:50 +00:00
|
|
|
let user = get_user_from_jwt(&data.auth, context.pool()).await?;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
let content_slurs_removed = remove_slurs(&data.content.to_owned());
|
|
|
|
|
|
|
|
let comment_form = CommentForm {
|
|
|
|
content: content_slurs_removed,
|
|
|
|
parent_id: data.parent_id.to_owned(),
|
|
|
|
post_id: data.post_id,
|
2020-08-04 14:39:55 +00:00
|
|
|
creator_id: user.id,
|
2019-05-05 05:20:38 +00:00
|
|
|
removed: None,
|
|
|
|
deleted: None,
|
|
|
|
read: None,
|
2020-04-27 16:57:00 +00:00
|
|
|
published: None,
|
2019-09-07 15:35:05 +00:00
|
|
|
updated: None,
|
2020-08-31 13:48:02 +00:00
|
|
|
ap_id: None,
|
2020-04-04 00:04:57 +00:00
|
|
|
local: true,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
// Check for a community ban
|
|
|
|
let post_id = data.post_id;
|
2020-08-20 12:44:22 +00:00
|
|
|
let post = get_post(post_id, context.pool()).await?;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
check_community_ban(user.id, post.community_id, context.pool()).await?;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2020-07-21 03:46:36 +00:00
|
|
|
// Check if post is locked, no new comments
|
|
|
|
if post.locked {
|
|
|
|
return Err(APIError::err("locked").into());
|
|
|
|
}
|
|
|
|
|
2020-07-21 01:37:44 +00:00
|
|
|
// Create the comment
|
2020-07-01 12:54:29 +00:00
|
|
|
let comment_form2 = comment_form.clone();
|
2020-08-18 13:43:50 +00:00
|
|
|
let inserted_comment = match blocking(context.pool(), move |conn| {
|
|
|
|
Comment::create(&conn, &comment_form2)
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
{
|
|
|
|
Ok(comment) => comment,
|
|
|
|
Err(_e) => return Err(APIError::err("couldnt_create_comment").into()),
|
|
|
|
};
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2020-07-21 01:37:44 +00:00
|
|
|
// Necessary to update the ap_id
|
2020-07-01 12:54:29 +00:00
|
|
|
let inserted_comment_id = inserted_comment.id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let updated_comment: Comment = match blocking(context.pool(), move |conn| {
|
2020-07-10 18:15:41 +00:00
|
|
|
let apub_id =
|
|
|
|
make_apub_endpoint(EndpointType::Comment, &inserted_comment_id.to_string()).to_string();
|
|
|
|
Comment::update_ap_id(&conn, inserted_comment_id, apub_id)
|
2020-07-01 12:54:29 +00:00
|
|
|
})
|
|
|
|
.await?
|
|
|
|
{
|
2020-04-04 00:04:57 +00:00
|
|
|
Ok(comment) => comment,
|
|
|
|
Err(_e) => return Err(APIError::err("couldnt_create_comment").into()),
|
|
|
|
};
|
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
updated_comment.send_create(&user, context).await?;
|
2020-04-27 16:57:00 +00:00
|
|
|
|
2019-10-20 00:46:29 +00:00
|
|
|
// Scan the comment for user mentions, add those rows
|
2020-05-15 16:36:11 +00:00
|
|
|
let mentions = scrape_text_for_mentions(&comment_form.content);
|
2020-08-18 13:43:50 +00:00
|
|
|
let recipient_ids = send_local_notifs(
|
|
|
|
mentions,
|
|
|
|
updated_comment.clone(),
|
|
|
|
&user,
|
|
|
|
post,
|
|
|
|
context.pool(),
|
|
|
|
true,
|
|
|
|
)
|
|
|
|
.await?;
|
2020-01-02 21:55:54 +00:00
|
|
|
|
2019-05-05 05:20:38 +00:00
|
|
|
// You like your own comment by default
|
|
|
|
let like_form = CommentLikeForm {
|
|
|
|
comment_id: inserted_comment.id,
|
|
|
|
post_id: data.post_id,
|
2020-08-04 14:39:55 +00:00
|
|
|
user_id: user.id,
|
2019-09-07 15:35:05 +00:00
|
|
|
score: 1,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let like = move |conn: &'_ _| CommentLike::like(&conn, &like_form);
|
2020-08-18 13:43:50 +00:00
|
|
|
if blocking(context.pool(), like).await?.is_err() {
|
2020-07-01 12:54:29 +00:00
|
|
|
return Err(APIError::err("couldnt_like_comment").into());
|
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
updated_comment.send_like(&user, context).await?;
|
2020-04-28 04:16:02 +00:00
|
|
|
|
2020-08-04 14:39:55 +00:00
|
|
|
let user_id = user.id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let comment_view = blocking(context.pool(), move |conn| {
|
2020-07-01 12:54:29 +00:00
|
|
|
CommentView::read(&conn, inserted_comment.id, Some(user_id))
|
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
let mut res = CommentResponse {
|
2019-09-07 15:35:05 +00:00
|
|
|
comment: comment_view,
|
2020-02-01 01:02:20 +00:00
|
|
|
recipient_ids,
|
2020-07-21 14:56:41 +00:00
|
|
|
form_id: data.form_id.to_owned(),
|
2020-04-19 22:08:25 +00:00
|
|
|
};
|
|
|
|
|
2020-08-24 11:58:24 +00:00
|
|
|
context.chat_server().do_send(SendComment {
|
|
|
|
op: UserOperation::CreateComment,
|
|
|
|
comment: res.clone(),
|
|
|
|
websocket_id,
|
|
|
|
});
|
2020-04-19 22:08:25 +00:00
|
|
|
|
2020-08-24 11:58:24 +00:00
|
|
|
// strip out the recipient_ids, so that
|
|
|
|
// users don't get double notifs
|
|
|
|
res.recipient_ids = Vec::new();
|
2020-04-19 22:08:25 +00:00
|
|
|
|
|
|
|
Ok(res)
|
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 EditComment {
|
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> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &EditComment = &self;
|
2020-08-18 13:43:50 +00:00
|
|
|
let user = get_user_from_jwt(&data.auth, context.pool()).await?;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let edit_id = data.edit_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let orig_comment = blocking(context.pool(), move |conn| {
|
|
|
|
CommentView::read(&conn, edit_id, None)
|
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
check_community_ban(user.id, orig_comment.community_id, context.pool()).await?;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-07-21 01:37:44 +00:00
|
|
|
// Verify that only the creator can edit
|
2020-08-04 14:39:55 +00:00
|
|
|
if user.id != orig_comment.creator_id {
|
2020-07-21 01:37:44 +00:00
|
|
|
return Err(APIError::err("no_comment_edit_allowed").into());
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
2020-07-21 01:37:44 +00:00
|
|
|
// Do the update
|
2019-05-05 05:20:38 +00:00
|
|
|
let content_slurs_removed = remove_slurs(&data.content.to_owned());
|
2020-07-21 01:37:44 +00:00
|
|
|
let edit_id = data.edit_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let updated_comment = match blocking(context.pool(), move |conn| {
|
2020-07-21 01:37:44 +00:00
|
|
|
Comment::update_content(conn, edit_id, &content_slurs_removed)
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
{
|
|
|
|
Ok(comment) => comment,
|
|
|
|
Err(_e) => return Err(APIError::err("couldnt_update_comment").into()),
|
|
|
|
};
|
|
|
|
|
|
|
|
// Send the apub update
|
2020-08-18 13:43:50 +00:00
|
|
|
updated_comment.send_update(&user, context).await?;
|
2020-07-21 01:37:44 +00:00
|
|
|
|
|
|
|
// Do the mentions / recipients
|
|
|
|
let post_id = orig_comment.post_id;
|
2020-08-20 12:44:22 +00:00
|
|
|
let post = get_post(post_id, context.pool()).await?;
|
2020-07-21 01:37:44 +00:00
|
|
|
|
|
|
|
let updated_comment_content = updated_comment.content.to_owned();
|
|
|
|
let mentions = scrape_text_for_mentions(&updated_comment_content);
|
2020-08-18 13:43:50 +00:00
|
|
|
let recipient_ids = send_local_notifs(
|
|
|
|
mentions,
|
|
|
|
updated_comment,
|
|
|
|
&user,
|
|
|
|
post,
|
|
|
|
context.pool(),
|
|
|
|
false,
|
|
|
|
)
|
|
|
|
.await?;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let edit_id = data.edit_id;
|
2020-08-04 14:39:55 +00:00
|
|
|
let user_id = user.id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let comment_view = blocking(context.pool(), move |conn| {
|
2020-07-21 01:37:44 +00:00
|
|
|
CommentView::read(conn, edit_id, Some(user_id))
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
let mut res = CommentResponse {
|
|
|
|
comment: comment_view,
|
|
|
|
recipient_ids,
|
2020-07-21 14:56:41 +00:00
|
|
|
form_id: data.form_id.to_owned(),
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2020-08-24 11:58:24 +00:00
|
|
|
context.chat_server().do_send(SendComment {
|
|
|
|
op: UserOperation::EditComment,
|
|
|
|
comment: res.clone(),
|
|
|
|
websocket_id,
|
|
|
|
});
|
2020-07-21 01:37:44 +00:00
|
|
|
|
2020-08-24 11:58:24 +00:00
|
|
|
// strip out the recipient_ids, so that
|
|
|
|
// users don't get double notifs
|
|
|
|
res.recipient_ids = Vec::new();
|
2020-07-21 01:37:44 +00:00
|
|
|
|
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 11:31:45 +00:00
|
|
|
impl Perform for DeleteComment {
|
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> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &DeleteComment = &self;
|
2020-08-18 13:43:50 +00:00
|
|
|
let user = get_user_from_jwt(&data.auth, context.pool()).await?;
|
2020-07-21 01:37:44 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let edit_id = data.edit_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let orig_comment = blocking(context.pool(), move |conn| {
|
|
|
|
CommentView::read(&conn, edit_id, None)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-07-21 01:37:44 +00:00
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
check_community_ban(user.id, orig_comment.community_id, context.pool()).await?;
|
2020-07-21 01:37:44 +00:00
|
|
|
|
|
|
|
// Verify that only the creator can delete
|
2020-08-04 14:39:55 +00:00
|
|
|
if user.id != orig_comment.creator_id {
|
2020-07-21 01:37:44 +00:00
|
|
|
return Err(APIError::err("no_comment_edit_allowed").into());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do the delete
|
|
|
|
let deleted = data.deleted;
|
2020-08-18 13:43:50 +00:00
|
|
|
let updated_comment = match blocking(context.pool(), move |conn| {
|
2020-07-21 01:37:44 +00:00
|
|
|
Comment::update_deleted(conn, edit_id, deleted)
|
2020-07-01 12:54:29 +00:00
|
|
|
})
|
|
|
|
.await?
|
|
|
|
{
|
2019-05-05 05:20:38 +00:00
|
|
|
Ok(comment) => comment,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("couldnt_update_comment").into()),
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2020-07-21 01:37:44 +00:00
|
|
|
// Send the apub message
|
|
|
|
if deleted {
|
2020-08-18 13:43:50 +00:00
|
|
|
updated_comment.send_delete(&user, context).await?;
|
2020-07-21 01:37:44 +00:00
|
|
|
} else {
|
2020-08-18 13:43:50 +00:00
|
|
|
updated_comment.send_undo_delete(&user, context).await?;
|
2020-04-29 14:51:25 +00:00
|
|
|
}
|
|
|
|
|
2020-07-21 01:37:44 +00:00
|
|
|
// Refetch it
|
|
|
|
let edit_id = data.edit_id;
|
2020-08-04 14:39:55 +00:00
|
|
|
let user_id = user.id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let comment_view = blocking(context.pool(), move |conn| {
|
2020-07-21 01:37:44 +00:00
|
|
|
CommentView::read(conn, edit_id, Some(user_id))
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
// Build the recipients
|
|
|
|
let post_id = comment_view.post_id;
|
2020-08-20 12:44:22 +00:00
|
|
|
let post = get_post(post_id, context.pool()).await?;
|
2020-07-21 01:37:44 +00:00
|
|
|
let mentions = vec![];
|
2020-08-18 13:43:50 +00:00
|
|
|
let recipient_ids = send_local_notifs(
|
|
|
|
mentions,
|
|
|
|
updated_comment,
|
|
|
|
&user,
|
|
|
|
post,
|
|
|
|
context.pool(),
|
|
|
|
false,
|
|
|
|
)
|
|
|
|
.await?;
|
2019-10-20 00:46:29 +00:00
|
|
|
|
2020-07-21 01:37:44 +00:00
|
|
|
let mut res = CommentResponse {
|
|
|
|
comment: comment_view,
|
|
|
|
recipient_ids,
|
2020-07-21 14:56:41 +00:00
|
|
|
form_id: None,
|
2020-07-21 01:37:44 +00:00
|
|
|
};
|
|
|
|
|
2020-08-24 11:58:24 +00:00
|
|
|
context.chat_server().do_send(SendComment {
|
|
|
|
op: UserOperation::DeleteComment,
|
|
|
|
comment: res.clone(),
|
|
|
|
websocket_id,
|
|
|
|
});
|
2020-07-21 01:37:44 +00:00
|
|
|
|
2020-08-24 11:58:24 +00:00
|
|
|
// strip out the recipient_ids, so that
|
|
|
|
// users don't get double notifs
|
|
|
|
res.recipient_ids = Vec::new();
|
2020-07-21 01:37:44 +00:00
|
|
|
|
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 11:31:45 +00:00
|
|
|
impl Perform for RemoveComment {
|
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> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &RemoveComment = &self;
|
2020-08-18 13:43:50 +00:00
|
|
|
let user = get_user_from_jwt(&data.auth, context.pool()).await?;
|
2020-07-21 01:37:44 +00:00
|
|
|
|
|
|
|
let edit_id = data.edit_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let orig_comment = blocking(context.pool(), move |conn| {
|
|
|
|
CommentView::read(&conn, edit_id, None)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-07-21 01:37:44 +00:00
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
check_community_ban(user.id, orig_comment.community_id, context.pool()).await?;
|
2020-07-21 01:37:44 +00:00
|
|
|
|
|
|
|
// Verify that only a mod or admin can remove
|
2020-08-18 13:43:50 +00:00
|
|
|
is_mod_or_admin(context.pool(), user.id, orig_comment.community_id).await?;
|
2020-07-21 01:37:44 +00:00
|
|
|
|
|
|
|
// Do the remove
|
|
|
|
let removed = data.removed;
|
2020-08-18 13:43:50 +00:00
|
|
|
let updated_comment = match blocking(context.pool(), move |conn| {
|
2020-07-21 01:37:44 +00:00
|
|
|
Comment::update_removed(conn, edit_id, removed)
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
{
|
|
|
|
Ok(comment) => comment,
|
|
|
|
Err(_e) => return Err(APIError::err("couldnt_update_comment").into()),
|
|
|
|
};
|
|
|
|
|
|
|
|
// Mod tables
|
|
|
|
let form = ModRemoveCommentForm {
|
2020-08-04 14:39:55 +00:00
|
|
|
mod_user_id: user.id,
|
2020-07-21 01:37:44 +00:00
|
|
|
comment_id: data.edit_id,
|
|
|
|
removed: Some(removed),
|
|
|
|
reason: data.reason.to_owned(),
|
|
|
|
};
|
2020-08-18 13:43:50 +00:00
|
|
|
blocking(context.pool(), move |conn| {
|
|
|
|
ModRemoveComment::create(conn, &form)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-07-21 01:37:44 +00:00
|
|
|
|
|
|
|
// Send the apub message
|
|
|
|
if removed {
|
2020-08-18 13:43:50 +00:00
|
|
|
updated_comment.send_remove(&user, context).await?;
|
2020-07-21 01:37:44 +00:00
|
|
|
} else {
|
2020-08-18 13:43:50 +00:00
|
|
|
updated_comment.send_undo_remove(&user, context).await?;
|
2020-07-21 01:37:44 +00:00
|
|
|
}
|
2020-02-01 01:02:20 +00:00
|
|
|
|
2020-07-21 01:37:44 +00:00
|
|
|
// Refetch it
|
2020-07-01 12:54:29 +00:00
|
|
|
let edit_id = data.edit_id;
|
2020-08-04 14:39:55 +00:00
|
|
|
let user_id = user.id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let comment_view = blocking(context.pool(), move |conn| {
|
2020-07-01 12:54:29 +00:00
|
|
|
CommentView::read(conn, edit_id, Some(user_id))
|
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-07-21 01:37:44 +00:00
|
|
|
// Build the recipients
|
|
|
|
let post_id = comment_view.post_id;
|
2020-08-20 12:44:22 +00:00
|
|
|
let post = get_post(post_id, context.pool()).await?;
|
2020-07-21 01:37:44 +00:00
|
|
|
let mentions = vec![];
|
2020-08-18 13:43:50 +00:00
|
|
|
let recipient_ids = send_local_notifs(
|
|
|
|
mentions,
|
|
|
|
updated_comment,
|
|
|
|
&user,
|
|
|
|
post,
|
|
|
|
context.pool(),
|
|
|
|
false,
|
|
|
|
)
|
|
|
|
.await?;
|
2020-07-21 01:37:44 +00:00
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
let mut res = CommentResponse {
|
2019-09-07 15:35:05 +00:00
|
|
|
comment: comment_view,
|
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::RemoveComment,
|
|
|
|
comment: res.clone(),
|
|
|
|
websocket_id,
|
|
|
|
});
|
2020-04-19 22:08:25 +00:00
|
|
|
|
2020-08-24 11:58:24 +00:00
|
|
|
// strip out the recipient_ids, so that
|
|
|
|
// users don't get double notifs
|
|
|
|
res.recipient_ids = Vec::new();
|
2020-04-19 22:08:25 +00:00
|
|
|
|
|
|
|
Ok(res)
|
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> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &MarkCommentAsRead = &self;
|
2020-08-18 13:43:50 +00:00
|
|
|
let user = get_user_from_jwt(&data.auth, context.pool()).await?;
|
2020-07-21 01:37:44 +00:00
|
|
|
|
|
|
|
let edit_id = data.edit_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let orig_comment = blocking(context.pool(), move |conn| {
|
|
|
|
CommentView::read(&conn, edit_id, None)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-07-21 01:37:44 +00:00
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
check_community_ban(user.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
|
|
|
|
// Needs to fetch the parent comment / post to get the recipient
|
|
|
|
let parent_id = orig_comment.parent_id;
|
|
|
|
match parent_id {
|
|
|
|
Some(pid) => {
|
2020-08-18 13:43:50 +00:00
|
|
|
let parent_comment = blocking(context.pool(), move |conn| {
|
|
|
|
CommentView::read(&conn, pid, None)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-08-04 14:39:55 +00:00
|
|
|
if user.id != parent_comment.creator_id {
|
2020-07-21 01:37:44 +00:00
|
|
|
return Err(APIError::err("no_comment_edit_allowed").into());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
let parent_post_id = orig_comment.post_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let parent_post =
|
|
|
|
blocking(context.pool(), move |conn| Post::read(conn, parent_post_id)).await??;
|
2020-08-04 14:39:55 +00:00
|
|
|
if user.id != parent_post.creator_id {
|
2020-07-21 01:37:44 +00:00
|
|
|
return Err(APIError::err("no_comment_edit_allowed").into());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do the mark as read
|
|
|
|
let read = data.read;
|
2020-08-18 13:43:50 +00:00
|
|
|
match blocking(context.pool(), move |conn| {
|
|
|
|
Comment::update_read(conn, edit_id, read)
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
{
|
2020-07-21 01:37:44 +00:00
|
|
|
Ok(comment) => comment,
|
|
|
|
Err(_e) => return Err(APIError::err("couldnt_update_comment").into()),
|
|
|
|
};
|
|
|
|
|
|
|
|
// Refetch it
|
|
|
|
let edit_id = data.edit_id;
|
2020-08-04 14:39:55 +00:00
|
|
|
let user_id = user.id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let comment_view = blocking(context.pool(), move |conn| {
|
2020-07-21 01:37:44 +00:00
|
|
|
CommentView::read(conn, edit_id, Some(user_id))
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
let res = CommentResponse {
|
|
|
|
comment: comment_view,
|
|
|
|
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> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &SaveComment = &self;
|
2020-08-18 13:43:50 +00:00
|
|
|
let user = get_user_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,
|
2020-08-04 14:39:55 +00:00
|
|
|
user_id: user.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() {
|
2020-07-01 12:54:29 +00:00
|
|
|
return Err(APIError::err("couldnt_save_comment").into());
|
|
|
|
}
|
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() {
|
2020-07-01 12:54:29 +00:00
|
|
|
return Err(APIError::err("couldnt_save_comment").into());
|
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let comment_id = data.comment_id;
|
2020-08-04 14:39:55 +00:00
|
|
|
let user_id = user.id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let comment_view = blocking(context.pool(), move |conn| {
|
2020-07-01 12:54:29 +00:00
|
|
|
CommentView::read(conn, comment_id, Some(user_id))
|
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
Ok(CommentResponse {
|
|
|
|
comment: 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> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &CreateCommentLike = &self;
|
2020-08-18 13:43:50 +00:00
|
|
|
let user = get_user_from_jwt(&data.auth, context.pool()).await?;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-02-01 01:02:20 +00:00
|
|
|
let mut recipient_ids = Vec::new();
|
|
|
|
|
2019-12-11 20:21:47 +00:00
|
|
|
// Don't do a downvote if site has downvotes disabled
|
|
|
|
if data.score == -1 {
|
2020-08-18 13:43:50 +00:00
|
|
|
let site = blocking(context.pool(), move |conn| SiteView::read(conn)).await??;
|
2020-01-02 11:30:00 +00:00
|
|
|
if !site.enable_downvotes {
|
2020-01-16 14:39:08 +00:00
|
|
|
return Err(APIError::err("downvotes_disabled").into());
|
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| {
|
|
|
|
CommentView::read(&conn, comment_id, None)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-07-21 01:37:44 +00:00
|
|
|
|
|
|
|
let post_id = orig_comment.post_id;
|
2020-08-20 12:44:22 +00:00
|
|
|
let post = get_post(post_id, context.pool()).await?;
|
2020-08-18 13:43:50 +00:00
|
|
|
check_community_ban(user.id, post.community_id, context.pool()).await?;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let comment_id = data.comment_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let comment = blocking(context.pool(), move |conn| Comment::read(conn, comment_id)).await??;
|
2020-02-01 01:02:20 +00:00
|
|
|
|
|
|
|
// Add to recipient ids
|
|
|
|
match comment.parent_id {
|
|
|
|
Some(parent_id) => {
|
2020-08-18 13:43:50 +00:00
|
|
|
let parent_comment =
|
|
|
|
blocking(context.pool(), move |conn| Comment::read(conn, parent_id)).await??;
|
2020-08-04 14:39:55 +00:00
|
|
|
if parent_comment.creator_id != user.id {
|
2020-08-18 13:43:50 +00:00
|
|
|
let parent_user = blocking(context.pool(), move |conn| {
|
2020-07-01 12:54:29 +00:00
|
|
|
User_::read(conn, parent_comment.creator_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-02-01 01:02:20 +00:00
|
|
|
recipient_ids.push(parent_user.id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
recipient_ids.push(post.creator_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-05 05:20:38 +00:00
|
|
|
let like_form = CommentLikeForm {
|
|
|
|
comment_id: data.comment_id,
|
2020-07-21 01:37:44 +00:00
|
|
|
post_id,
|
2020-08-04 14:39:55 +00:00
|
|
|
user_id: user.id,
|
2019-09-07 15:35:05 +00:00
|
|
|
score: data.score,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Remove any likes first
|
2020-08-12 14:43:45 +00:00
|
|
|
let user_id = user.id;
|
2020-08-18 13:43:50 +00:00
|
|
|
blocking(context.pool(), move |conn| {
|
2020-08-12 14:43:45 +00:00
|
|
|
CommentLike::remove(conn, user_id, comment_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
// Only add the like if the score isnt 0
|
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() {
|
2020-07-01 12:54:29 +00:00
|
|
|
return Err(APIError::err("couldnt_like_comment").into());
|
|
|
|
}
|
2020-04-28 04:16:02 +00:00
|
|
|
|
|
|
|
if like_form.score == 1 {
|
2020-08-18 13:43:50 +00:00
|
|
|
comment.send_like(&user, context).await?;
|
2020-04-28 04:16:02 +00:00
|
|
|
} else if like_form.score == -1 {
|
2020-08-18 13:43:50 +00:00
|
|
|
comment.send_dislike(&user, context).await?;
|
2020-04-28 04:16:02 +00:00
|
|
|
}
|
|
|
|
} else {
|
2020-08-18 13:43:50 +00:00
|
|
|
comment.send_undo_like(&user, 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;
|
2020-08-04 14:39:55 +00:00
|
|
|
let user_id = user.id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let liked_comment = blocking(context.pool(), move |conn| {
|
2020-07-01 12:54:29 +00:00
|
|
|
CommentView::read(conn, comment_id, Some(user_id))
|
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
let mut res = CommentResponse {
|
2019-09-07 15:35:05 +00:00
|
|
|
comment: 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
|
|
|
|
2020-08-24 11:58:24 +00:00
|
|
|
// strip out the recipient_ids, so that
|
|
|
|
// users don't get double notifs
|
|
|
|
res.recipient_ids = Vec::new();
|
2020-04-19 22:08:25 +00:00
|
|
|
|
|
|
|
Ok(res)
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
2020-02-08 04:05:15 +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 GetComments {
|
2020-04-20 03:59:07 +00:00
|
|
|
type Response = GetCommentsResponse;
|
|
|
|
|
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-09-15 19:26:47 +00:00
|
|
|
_websocket_id: Option<ConnectionId>,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<GetCommentsResponse, LemmyError> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &GetComments = &self;
|
2020-08-18 13:43:50 +00:00
|
|
|
let user = get_user_from_jwt_opt(&data.auth, context.pool()).await?;
|
2020-08-04 14:39:55 +00:00
|
|
|
let user_id = user.map(|u| u.id);
|
2020-02-08 04:05:15 +00:00
|
|
|
|
|
|
|
let type_ = ListingType::from_str(&data.type_)?;
|
|
|
|
let sort = SortType::from_str(&data.sort)?;
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let community_id = data.community_id;
|
2020-09-15 19:26:47 +00:00
|
|
|
let community_name = data.community_name.to_owned();
|
2020-07-01 12:54:29 +00:00
|
|
|
let page = data.page;
|
|
|
|
let limit = data.limit;
|
2020-08-18 13:43:50 +00:00
|
|
|
let comments = blocking(context.pool(), move |conn| {
|
2020-07-01 12:54:29 +00:00
|
|
|
CommentQueryBuilder::create(conn)
|
|
|
|
.listing_type(type_)
|
|
|
|
.sort(&sort)
|
|
|
|
.for_community_id(community_id)
|
2020-09-15 19:26:47 +00:00
|
|
|
.for_community_name(community_name)
|
2020-07-01 12:54:29 +00:00
|
|
|
.my_user_id(user_id)
|
|
|
|
.page(page)
|
|
|
|
.limit(limit)
|
|
|
|
.list()
|
|
|
|
})
|
|
|
|
.await?;
|
|
|
|
let comments = match comments {
|
2020-02-08 04:05:15 +00:00
|
|
|
Ok(comments) => comments,
|
2020-07-01 12:54:29 +00:00
|
|
|
Err(_) => return Err(APIError::err("couldnt_get_comments").into()),
|
2020-02-08 04:05:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Ok(GetCommentsResponse { comments })
|
|
|
|
}
|
|
|
|
}
|