mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-12-05 02:31:21 +00:00
Nutomic
ad90cd77f9
* add private visibility * filter private communities in post_view.rs * also filter in comment_view * community follower state * remove unused method * sql fmt * add CommunityFollower.approved_by * implement api endpoints * api changes * only admins can create private community for now * add local api tests * fix api tests * follow remote private community * use authorized fetch for content in private community * federate community visibility * dont mark content in private community as public * expose ApprovalRequired in api * also check content fetchable for outbox/featured * address private community content to followers * implement reject activity * fix tests * add files * remove local api tests * dont use delay * is_new_instance * single query for is_new_instance * return subscribed type for pending follow * working * need to catch errors in waitUntil * clippy * fix query * lint for unused async * diesel.toml comment * add comment * avoid db reads * rename approved_by to approver_id * add helper * form init * list pending follows should return items for all communities * clippy * ci * fix down migration * fix api tests * references * rename * run git diff * ci * fix schema check * fix joins * ci * ci * skip_serializing_none * fix test --------- Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
43 lines
1.6 KiB
Rust
43 lines
1.6 KiB
Rust
use super::check_community_content_fetchable;
|
|
use crate::{
|
|
http::{create_apub_response, create_apub_tombstone_response, redirect_remote_object},
|
|
objects::comment::ApubComment,
|
|
};
|
|
use activitypub_federation::{config::Data, traits::Object};
|
|
use actix_web::{web::Path, HttpRequest, HttpResponse};
|
|
use lemmy_api_common::context::LemmyContext;
|
|
use lemmy_db_schema::{
|
|
newtypes::CommentId,
|
|
source::{comment::Comment, community::Community, post::Post},
|
|
traits::Crud,
|
|
};
|
|
use lemmy_utils::error::LemmyResult;
|
|
use serde::Deserialize;
|
|
|
|
#[derive(Deserialize)]
|
|
pub(crate) struct CommentQuery {
|
|
comment_id: String,
|
|
}
|
|
|
|
/// Return the ActivityPub json representation of a local comment over HTTP.
|
|
#[tracing::instrument(skip_all)]
|
|
pub(crate) async fn get_apub_comment(
|
|
info: Path<CommentQuery>,
|
|
context: Data<LemmyContext>,
|
|
request: HttpRequest,
|
|
) -> LemmyResult<HttpResponse> {
|
|
let id = CommentId(info.comment_id.parse::<i32>()?);
|
|
// Can't use CommentView here because it excludes deleted/removed/local-only items
|
|
let comment: ApubComment = Comment::read(&mut context.pool(), id).await?.into();
|
|
let post = Post::read(&mut context.pool(), comment.post_id).await?;
|
|
let community = Community::read(&mut context.pool(), post.community_id).await?;
|
|
check_community_content_fetchable(&community, &request, &context).await?;
|
|
|
|
if !comment.local {
|
|
Ok(redirect_remote_object(&comment.ap_id))
|
|
} else if !comment.deleted && !comment.removed {
|
|
create_apub_response(&comment.into_json(&context).await?)
|
|
} else {
|
|
create_apub_tombstone_response(comment.ap_id.clone())
|
|
}
|
|
}
|