2022-05-10 17:08:13 +00:00
|
|
|
use crate::protocol::Source;
|
2023-03-21 15:03:05 +00:00
|
|
|
use activitypub_federation::protocol::values::MediaTypeMarkdownOrHtml;
|
2022-04-25 21:11:34 +00:00
|
|
|
use anyhow::anyhow;
|
2021-10-22 16:21:26 +00:00
|
|
|
use html2md::parse_html;
|
2022-06-02 14:33:41 +00:00
|
|
|
use lemmy_utils::{error::LemmyError, settings::structs::Settings};
|
2022-03-18 15:46:58 +00:00
|
|
|
use url::Url;
|
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).
|
2022-06-22 20:24:54 +00:00
|
|
|
pub(crate) fn verify_is_remote_object(id: &Url, settings: &Settings) -> Result<(), LemmyError> {
|
|
|
|
let local_domain = settings.get_hostname_without_port()?;
|
2022-04-25 21:11:34 +00:00
|
|
|
if id.domain() == Some(&local_domain) {
|
|
|
|
Err(anyhow!("cant accept local object from remote instance").into())
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|