2022-04-13 18:12:25 +00:00
|
|
|
use crate::Perform;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
use lemmy_api_common::{
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2022-04-13 18:12:25 +00:00
|
|
|
post::{CreatePostLike, PostResponse},
|
2022-05-03 17:44:13 +00:00
|
|
|
utils::{
|
|
|
|
check_community_ban,
|
|
|
|
check_community_deleted_or_removed,
|
|
|
|
check_downvotes_enabled,
|
|
|
|
get_local_user_view_from_jwt,
|
|
|
|
mark_post_as_read,
|
|
|
|
},
|
2023-04-13 10:53:55 +00:00
|
|
|
websocket::UserOperation,
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
|
|
|
use lemmy_db_schema::{
|
2022-10-27 09:24:07 +00:00
|
|
|
source::{
|
|
|
|
local_site::LocalSite,
|
|
|
|
post::{Post, PostLike, PostLikeForm},
|
|
|
|
},
|
2022-04-13 18:12:25 +00:00
|
|
|
traits::{Crud, Likeable},
|
|
|
|
};
|
2022-06-02 14:33:41 +00:00
|
|
|
use lemmy_utils::{error::LemmyError, ConnectionId};
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl Perform for CreatePostLike {
|
|
|
|
type Response = PostResponse;
|
|
|
|
|
|
|
|
#[tracing::instrument(skip(context, websocket_id))]
|
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
websocket_id: Option<ConnectionId>,
|
|
|
|
) -> Result<PostResponse, LemmyError> {
|
|
|
|
let data: &CreatePostLike = self;
|
|
|
|
let local_user_view =
|
|
|
|
get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
|
2022-11-09 10:05:00 +00:00
|
|
|
let local_site = LocalSite::read(context.pool()).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
// Don't do a downvote if site has downvotes disabled
|
2022-10-27 09:24:07 +00:00
|
|
|
check_downvotes_enabled(data.score, &local_site)?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
// Check for a community ban
|
|
|
|
let post_id = data.post_id;
|
2022-11-28 14:29:33 +00:00
|
|
|
let post = Post::read(context.pool(), post_id).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
check_community_ban(local_user_view.person.id, post.community_id, context.pool()).await?;
|
|
|
|
check_community_deleted_or_removed(post.community_id, context.pool()).await?;
|
|
|
|
|
|
|
|
let like_form = PostLikeForm {
|
|
|
|
post_id: data.post_id,
|
|
|
|
person_id: local_user_view.person.id,
|
|
|
|
score: data.score,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Remove any likes first
|
|
|
|
let person_id = local_user_view.person.id;
|
2022-11-09 10:05:00 +00:00
|
|
|
|
|
|
|
PostLike::remove(context.pool(), person_id, post_id).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
// Only add the like if the score isnt 0
|
|
|
|
let do_add = like_form.score != 0 && (like_form.score == 1 || like_form.score == -1);
|
|
|
|
if do_add {
|
2023-05-23 23:00:19 +00:00
|
|
|
PostLike::like(context.pool(), &like_form)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2022-04-13 18:12:25 +00:00
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "couldnt_like_post"))?;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mark the post as read
|
|
|
|
mark_post_as_read(person_id, post_id, context.pool()).await?;
|
|
|
|
|
2023-04-13 10:53:55 +00:00
|
|
|
context
|
|
|
|
.send_post_ws_message(
|
|
|
|
&UserOperation::CreatePostLike,
|
|
|
|
data.post_id,
|
|
|
|
websocket_id,
|
|
|
|
Some(local_user_view.person.id),
|
|
|
|
)
|
|
|
|
.await
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|
|
|
|
}
|