2022-12-01 20:52:49 +00:00
|
|
|
use crate::{
|
|
|
|
activities::verify_community_matches,
|
|
|
|
local_instance,
|
|
|
|
objects::{community::ApubCommunity, person::ApubPerson},
|
|
|
|
protocol::{activities::deletion::delete::Delete, InCommunity},
|
|
|
|
};
|
2022-06-02 14:33:41 +00:00
|
|
|
use activitypub_federation::{core::object_id::ObjectId, deser::helpers::deserialize_one_or_many};
|
2021-11-19 17:47:06 +00:00
|
|
|
use activitystreams_kinds::activity::UndoType;
|
2022-11-26 02:04:46 +00:00
|
|
|
use lemmy_api_common::LemmyContext;
|
2022-12-01 20:52:49 +00:00
|
|
|
use lemmy_utils::error::LemmyError;
|
2021-11-03 17:33:51 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2022-12-01 20:52:49 +00:00
|
|
|
use serde_with::skip_serializing_none;
|
2021-11-03 17:33:51 +00:00
|
|
|
use url::Url;
|
2021-10-29 10:32:42 +00:00
|
|
|
|
2022-12-01 20:52:49 +00:00
|
|
|
#[skip_serializing_none]
|
2021-11-03 17:33:51 +00:00
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
2021-10-29 10:32:42 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct UndoDelete {
|
|
|
|
pub(crate) actor: ObjectId<ApubPerson>,
|
2022-06-02 14:33:41 +00:00
|
|
|
#[serde(deserialize_with = "deserialize_one_or_many")]
|
2021-10-29 10:32:42 +00:00
|
|
|
pub(crate) to: Vec<Url>,
|
|
|
|
pub(crate) object: Delete,
|
2022-02-17 22:04:01 +00:00
|
|
|
#[serde(rename = "type")]
|
|
|
|
pub(crate) kind: UndoType,
|
|
|
|
pub(crate) id: Url,
|
2022-12-01 20:52:49 +00:00
|
|
|
pub(crate) audience: Option<ObjectId<ApubCommunity>>,
|
2022-02-17 22:04:01 +00:00
|
|
|
|
2022-06-02 14:33:41 +00:00
|
|
|
#[serde(deserialize_with = "deserialize_one_or_many", default)]
|
2022-02-14 15:14:24 +00:00
|
|
|
#[serde(skip_serializing_if = "Vec::is_empty")]
|
2021-10-29 10:32:42 +00:00
|
|
|
pub(crate) cc: Vec<Url>,
|
|
|
|
}
|
2022-12-01 20:52:49 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl InCommunity for UndoDelete {
|
|
|
|
async fn community(
|
|
|
|
&self,
|
|
|
|
context: &LemmyContext,
|
|
|
|
request_counter: &mut i32,
|
|
|
|
) -> Result<ApubCommunity, LemmyError> {
|
|
|
|
let object_community = self.object.community(context, request_counter).await?;
|
|
|
|
if let Some(audience) = &self.audience {
|
|
|
|
let audience = audience
|
|
|
|
.dereference(context, local_instance(context).await, request_counter)
|
|
|
|
.await?;
|
|
|
|
verify_community_matches(&audience, object_community.id)?;
|
|
|
|
Ok(audience)
|
|
|
|
} else {
|
|
|
|
Ok(object_community)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|