mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-28 07:11:20 +00:00
5dea21d531
* Convert all Result<..., LemmyError> into LemmyResult<...> Fixes #4613 * Fixing clippy.
25 lines
771 B
Rust
25 lines
771 B
Rust
use actix_web::web::{Data, Json, Query};
|
|
use lemmy_api_common::{
|
|
build_response::build_comment_response,
|
|
comment::{CommentResponse, GetComment},
|
|
context::LemmyContext,
|
|
utils::check_private_instance,
|
|
};
|
|
use lemmy_db_schema::source::local_site::LocalSite;
|
|
use lemmy_db_views::structs::LocalUserView;
|
|
use lemmy_utils::error::LemmyResult;
|
|
|
|
#[tracing::instrument(skip(context))]
|
|
pub async fn get_comment(
|
|
data: Query<GetComment>,
|
|
context: Data<LemmyContext>,
|
|
local_user_view: Option<LocalUserView>,
|
|
) -> LemmyResult<Json<CommentResponse>> {
|
|
let local_site = LocalSite::read(&mut context.pool()).await?;
|
|
|
|
check_private_instance(&local_user_view, &local_site)?;
|
|
|
|
Ok(Json(
|
|
build_comment_response(&context, data.id, local_user_view, vec![]).await?,
|
|
))
|
|
}
|