Nutomic
234f5c2060
* Migrate apub block activity to standard `endTime` property (fixes #2316) * Remove nonstandard apub field `expires` (ref #2316)
57 lines
1.9 KiB
Rust
57 lines
1.9 KiB
Rust
use crate::{
|
|
activities::{block::SiteOrCommunity, verify_community_matches},
|
|
objects::{community::ApubCommunity, person::ApubPerson},
|
|
protocol::InCommunity,
|
|
};
|
|
use activitypub_federation::{
|
|
config::Data,
|
|
fetch::object_id::ObjectId,
|
|
kinds::activity::BlockType,
|
|
protocol::helpers::deserialize_one_or_many,
|
|
};
|
|
use anyhow::anyhow;
|
|
use chrono::{DateTime, Utc};
|
|
use lemmy_api_common::context::LemmyContext;
|
|
use lemmy_utils::error::LemmyResult;
|
|
use serde::{Deserialize, Serialize};
|
|
use serde_with::skip_serializing_none;
|
|
use url::Url;
|
|
|
|
#[skip_serializing_none]
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct BlockUser {
|
|
pub(crate) actor: ObjectId<ApubPerson>,
|
|
#[serde(deserialize_with = "deserialize_one_or_many")]
|
|
pub(crate) to: Vec<Url>,
|
|
pub(crate) object: ObjectId<ApubPerson>,
|
|
#[serde(deserialize_with = "deserialize_one_or_many")]
|
|
pub(crate) cc: Vec<Url>,
|
|
pub(crate) target: ObjectId<SiteOrCommunity>,
|
|
#[serde(rename = "type")]
|
|
pub(crate) kind: BlockType,
|
|
pub(crate) id: Url,
|
|
pub(crate) audience: Option<ObjectId<ApubCommunity>>,
|
|
|
|
/// Quick and dirty solution.
|
|
/// TODO: send a separate Delete activity instead
|
|
pub(crate) remove_data: Option<bool>,
|
|
/// block reason, written to mod log
|
|
pub(crate) summary: Option<String>,
|
|
pub(crate) end_time: Option<DateTime<Utc>>,
|
|
}
|
|
|
|
#[async_trait::async_trait]
|
|
impl InCommunity for BlockUser {
|
|
async fn community(&self, context: &Data<LemmyContext>) -> LemmyResult<ApubCommunity> {
|
|
let target = self.target.dereference(context).await?;
|
|
let community = match target {
|
|
SiteOrCommunity::Community(c) => c,
|
|
SiteOrCommunity::Site(_) => return Err(anyhow!("activity is not in community").into()),
|
|
};
|
|
if let Some(audience) = &self.audience {
|
|
verify_community_matches(audience, community.actor_id.clone())?;
|
|
}
|
|
Ok(community)
|
|
}
|
|
}
|