mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-12-01 00:31:21 +00:00
Nutomic
353a1fe0a0
* Rewrite following activities * Rewrite person apub * Rewrite community apub * Rewrite private message activity sending
120 lines
3.8 KiB
Rust
120 lines
3.8 KiB
Rust
use crate::{
|
|
activities::{
|
|
comment::send_websocket_message as send_comment_message,
|
|
community::send_websocket_message as send_community_message,
|
|
post::send_websocket_message as send_post_message,
|
|
removal::remove::RemovePostCommentCommunityOrMod,
|
|
verify_activity,
|
|
verify_mod_action,
|
|
verify_person_in_community,
|
|
},
|
|
fetcher::{
|
|
community::get_or_fetch_and_upsert_community,
|
|
objects::get_or_fetch_and_insert_post_or_comment,
|
|
},
|
|
PostOrComment,
|
|
};
|
|
use activitystreams::activity::kind::UndoType;
|
|
use anyhow::anyhow;
|
|
use lemmy_api_common::blocking;
|
|
use lemmy_apub_lib::{values::PublicUrl, ActivityCommonFields, ActivityHandler};
|
|
use lemmy_db_queries::source::{comment::Comment_, community::Community_, post::Post_};
|
|
use lemmy_db_schema::source::{comment::Comment, community::Community, post::Post};
|
|
use lemmy_utils::LemmyError;
|
|
use lemmy_websocket::{LemmyContext, UserOperationCrud};
|
|
use url::Url;
|
|
|
|
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct UndoRemovePostCommentOrCommunity {
|
|
to: PublicUrl,
|
|
object: RemovePostCommentCommunityOrMod,
|
|
cc: [Url; 1],
|
|
#[serde(rename = "type")]
|
|
kind: UndoType,
|
|
#[serde(flatten)]
|
|
common: ActivityCommonFields,
|
|
}
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
impl ActivityHandler for UndoRemovePostCommentOrCommunity {
|
|
async fn verify(
|
|
&self,
|
|
context: &LemmyContext,
|
|
request_counter: &mut i32,
|
|
) -> Result<(), LemmyError> {
|
|
verify_activity(self.common())?;
|
|
let object_community =
|
|
get_or_fetch_and_upsert_community(&self.object.object, context, request_counter).await;
|
|
// removing a community
|
|
if object_community.is_ok() {
|
|
verify_mod_action(&self.common.actor, self.object.object.clone(), context).await?;
|
|
}
|
|
// removing a post or comment
|
|
else {
|
|
verify_person_in_community(&self.common.actor, &self.cc[0], context, request_counter).await?;
|
|
verify_mod_action(&self.common.actor, self.cc[0].clone(), context).await?;
|
|
}
|
|
self.object.verify(context, request_counter).await?;
|
|
// dont check that actor and object.actor are identical, so that one mod can
|
|
// undo the action of another
|
|
Ok(())
|
|
}
|
|
|
|
async fn receive(
|
|
self,
|
|
context: &LemmyContext,
|
|
request_counter: &mut i32,
|
|
) -> Result<(), LemmyError> {
|
|
let object_community =
|
|
get_or_fetch_and_upsert_community(&self.object.object, context, request_counter).await;
|
|
// restoring a community
|
|
if let Ok(community) = object_community {
|
|
if community.local {
|
|
return Err(anyhow!("Only local admin can undo remove community").into());
|
|
}
|
|
let deleted_community = blocking(context.pool(), move |conn| {
|
|
Community::update_removed(conn, community.id, false)
|
|
})
|
|
.await??;
|
|
|
|
send_community_message(
|
|
deleted_community.id,
|
|
UserOperationCrud::EditCommunity,
|
|
context,
|
|
)
|
|
.await
|
|
}
|
|
// restoring a post or comment
|
|
else {
|
|
match get_or_fetch_and_insert_post_or_comment(&self.object.object, context, request_counter)
|
|
.await?
|
|
{
|
|
PostOrComment::Post(post) => {
|
|
let removed_post = blocking(context.pool(), move |conn| {
|
|
Post::update_removed(conn, post.id, false)
|
|
})
|
|
.await??;
|
|
send_post_message(removed_post.id, UserOperationCrud::EditPost, context).await
|
|
}
|
|
PostOrComment::Comment(comment) => {
|
|
let removed_comment = blocking(context.pool(), move |conn| {
|
|
Comment::update_removed(conn, comment.id, false)
|
|
})
|
|
.await??;
|
|
send_comment_message(
|
|
removed_comment.id,
|
|
vec![],
|
|
UserOperationCrud::EditComment,
|
|
context,
|
|
)
|
|
.await
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fn common(&self) -> &ActivityCommonFields {
|
|
&self.common
|
|
}
|
|
}
|