mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-02-04 16:14:48 +00:00
Nutomic
f3f1ea0e9e
* Remove instrument macros * shear * revert test change * clippy, another unused function
29 lines
862 B
Rust
29 lines
862 B
Rust
use actix_web::web::{Data, Json, Query};
|
|
use lemmy_api_common::{
|
|
context::LemmyContext,
|
|
post::{ListPostLikes, ListPostLikesResponse},
|
|
utils::is_mod_or_admin,
|
|
};
|
|
use lemmy_db_schema::{source::post::Post, traits::Crud};
|
|
use lemmy_db_views::structs::{LocalUserView, VoteView};
|
|
use lemmy_utils::error::LemmyResult;
|
|
|
|
/// Lists likes for a post
|
|
pub async fn list_post_likes(
|
|
data: Query<ListPostLikes>,
|
|
context: Data<LemmyContext>,
|
|
local_user_view: LocalUserView,
|
|
) -> LemmyResult<Json<ListPostLikesResponse>> {
|
|
let post = Post::read(&mut context.pool(), data.post_id).await?;
|
|
is_mod_or_admin(
|
|
&mut context.pool(),
|
|
&local_user_view.person,
|
|
post.community_id,
|
|
)
|
|
.await?;
|
|
|
|
let post_likes =
|
|
VoteView::list_for_post(&mut context.pool(), data.post_id, data.page, data.limit).await?;
|
|
|
|
Ok(Json(ListPostLikesResponse { post_likes }))
|
|
}
|