2021-07-17 16:20:44 +00:00
|
|
|
use crate::{
|
2021-10-29 10:32:42 +00:00
|
|
|
activity_lists::GroupInboxActivities,
|
2021-10-27 16:03:07 +00:00
|
|
|
collections::{
|
2021-10-25 14:15:03 +00:00
|
|
|
community_moderators::ApubCommunityModerators,
|
|
|
|
community_outbox::ApubCommunityOutbox,
|
2021-10-27 16:03:07 +00:00
|
|
|
CommunityContext,
|
|
|
|
},
|
2021-10-06 20:20:05 +00:00
|
|
|
generate_outbox_url,
|
2022-06-02 14:33:41 +00:00
|
|
|
http::{create_apub_response, create_apub_tombstone_response, receive_lemmy_activity},
|
|
|
|
local_instance,
|
|
|
|
objects::{community::ApubCommunity, person::ApubPerson},
|
|
|
|
protocol::collections::group_followers::GroupFollowers,
|
|
|
|
};
|
|
|
|
use activitypub_federation::{
|
|
|
|
core::object_id::ObjectId,
|
|
|
|
deser::context::WithContext,
|
|
|
|
traits::ApubObject,
|
2021-10-29 10:32:42 +00:00
|
|
|
};
|
2022-06-02 14:33:41 +00:00
|
|
|
use actix_web::{web, HttpRequest, HttpResponse};
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_api_common::utils::blocking;
|
2022-01-27 16:39:22 +00:00
|
|
|
use lemmy_db_schema::{source::community::Community, traits::ApubActor};
|
2022-06-02 14:33:41 +00:00
|
|
|
use lemmy_utils::error::LemmyError;
|
2021-10-29 10:32:42 +00:00
|
|
|
use lemmy_websocket::LemmyContext;
|
|
|
|
use serde::Deserialize;
|
2020-10-12 14:10:09 +00:00
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
2021-03-08 13:40:28 +00:00
|
|
|
pub(crate) struct CommunityQuery {
|
2020-10-12 14:10:09 +00:00
|
|
|
community_name: String,
|
|
|
|
}
|
|
|
|
|
2020-10-19 14:29:35 +00:00
|
|
|
/// Return the ActivityPub json representation of a local community over HTTP.
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-03-08 13:40:28 +00:00
|
|
|
pub(crate) async fn get_apub_community_http(
|
2020-10-12 14:10:09 +00:00
|
|
|
info: web::Path<CommunityQuery>,
|
|
|
|
context: web::Data<LemmyContext>,
|
2021-12-14 13:30:37 +00:00
|
|
|
) -> Result<HttpResponse, LemmyError> {
|
2021-10-18 21:36:44 +00:00
|
|
|
let community: ApubCommunity = blocking(context.pool(), move |conn| {
|
2020-10-12 14:10:09 +00:00
|
|
|
Community::read_from_name(conn, &info.community_name)
|
|
|
|
})
|
2021-10-18 21:36:44 +00:00
|
|
|
.await??
|
|
|
|
.into();
|
2020-10-12 14:10:09 +00:00
|
|
|
|
|
|
|
if !community.deleted {
|
2021-11-06 12:37:55 +00:00
|
|
|
let apub = community.into_apub(&**context).await?;
|
2020-10-12 14:10:09 +00:00
|
|
|
|
|
|
|
Ok(create_apub_response(&apub))
|
|
|
|
} else {
|
2022-06-02 14:33:41 +00:00
|
|
|
Ok(create_apub_tombstone_response(community.actor_id.clone()))
|
2020-10-12 14:10:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Apub inbox rewrite (#1652)
* start to implement apub inbox routing lib
* got something that almost works
* it compiles!
* implemented some more
* move library code to separate crate (most of it)
* convert private message handlers
* convert all comment receivers (except undo comment)
* convert post receiver
* add verify trait
* convert community receivers
* add cc field for all activities which i forgot before
* convert inbox functions, add missing checks
* convert undo like/dislike receivers
* convert undo_delete and undo_remove receivers
* move block/unblock activities
* convert remaining activity receivers
* reimplement http signature verification and other checks
* also use actor type for routing, VerifyActivity and SendActivity traits
* cleanup and restructure apub_receive code
* wip: try to fix activity routing
* implement a (very bad) derive macro for activityhandler
* working activity routing!
* rework pm verify(), fix tests and confirm manually
also remove inbox username check which was broken
* rework following verify(), fix tests and test manually
* fix post/comment create/update, rework voting
* Rewrite remove/delete post/comment, fix tests, test manually
* Rework and fix (un)block user, announce, update post
* some code cleanup
* rework delete/remove activity receivers (still quite messy)
* rewrite, test and fix add/remove mod, update community handlers
* add docs for ActivityHandler derive macro
* dont try to compile macro comments
2021-07-17 16:08:46 +00:00
|
|
|
/// Handler for all incoming receive to community inboxes.
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
Apub inbox rewrite (#1652)
* start to implement apub inbox routing lib
* got something that almost works
* it compiles!
* implemented some more
* move library code to separate crate (most of it)
* convert private message handlers
* convert all comment receivers (except undo comment)
* convert post receiver
* add verify trait
* convert community receivers
* add cc field for all activities which i forgot before
* convert inbox functions, add missing checks
* convert undo like/dislike receivers
* convert undo_delete and undo_remove receivers
* move block/unblock activities
* convert remaining activity receivers
* reimplement http signature verification and other checks
* also use actor type for routing, VerifyActivity and SendActivity traits
* cleanup and restructure apub_receive code
* wip: try to fix activity routing
* implement a (very bad) derive macro for activityhandler
* working activity routing!
* rework pm verify(), fix tests and confirm manually
also remove inbox username check which was broken
* rework following verify(), fix tests and test manually
* fix post/comment create/update, rework voting
* Rewrite remove/delete post/comment, fix tests, test manually
* Rework and fix (un)block user, announce, update post
* some code cleanup
* rework delete/remove activity receivers (still quite messy)
* rewrite, test and fix add/remove mod, update community handlers
* add docs for ActivityHandler derive macro
* dont try to compile macro comments
2021-07-17 16:08:46 +00:00
|
|
|
pub async fn community_inbox(
|
|
|
|
request: HttpRequest,
|
2022-06-02 14:33:41 +00:00
|
|
|
payload: String,
|
Apub inbox rewrite (#1652)
* start to implement apub inbox routing lib
* got something that almost works
* it compiles!
* implemented some more
* move library code to separate crate (most of it)
* convert private message handlers
* convert all comment receivers (except undo comment)
* convert post receiver
* add verify trait
* convert community receivers
* add cc field for all activities which i forgot before
* convert inbox functions, add missing checks
* convert undo like/dislike receivers
* convert undo_delete and undo_remove receivers
* move block/unblock activities
* convert remaining activity receivers
* reimplement http signature verification and other checks
* also use actor type for routing, VerifyActivity and SendActivity traits
* cleanup and restructure apub_receive code
* wip: try to fix activity routing
* implement a (very bad) derive macro for activityhandler
* working activity routing!
* rework pm verify(), fix tests and confirm manually
also remove inbox username check which was broken
* rework following verify(), fix tests and test manually
* fix post/comment create/update, rework voting
* Rewrite remove/delete post/comment, fix tests, test manually
* Rework and fix (un)block user, announce, update post
* some code cleanup
* rework delete/remove activity receivers (still quite messy)
* rewrite, test and fix add/remove mod, update community handlers
* add docs for ActivityHandler derive macro
* dont try to compile macro comments
2021-07-17 16:08:46 +00:00
|
|
|
context: web::Data<LemmyContext>,
|
|
|
|
) -> Result<HttpResponse, LemmyError> {
|
2022-06-02 14:33:41 +00:00
|
|
|
receive_lemmy_activity::<WithContext<GroupInboxActivities>, ApubPerson>(request, payload, context)
|
|
|
|
.await
|
Apub inbox rewrite (#1652)
* start to implement apub inbox routing lib
* got something that almost works
* it compiles!
* implemented some more
* move library code to separate crate (most of it)
* convert private message handlers
* convert all comment receivers (except undo comment)
* convert post receiver
* add verify trait
* convert community receivers
* add cc field for all activities which i forgot before
* convert inbox functions, add missing checks
* convert undo like/dislike receivers
* convert undo_delete and undo_remove receivers
* move block/unblock activities
* convert remaining activity receivers
* reimplement http signature verification and other checks
* also use actor type for routing, VerifyActivity and SendActivity traits
* cleanup and restructure apub_receive code
* wip: try to fix activity routing
* implement a (very bad) derive macro for activityhandler
* working activity routing!
* rework pm verify(), fix tests and confirm manually
also remove inbox username check which was broken
* rework following verify(), fix tests and test manually
* fix post/comment create/update, rework voting
* Rewrite remove/delete post/comment, fix tests, test manually
* Rework and fix (un)block user, announce, update post
* some code cleanup
* rework delete/remove activity receivers (still quite messy)
* rewrite, test and fix add/remove mod, update community handlers
* add docs for ActivityHandler derive macro
* dont try to compile macro comments
2021-07-17 16:08:46 +00:00
|
|
|
}
|
|
|
|
|
2020-10-12 14:10:09 +00:00
|
|
|
/// Returns an empty followers collection, only populating the size (for privacy).
|
2021-03-08 13:40:28 +00:00
|
|
|
pub(crate) async fn get_apub_community_followers(
|
2020-10-12 14:10:09 +00:00
|
|
|
info: web::Path<CommunityQuery>,
|
|
|
|
context: web::Data<LemmyContext>,
|
2021-12-14 13:30:37 +00:00
|
|
|
) -> Result<HttpResponse, LemmyError> {
|
2020-10-12 14:10:09 +00:00
|
|
|
let community = blocking(context.pool(), move |conn| {
|
2021-07-05 16:07:26 +00:00
|
|
|
Community::read_from_name(conn, &info.community_name)
|
2020-10-12 14:10:09 +00:00
|
|
|
})
|
|
|
|
.await??;
|
2021-11-01 13:05:20 +00:00
|
|
|
let followers = GroupFollowers::new(community, &context).await?;
|
2021-10-28 15:52:11 +00:00
|
|
|
Ok(create_apub_response(&followers))
|
2020-10-12 14:10:09 +00:00
|
|
|
}
|
|
|
|
|
2020-10-19 14:29:35 +00:00
|
|
|
/// Returns the community outbox, which is populated by a maximum of 20 posts (but no other
|
|
|
|
/// activites like votes or comments).
|
2021-03-08 13:40:28 +00:00
|
|
|
pub(crate) async fn get_apub_community_outbox(
|
2020-10-12 14:10:09 +00:00
|
|
|
info: web::Path<CommunityQuery>,
|
|
|
|
context: web::Data<LemmyContext>,
|
2021-12-14 13:30:37 +00:00
|
|
|
) -> Result<HttpResponse, LemmyError> {
|
2020-10-12 14:10:09 +00:00
|
|
|
let community = blocking(context.pool(), move |conn| {
|
2021-07-05 16:07:26 +00:00
|
|
|
Community::read_from_name(conn, &info.community_name)
|
2020-10-12 14:10:09 +00:00
|
|
|
})
|
|
|
|
.await??;
|
2021-11-05 00:24:10 +00:00
|
|
|
let id = ObjectId::new(generate_outbox_url(&community.actor_id)?);
|
2021-10-27 16:03:07 +00:00
|
|
|
let outbox_data = CommunityContext(community.into(), context.get_ref().clone());
|
2021-12-06 22:54:34 +00:00
|
|
|
let outbox: ApubCommunityOutbox = id
|
2022-06-02 14:33:41 +00:00
|
|
|
.dereference::<LemmyError>(&outbox_data, local_instance(&context), &mut 0)
|
2021-12-06 22:54:34 +00:00
|
|
|
.await?;
|
2021-11-06 12:37:55 +00:00
|
|
|
Ok(create_apub_response(&outbox.into_apub(&outbox_data).await?))
|
2021-03-08 13:40:28 +00:00
|
|
|
}
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-03-08 13:40:28 +00:00
|
|
|
pub(crate) async fn get_apub_community_moderators(
|
2020-12-16 20:07:48 +00:00
|
|
|
info: web::Path<CommunityQuery>,
|
|
|
|
context: web::Data<LemmyContext>,
|
2021-12-14 13:30:37 +00:00
|
|
|
) -> Result<HttpResponse, LemmyError> {
|
2021-10-18 21:36:44 +00:00
|
|
|
let community: ApubCommunity = blocking(context.pool(), move |conn| {
|
2021-07-05 16:07:26 +00:00
|
|
|
Community::read_from_name(conn, &info.community_name)
|
2020-12-16 20:07:48 +00:00
|
|
|
})
|
2021-10-18 21:36:44 +00:00
|
|
|
.await??
|
|
|
|
.into();
|
2021-11-05 00:24:10 +00:00
|
|
|
let id = ObjectId::new(generate_outbox_url(&community.actor_id)?);
|
2021-10-27 16:03:07 +00:00
|
|
|
let outbox_data = CommunityContext(community, context.get_ref().clone());
|
2021-12-06 22:54:34 +00:00
|
|
|
let moderators: ApubCommunityModerators = id
|
2022-06-02 14:33:41 +00:00
|
|
|
.dereference::<LemmyError>(&outbox_data, local_instance(&context), &mut 0)
|
2021-12-06 22:54:34 +00:00
|
|
|
.await?;
|
2021-10-27 16:03:07 +00:00
|
|
|
Ok(create_apub_response(
|
2021-11-06 12:37:55 +00:00
|
|
|
&moderators.into_apub(&outbox_data).await?,
|
2021-10-27 16:03:07 +00:00
|
|
|
))
|
2020-12-16 20:07:48 +00:00
|
|
|
}
|