2022-05-10 17:08:13 +00:00
|
|
|
use crate::protocol::Source;
|
2024-04-11 14:05:49 +00:00
|
|
|
use activitypub_federation::{
|
|
|
|
config::Data,
|
|
|
|
fetch::object_id::ObjectId,
|
|
|
|
protocol::values::MediaTypeMarkdownOrHtml,
|
|
|
|
traits::Object,
|
|
|
|
};
|
2022-04-25 21:11:34 +00:00
|
|
|
use anyhow::anyhow;
|
2021-10-22 16:21:26 +00:00
|
|
|
use html2md::parse_html;
|
2024-04-11 14:05:49 +00:00
|
|
|
use lemmy_api_common::context::LemmyContext;
|
|
|
|
use lemmy_utils::error::LemmyResult;
|
|
|
|
use serde::Deserialize;
|
|
|
|
use std::fmt::Debug;
|
2020-10-12 14:10:09 +00:00
|
|
|
|
2021-10-18 21:36:44 +00:00
|
|
|
pub mod comment;
|
|
|
|
pub mod community;
|
2022-02-07 19:23:12 +00:00
|
|
|
pub mod instance;
|
2021-10-18 21:36:44 +00:00
|
|
|
pub mod person;
|
|
|
|
pub mod post;
|
|
|
|
pub mod private_message;
|
2020-12-08 17:38:48 +00:00
|
|
|
|
2022-05-06 23:53:33 +00:00
|
|
|
pub(crate) fn read_from_string_or_source(
|
|
|
|
content: &str,
|
|
|
|
media_type: &Option<MediaTypeMarkdownOrHtml>,
|
|
|
|
source: &Option<Source>,
|
|
|
|
) -> String {
|
2022-04-01 18:25:19 +00:00
|
|
|
if let Some(s) = source {
|
2022-05-06 23:53:33 +00:00
|
|
|
// markdown sent by lemmy in source field
|
2022-03-24 16:33:42 +00:00
|
|
|
s.content.clone()
|
2022-05-06 23:53:33 +00:00
|
|
|
} else if media_type == &Some(MediaTypeMarkdownOrHtml::Markdown) {
|
|
|
|
// markdown sent by peertube in content field
|
|
|
|
content.to_string()
|
2022-03-24 16:33:42 +00:00
|
|
|
} else {
|
2022-05-06 23:53:33 +00:00
|
|
|
// otherwise, convert content html to markdown
|
|
|
|
parse_html(content)
|
2022-03-24 16:33:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn read_from_string_or_source_opt(
|
2022-05-06 23:53:33 +00:00
|
|
|
content: &Option<String>,
|
|
|
|
media_type: &Option<MediaTypeMarkdownOrHtml>,
|
2022-04-01 18:25:19 +00:00
|
|
|
source: &Option<Source>,
|
2021-10-22 16:21:26 +00:00
|
|
|
) -> Option<String> {
|
2022-05-06 23:53:33 +00:00
|
|
|
content
|
|
|
|
.as_ref()
|
|
|
|
.map(|content| read_from_string_or_source(content, media_type, source))
|
2021-10-22 16:21:26 +00:00
|
|
|
}
|
|
|
|
|
2022-04-25 21:11:34 +00:00
|
|
|
/// When for example a Post is made in a remote community, the community will send it back,
|
|
|
|
/// wrapped in Announce. If we simply receive this like any other federated object, overwrite the
|
|
|
|
/// existing, local Post. In particular, it will set the field local = false, so that the object
|
|
|
|
/// can't be fetched from the Activitypub HTTP endpoint anymore (which only serves local objects).
|
2024-04-11 14:05:49 +00:00
|
|
|
pub(crate) fn verify_is_remote_object<T>(
|
|
|
|
id: &ObjectId<T>,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
) -> LemmyResult<()>
|
|
|
|
where
|
|
|
|
T: Object<DataType = LemmyContext> + Debug + Send + 'static,
|
|
|
|
for<'de2> <T as Object>::Kind: Deserialize<'de2>,
|
|
|
|
{
|
|
|
|
if id.is_local(context) {
|
2022-04-25 21:11:34 +00:00
|
|
|
Err(anyhow!("cant accept local object from remote instance").into())
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|