2020-10-14 15:34:11 +00:00
|
|
|
use crate::check_is_apub_id_valid;
|
2020-10-12 14:10:09 +00:00
|
|
|
use activitystreams::{
|
2020-10-14 15:34:11 +00:00
|
|
|
base::{AsBase, BaseExt},
|
|
|
|
markers::Base,
|
2020-10-12 14:10:09 +00:00
|
|
|
object::{Tombstone, TombstoneExt},
|
|
|
|
};
|
2020-10-14 15:34:11 +00:00
|
|
|
use anyhow::{anyhow, Context};
|
2020-10-12 14:10:09 +00:00
|
|
|
use chrono::NaiveDateTime;
|
2020-10-14 15:34:11 +00:00
|
|
|
use lemmy_utils::{location_info, utils::convert_datetime, LemmyError};
|
|
|
|
use url::Url;
|
2020-10-12 14:10:09 +00:00
|
|
|
|
2020-11-16 15:44:04 +00:00
|
|
|
pub(crate) mod comment;
|
|
|
|
pub(crate) mod community;
|
|
|
|
pub(crate) mod post;
|
|
|
|
pub(crate) mod private_message;
|
|
|
|
pub(crate) mod user;
|
2020-10-12 14:10:09 +00:00
|
|
|
|
|
|
|
/// Updated is actually the deletion time
|
|
|
|
fn create_tombstone<T>(
|
|
|
|
deleted: bool,
|
|
|
|
object_id: &str,
|
|
|
|
updated: Option<NaiveDateTime>,
|
|
|
|
former_type: T,
|
|
|
|
) -> Result<Tombstone, LemmyError>
|
|
|
|
where
|
|
|
|
T: ToString,
|
|
|
|
{
|
|
|
|
if deleted {
|
|
|
|
if let Some(updated) = updated {
|
|
|
|
let mut tombstone = Tombstone::new();
|
|
|
|
tombstone.set_id(object_id.parse()?);
|
|
|
|
tombstone.set_former_type(former_type.to_string());
|
|
|
|
tombstone.set_deleted(convert_datetime(updated));
|
|
|
|
Ok(tombstone)
|
|
|
|
} else {
|
|
|
|
Err(anyhow!("Cant convert to tombstone because updated time was None.").into())
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Err(anyhow!("Cant convert object to tombstone if it wasnt deleted").into())
|
|
|
|
}
|
|
|
|
}
|
2020-10-14 15:34:11 +00:00
|
|
|
|
|
|
|
pub(in crate::objects) fn check_object_domain<T, Kind>(
|
|
|
|
apub: &T,
|
|
|
|
expected_domain: Option<Url>,
|
|
|
|
) -> Result<String, LemmyError>
|
|
|
|
where
|
|
|
|
T: Base + AsBase<Kind>,
|
|
|
|
{
|
|
|
|
let actor_id = if let Some(url) = expected_domain {
|
|
|
|
check_is_apub_id_valid(&url)?;
|
|
|
|
let domain = url.domain().context(location_info!())?;
|
|
|
|
apub.id(domain)?.context(location_info!())?
|
|
|
|
} else {
|
|
|
|
let actor_id = apub.id_unchecked().context(location_info!())?;
|
|
|
|
check_is_apub_id_valid(&actor_id)?;
|
|
|
|
actor_id
|
|
|
|
};
|
|
|
|
Ok(actor_id.to_string())
|
|
|
|
}
|