use crate::{ activities::{ deletion::{receive_delete_action, verify_delete_activity, DeletableObjects}, generate_activity_id, }, insert_received_activity, objects::person::ApubPerson, protocol::activities::deletion::{delete::Delete, undo_delete::UndoDelete}, }; use activitypub_federation::{config::Data, kinds::activity::UndoType, traits::ActivityHandler}; use lemmy_api_common::context::LemmyContext; 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, LemmyErrorType}; use url::Url; #[async_trait::async_trait] impl ActivityHandler for UndoDelete { type DataType = LemmyContext; type Error = LemmyError; fn id(&self) -> &Url { &self.id } fn actor(&self) -> &Url { self.actor.inner() } async fn verify(&self, data: &Data) -> Result<(), Self::Error> { insert_received_activity(&self.id, data).await?; self.object.verify(data).await?; verify_delete_activity(&self.object, self.object.summary.is_some(), data).await?; Ok(()) } #[tracing::instrument(skip_all)] async fn receive(self, context: &Data) -> Result<(), LemmyError> { if self.object.summary.is_some() { UndoDelete::receive_undo_remove_action( &self.actor.dereference(context).await?, self.object.object.id(), context, ) .await } else { receive_delete_action(self.object.object.id(), &self.actor, false, None, context).await } } } impl UndoDelete { #[tracing::instrument(skip_all)] pub(in crate::activities::deletion) fn new( actor: &ApubPerson, object: DeletableObjects, to: Url, community: Option<&Community>, summary: Option, context: &Data, ) -> Result { let object = Delete::new(actor, object, to.clone(), community, summary, context)?; let id = generate_activity_id( UndoType::Undo, &context.settings().get_protocol_and_hostname(), )?; let cc: Option = community.map(|c| c.actor_id.clone().into()); Ok(UndoDelete { actor: actor.actor_id.clone().into(), to: vec![to], object, cc: cc.into_iter().collect(), kind: UndoType::Undo, id, audience: community.map(|c| c.actor_id.clone().into()), }) } #[tracing::instrument(skip_all)] pub(in crate::activities) async fn receive_undo_remove_action( actor: &ApubPerson, object: &Url, context: &Data, ) -> Result<(), LemmyError> { match DeletableObjects::read_from_db(object, context).await? { DeletableObjects::Community(community) => { if community.local { Err(LemmyErrorType::OnlyLocalAdminCanRestoreCommunity)? } let form = ModRemoveCommunityForm { mod_person_id: actor.id, community_id: community.id, removed: Some(false), reason: None, }; ModRemoveCommunity::create(&mut context.pool(), &form).await?; Community::update( &mut context.pool(), community.id, &CommunityUpdateForm { removed: Some(false), ..Default::default() }, ) .await?; } DeletableObjects::Post(post) => { let form = ModRemovePostForm { mod_person_id: actor.id, post_id: post.id, removed: Some(false), reason: None, }; ModRemovePost::create(&mut context.pool(), &form).await?; Post::update( &mut context.pool(), post.id, &PostUpdateForm { removed: Some(false), ..Default::default() }, ) .await?; } DeletableObjects::Comment(comment) => { let form = ModRemoveCommentForm { mod_person_id: actor.id, comment_id: comment.id, removed: Some(false), reason: None, }; ModRemoveComment::create(&mut context.pool(), &form).await?; Comment::update( &mut context.pool(), comment.id, &CommentUpdateForm { removed: Some(false), ..Default::default() }, ) .await?; } DeletableObjects::PrivateMessage(_) => unimplemented!(), DeletableObjects::Person { .. } => unimplemented!(), } Ok(()) } }