use crate::{ activities::{ community::announce::GetCommunity, deletion::{receive_delete_action, verify_delete_activity, DeletableObjects}, generate_activity_id, }, check_apub_id_valid, fetch_local_site_data, local_instance, objects::{community::ApubCommunity, person::ApubPerson}, protocol::{activities::deletion::delete::Delete, IdOrNestedObject}, }; use activitypub_federation::{core::object_id::ObjectId, data::Data, traits::ActivityHandler}; use activitystreams_kinds::activity::DeleteType; use anyhow::anyhow; use lemmy_api_common::utils::blocking; use lemmy_db_schema::{ source::{ comment::{Comment, CommentUpdateForm}, community::{Community, CommunityUpdateForm}, moderator::{ ModRemoveComment, ModRemoveCommentForm, ModRemoveCommunity, ModRemoveCommunityForm, ModRemovePost, ModRemovePostForm, }, post::{Post, PostUpdateForm}, }, traits::Crud, }; use lemmy_utils::error::LemmyError; use lemmy_websocket::{ send::{send_comment_ws_message_simple, send_community_ws_message, send_post_ws_message}, LemmyContext, UserOperationCrud, }; use url::Url; #[async_trait::async_trait(?Send)] impl ActivityHandler for Delete { type DataType = LemmyContext; type Error = LemmyError; fn id(&self) -> &Url { &self.id } fn actor(&self) -> &Url { self.actor.inner() } #[tracing::instrument(skip_all)] async fn verify( &self, context: &Data, request_counter: &mut i32, ) -> Result<(), LemmyError> { let local_site_data = blocking(context.pool(), fetch_local_site_data).await??; check_apub_id_valid(self.id(), &local_site_data, context.settings()) .map_err(LemmyError::from_message)?; verify_delete_activity(self, self.summary.is_some(), context, request_counter).await?; Ok(()) } #[tracing::instrument(skip_all)] async fn receive( self, context: &Data, request_counter: &mut i32, ) -> Result<(), LemmyError> { if let Some(reason) = self.summary { // We set reason to empty string if it doesn't exist, to distinguish between delete and // remove. Here we change it back to option, so we don't write it to db. let reason = if reason.is_empty() { None } else { Some(reason) }; receive_remove_action( &self .actor .dereference(context, local_instance(context), request_counter) .await?, self.object.id(), reason, context, ) .await } else { receive_delete_action( self.object.id(), &self.actor, true, context, request_counter, ) .await } } } impl Delete { pub(in crate::activities::deletion) fn new( actor: &ApubPerson, object: DeletableObjects, to: Url, community: Option<&Community>, summary: Option, context: &LemmyContext, ) -> Result { let id = generate_activity_id( DeleteType::Delete, &context.settings().get_protocol_and_hostname(), )?; let cc: Option = community.map(|c| c.actor_id.clone().into()); Ok(Delete { actor: ObjectId::new(actor.actor_id.clone()), to: vec![to], object: IdOrNestedObject::Id(object.id()), cc: cc.into_iter().collect(), kind: DeleteType::Delete, summary, id, unparsed: Default::default(), }) } } #[tracing::instrument(skip_all)] pub(in crate::activities) async fn receive_remove_action( actor: &ApubPerson, object: &Url, reason: Option, context: &LemmyContext, ) -> Result<(), LemmyError> { use UserOperationCrud::*; match DeletableObjects::read_from_db(object, context).await? { DeletableObjects::Community(community) => { if community.local { return Err(LemmyError::from_message( "Only local admin can remove community", )); } let form = ModRemoveCommunityForm { mod_person_id: actor.id, community_id: community.id, removed: Some(true), reason, expires: None, }; blocking(context.pool(), move |conn| { ModRemoveCommunity::create(conn, &form) }) .await??; let deleted_community = blocking(context.pool(), move |conn| { Community::update( conn, community.id, &CommunityUpdateForm::builder().removed(Some(true)).build(), ) }) .await??; send_community_ws_message(deleted_community.id, RemoveCommunity, None, None, context).await?; } DeletableObjects::Post(post) => { let form = ModRemovePostForm { mod_person_id: actor.id, post_id: post.id, removed: Some(true), reason, }; blocking(context.pool(), move |conn| { ModRemovePost::create(conn, &form) }) .await??; let removed_post = blocking(context.pool(), move |conn| { Post::update( conn, post.id, &PostUpdateForm::builder().removed(Some(true)).build(), ) }) .await??; send_post_ws_message(removed_post.id, RemovePost, None, None, context).await?; } DeletableObjects::Comment(comment) => { let form = ModRemoveCommentForm { mod_person_id: actor.id, comment_id: comment.id, removed: Some(true), reason, }; blocking(context.pool(), move |conn| { ModRemoveComment::create(conn, &form) }) .await??; let removed_comment = blocking(context.pool(), move |conn| { Comment::update( conn, comment.id, &CommentUpdateForm::builder().removed(Some(true)).build(), ) }) .await??; send_comment_ws_message_simple(removed_comment.id, RemoveComment, context).await?; } DeletableObjects::PrivateMessage(_) => unimplemented!(), } Ok(()) } #[async_trait::async_trait(?Send)] impl GetCommunity for Delete { #[tracing::instrument(skip_all)] async fn get_community( &self, context: &LemmyContext, _request_counter: &mut i32, ) -> Result { let community_id = match DeletableObjects::read_from_db(self.object.id(), context).await? { DeletableObjects::Community(c) => c.id, DeletableObjects::Comment(c) => { let post = blocking(context.pool(), move |conn| Post::read(conn, c.post_id)).await??; post.community_id } DeletableObjects::Post(p) => p.community_id, DeletableObjects::PrivateMessage(_) => { return Err(anyhow!("Private message is not part of community").into()) } }; let community = blocking(context.pool(), move |conn| { Community::read(conn, community_id) }) .await??; Ok(community.into()) } }