2023-08-01 13:53:36 +00:00
|
|
|
use activitypub_federation::config::Data;
|
|
|
|
use actix_web::web::Json;
|
2022-04-13 18:12:25 +00:00
|
|
|
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},
|
2023-08-01 13:53:36 +00:00
|
|
|
send_activity::{ActivityChannel, SendActivityData},
|
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::{
|
2023-08-01 13:53:36 +00:00
|
|
|
community::Community,
|
2022-10-27 09:24:07 +00:00
|
|
|
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};
|
2023-08-01 13:53:36 +00:00
|
|
|
use std::ops::Deref;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
pub async fn like_post(
|
|
|
|
data: Json<CreatePostLike>,
|
|
|
|
context: Data<LemmyContext>,
|
|
|
|
) -> Result<Json<PostResponse>, LemmyError> {
|
|
|
|
let local_user_view = local_user_view_from_jwt(&data.auth, &context).await?;
|
|
|
|
let local_site = LocalSite::read(&mut context.pool()).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
// Don't do a downvote if site has downvotes disabled
|
|
|
|
check_downvotes_enabled(data.score, &local_site)?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
// Check for a community ban
|
|
|
|
let post_id = data.post_id;
|
|
|
|
let post = Post::read(&mut context.pool(), post_id).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-08-01 13:53:36 +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
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
let like_form = PostLikeForm {
|
|
|
|
post_id: data.post_id,
|
|
|
|
person_id: local_user_view.person.id,
|
|
|
|
score: data.score,
|
|
|
|
};
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
// Remove any likes first
|
|
|
|
let person_id = local_user_view.person.id;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
PostLike::remove(&mut context.pool(), person_id, post_id).await?;
|
2022-11-09 10:05:00 +00:00
|
|
|
|
2023-08-01 13:53:36 +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 {
|
|
|
|
PostLike::like(&mut context.pool(), &like_form)
|
|
|
|
.await
|
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntLikePost)?;
|
|
|
|
}
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
// Mark the post as read
|
|
|
|
mark_post_as_read(person_id, post_id, &mut context.pool()).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
ActivityChannel::submit_activity(
|
|
|
|
SendActivityData::LikePostOrComment(
|
|
|
|
post.ap_id,
|
|
|
|
local_user_view.person.clone(),
|
|
|
|
Community::read(&mut context.pool(), post.community_id).await?,
|
|
|
|
data.score,
|
|
|
|
),
|
|
|
|
&context,
|
|
|
|
)
|
|
|
|
.await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-08-02 16:52:41 +00:00
|
|
|
build_post_response(
|
|
|
|
context.deref(),
|
|
|
|
post.community_id,
|
|
|
|
local_user_view.person.id,
|
|
|
|
post_id,
|
|
|
|
)
|
|
|
|
.await
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|