2021-08-12 12:48:09 +00:00
|
|
|
use crate::fetcher::person::get_or_fetch_and_upsert_person;
|
2020-10-12 14:10:09 +00:00
|
|
|
use activitystreams::{
|
2021-08-12 12:48:09 +00:00
|
|
|
base::BaseExt,
|
|
|
|
object::{kind::ImageType, Tombstone, TombstoneExt},
|
2020-10-12 14:10:09 +00:00
|
|
|
};
|
2021-08-12 12:48:09 +00:00
|
|
|
use anyhow::anyhow;
|
2020-10-12 14:10:09 +00:00
|
|
|
use chrono::NaiveDateTime;
|
2021-07-30 14:35:32 +00:00
|
|
|
use lemmy_apub_lib::values::MediaTypeMarkdown;
|
2021-08-12 12:48:09 +00:00
|
|
|
use lemmy_db_queries::DbPool;
|
|
|
|
use lemmy_utils::{utils::convert_datetime, LemmyError};
|
2020-12-08 17:38:48 +00:00
|
|
|
use lemmy_websocket::LemmyContext;
|
2020-10-14 15:34:11 +00:00
|
|
|
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;
|
2021-03-11 04:43:11 +00:00
|
|
|
pub(crate) mod person;
|
2020-11-16 15:44:04 +00:00
|
|
|
pub(crate) mod post;
|
|
|
|
pub(crate) mod private_message;
|
2020-10-12 14:10:09 +00:00
|
|
|
|
2020-12-08 17:38:48 +00:00
|
|
|
/// Trait for converting an object or actor into the respective ActivityPub type.
|
|
|
|
#[async_trait::async_trait(?Send)]
|
2021-03-30 20:23:50 +00:00
|
|
|
pub trait ToApub {
|
2020-12-08 17:38:48 +00:00
|
|
|
type ApubType;
|
|
|
|
async fn to_apub(&self, pool: &DbPool) -> Result<Self::ApubType, LemmyError>;
|
|
|
|
fn to_tombstone(&self) -> Result<Tombstone, LemmyError>;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
2021-03-30 20:23:50 +00:00
|
|
|
pub trait FromApub {
|
2020-12-08 17:38:48 +00:00
|
|
|
type ApubType;
|
|
|
|
/// Converts an object from ActivityPub type to Lemmy internal type.
|
|
|
|
///
|
|
|
|
/// * `apub` The object to read from
|
|
|
|
/// * `context` LemmyContext which holds DB pool, HTTP client etc
|
2021-03-12 15:43:01 +00:00
|
|
|
/// * `expected_domain` Domain where the object was received from. None in case of mod action.
|
2021-03-18 13:24:29 +00:00
|
|
|
/// * `mod_action_allowed` True if the object can be a mod activity, ignore `expected_domain` in this case
|
2020-12-08 17:38:48 +00:00
|
|
|
async fn from_apub(
|
|
|
|
apub: &Self::ApubType,
|
|
|
|
context: &LemmyContext,
|
2021-08-12 12:48:09 +00:00
|
|
|
expected_domain: &Url,
|
2020-12-08 17:38:48 +00:00
|
|
|
request_counter: &mut i32,
|
|
|
|
) -> Result<Self, LemmyError>
|
|
|
|
where
|
|
|
|
Self: Sized;
|
|
|
|
}
|
|
|
|
|
2021-07-29 08:58:29 +00:00
|
|
|
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct Source {
|
|
|
|
content: String,
|
|
|
|
media_type: MediaTypeMarkdown,
|
|
|
|
}
|
|
|
|
|
2021-08-12 12:48:09 +00:00
|
|
|
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct ImageObject {
|
|
|
|
#[serde(rename = "type")]
|
|
|
|
kind: ImageType,
|
|
|
|
url: Url,
|
|
|
|
}
|
|
|
|
|
2020-10-12 14:10:09 +00:00
|
|
|
/// Updated is actually the deletion time
|
|
|
|
fn create_tombstone<T>(
|
|
|
|
deleted: bool,
|
2021-01-27 16:42:23 +00:00
|
|
|
object_id: Url,
|
2020-10-12 14:10:09 +00:00
|
|
|
updated: Option<NaiveDateTime>,
|
|
|
|
former_type: T,
|
|
|
|
) -> Result<Tombstone, LemmyError>
|
|
|
|
where
|
|
|
|
T: ToString,
|
|
|
|
{
|
|
|
|
if deleted {
|
|
|
|
if let Some(updated) = updated {
|
|
|
|
let mut tombstone = Tombstone::new();
|
2021-01-27 16:42:23 +00:00
|
|
|
tombstone.set_id(object_id);
|
2020-10-12 14:10:09 +00:00
|
|
|
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())
|
|
|
|
}
|
|
|
|
}
|