2022-04-13 18:12:25 +00:00
|
|
|
use crate::Perform;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
use lemmy_api_common::{
|
2023-06-06 16:27:22 +00:00
|
|
|
build_response::build_post_response,
|
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,
|
2023-05-25 14:50:07 +00:00
|
|
|
local_user_view_from_jwt,
|
2022-05-03 17:44:13 +00:00
|
|
|
mark_post_as_read,
|
|
|
|
},
|
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},
|
|
|
|
};
|
2023-07-10 14:50:07 +00:00
|
|
|
use lemmy_utils::error::{LemmyError, LemmyErrorExt, LemmyErrorType};
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl Perform for CreatePostLike {
|
|
|
|
type Response = PostResponse;
|
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
async fn perform(&self, context: &Data<LemmyContext>) -> Result<PostResponse, LemmyError> {
|
2022-04-13 18:12:25 +00:00
|
|
|
let data: &CreatePostLike = self;
|
2023-05-25 14:50:07 +00:00
|
|
|
let local_user_view = local_user_view_from_jwt(&data.auth, context).await?;
|
2023-07-11 13:09:59 +00:00
|
|
|
let local_site = LocalSite::read(&mut 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;
|
2023-07-11 13:09:59 +00:00
|
|
|
let post = Post::read(&mut context.pool(), post_id).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-07-11 13:09:59 +00:00
|
|
|
check_community_ban(
|
|
|
|
local_user_view.person.id,
|
|
|
|
post.community_id,
|
|
|
|
&mut context.pool(),
|
|
|
|
)
|
|
|
|
.await?;
|
|
|
|
check_community_deleted_or_removed(post.community_id, &mut context.pool()).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2023-07-11 13:09:59 +00:00
|
|
|
PostLike::remove(&mut 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-07-11 13:09:59 +00:00
|
|
|
PostLike::like(&mut context.pool(), &like_form)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2023-07-10 14:50:07 +00:00
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntLikePost)?;
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mark the post as read
|
2023-07-11 13:09:59 +00:00
|
|
|
mark_post_as_read(person_id, post_id, &mut context.pool()).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
build_post_response(
|
|
|
|
context,
|
|
|
|
post.community_id,
|
|
|
|
local_user_view.person.id,
|
|
|
|
post_id,
|
|
|
|
)
|
|
|
|
.await
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|
|
|
|
}
|