mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-28 07:11:20 +00:00
d7da911a48
* Remove `actix_rt` & use standard tokio spawn * Adjust rust log back down * Format correctly * Update cargo lock * Add DB settings * Change name and update to latest rev * Clean up formatting changes * Move `worker_count` and `worker_retry_count` to settings * Update defaults * Use `0.4.4` instead of git branch
236 lines
7.2 KiB
Rust
236 lines
7.2 KiB
Rust
use crate::{
|
|
check_apub_id_valid_with_strictness,
|
|
fetch_local_site_data,
|
|
objects::read_from_string_or_source,
|
|
protocol::{
|
|
objects::chat_message::{ChatMessage, ChatMessageType},
|
|
Source,
|
|
},
|
|
};
|
|
use activitypub_federation::{
|
|
config::Data,
|
|
protocol::{values::MediaTypeHtml, verification::verify_domains_match},
|
|
traits::Object,
|
|
};
|
|
use chrono::NaiveDateTime;
|
|
use lemmy_api_common::{context::LemmyContext, utils::check_person_block};
|
|
use lemmy_db_schema::{
|
|
source::{
|
|
person::Person,
|
|
private_message::{PrivateMessage, PrivateMessageInsertForm},
|
|
},
|
|
traits::Crud,
|
|
};
|
|
use lemmy_utils::{
|
|
error::LemmyError,
|
|
utils::{markdown::markdown_to_html, time::convert_datetime},
|
|
};
|
|
use std::ops::Deref;
|
|
use url::Url;
|
|
|
|
#[derive(Clone, Debug)]
|
|
pub struct ApubPrivateMessage(pub(crate) PrivateMessage);
|
|
|
|
impl Deref for ApubPrivateMessage {
|
|
type Target = PrivateMessage;
|
|
fn deref(&self) -> &Self::Target {
|
|
&self.0
|
|
}
|
|
}
|
|
|
|
impl From<PrivateMessage> for ApubPrivateMessage {
|
|
fn from(pm: PrivateMessage) -> Self {
|
|
ApubPrivateMessage(pm)
|
|
}
|
|
}
|
|
|
|
#[async_trait::async_trait]
|
|
impl Object for ApubPrivateMessage {
|
|
type DataType = LemmyContext;
|
|
type Kind = ChatMessage;
|
|
type Error = LemmyError;
|
|
|
|
fn last_refreshed_at(&self) -> Option<NaiveDateTime> {
|
|
None
|
|
}
|
|
|
|
#[tracing::instrument(skip_all)]
|
|
async fn read_from_id(
|
|
object_id: Url,
|
|
context: &Data<Self::DataType>,
|
|
) -> Result<Option<Self>, LemmyError> {
|
|
Ok(
|
|
PrivateMessage::read_from_apub_id(context.pool(), object_id)
|
|
.await?
|
|
.map(Into::into),
|
|
)
|
|
}
|
|
|
|
async fn delete(self, _context: &Data<Self::DataType>) -> Result<(), LemmyError> {
|
|
// do nothing, because pm can't be fetched over http
|
|
unimplemented!()
|
|
}
|
|
|
|
#[tracing::instrument(skip_all)]
|
|
async fn into_json(self, context: &Data<Self::DataType>) -> Result<ChatMessage, LemmyError> {
|
|
let creator_id = self.creator_id;
|
|
let creator = Person::read(context.pool(), creator_id).await?;
|
|
|
|
let recipient_id = self.recipient_id;
|
|
let recipient = Person::read(context.pool(), recipient_id).await?;
|
|
|
|
let note = ChatMessage {
|
|
r#type: ChatMessageType::ChatMessage,
|
|
id: self.ap_id.clone().into(),
|
|
attributed_to: creator.actor_id.into(),
|
|
to: [recipient.actor_id.into()],
|
|
content: markdown_to_html(&self.content),
|
|
media_type: Some(MediaTypeHtml::Html),
|
|
source: Some(Source::new(self.content.clone())),
|
|
published: Some(convert_datetime(self.published)),
|
|
updated: self.updated.map(convert_datetime),
|
|
};
|
|
Ok(note)
|
|
}
|
|
|
|
#[tracing::instrument(skip_all)]
|
|
async fn verify(
|
|
note: &ChatMessage,
|
|
expected_domain: &Url,
|
|
context: &Data<Self::DataType>,
|
|
) -> Result<(), LemmyError> {
|
|
verify_domains_match(note.id.inner(), expected_domain)?;
|
|
verify_domains_match(note.attributed_to.inner(), note.id.inner())?;
|
|
|
|
let local_site_data = fetch_local_site_data(context.pool()).await?;
|
|
|
|
check_apub_id_valid_with_strictness(
|
|
note.id.inner(),
|
|
false,
|
|
&local_site_data,
|
|
context.settings(),
|
|
)?;
|
|
let person = note.attributed_to.dereference(context).await?;
|
|
if person.banned {
|
|
return Err(LemmyError::from_message("Person is banned from site"));
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
#[tracing::instrument(skip_all)]
|
|
async fn from_json(
|
|
note: ChatMessage,
|
|
context: &Data<Self::DataType>,
|
|
) -> Result<ApubPrivateMessage, LemmyError> {
|
|
let creator = note.attributed_to.dereference(context).await?;
|
|
let recipient = note.to[0].dereference(context).await?;
|
|
check_person_block(creator.id, recipient.id, context.pool()).await?;
|
|
|
|
let form = PrivateMessageInsertForm {
|
|
creator_id: creator.id,
|
|
recipient_id: recipient.id,
|
|
content: read_from_string_or_source(¬e.content, &None, ¬e.source),
|
|
published: note.published.map(|u| u.naive_local()),
|
|
updated: note.updated.map(|u| u.naive_local()),
|
|
deleted: Some(false),
|
|
read: None,
|
|
ap_id: Some(note.id.into()),
|
|
local: Some(false),
|
|
};
|
|
let pm = PrivateMessage::create(context.pool(), &form).await?;
|
|
Ok(pm.into())
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
use crate::{
|
|
objects::{
|
|
instance::{tests::parse_lemmy_instance, ApubSite},
|
|
person::ApubPerson,
|
|
tests::init_context,
|
|
},
|
|
protocol::tests::file_to_json_object,
|
|
};
|
|
use assert_json_diff::assert_json_include;
|
|
use lemmy_db_schema::source::site::Site;
|
|
use serial_test::serial;
|
|
|
|
async fn prepare_comment_test(
|
|
url: &Url,
|
|
context: &Data<LemmyContext>,
|
|
) -> (ApubPerson, ApubPerson, ApubSite) {
|
|
let context2 = context.reset_request_count();
|
|
let lemmy_person = file_to_json_object("assets/lemmy/objects/person.json").unwrap();
|
|
let site = parse_lemmy_instance(&context2).await;
|
|
ApubPerson::verify(&lemmy_person, url, &context2)
|
|
.await
|
|
.unwrap();
|
|
let person1 = ApubPerson::from_json(lemmy_person, &context2)
|
|
.await
|
|
.unwrap();
|
|
let pleroma_person = file_to_json_object("assets/pleroma/objects/person.json").unwrap();
|
|
let pleroma_url = Url::parse("https://queer.hacktivis.me/users/lanodan").unwrap();
|
|
ApubPerson::verify(&pleroma_person, &pleroma_url, &context2)
|
|
.await
|
|
.unwrap();
|
|
let person2 = ApubPerson::from_json(pleroma_person, &context2)
|
|
.await
|
|
.unwrap();
|
|
(person1, person2, site)
|
|
}
|
|
|
|
async fn cleanup(data: (ApubPerson, ApubPerson, ApubSite), context: &Data<LemmyContext>) {
|
|
Person::delete(context.pool(), data.0.id).await.unwrap();
|
|
Person::delete(context.pool(), data.1.id).await.unwrap();
|
|
Site::delete(context.pool(), data.2.id).await.unwrap();
|
|
}
|
|
|
|
#[tokio::test]
|
|
#[serial]
|
|
async fn test_parse_lemmy_pm() {
|
|
let context = init_context().await;
|
|
let url = Url::parse("https://enterprise.lemmy.ml/private_message/1621").unwrap();
|
|
let data = prepare_comment_test(&url, &context).await;
|
|
let json: ChatMessage = file_to_json_object("assets/lemmy/objects/chat_message.json").unwrap();
|
|
ApubPrivateMessage::verify(&json, &url, &context)
|
|
.await
|
|
.unwrap();
|
|
let pm = ApubPrivateMessage::from_json(json.clone(), &context)
|
|
.await
|
|
.unwrap();
|
|
|
|
assert_eq!(pm.ap_id.clone(), url.into());
|
|
assert_eq!(pm.content.len(), 20);
|
|
assert_eq!(context.request_count(), 0);
|
|
|
|
let pm_id = pm.id;
|
|
let to_apub = pm.into_json(&context).await.unwrap();
|
|
assert_json_include!(actual: json, expected: to_apub);
|
|
|
|
PrivateMessage::delete(context.pool(), pm_id).await.unwrap();
|
|
cleanup(data, &context).await;
|
|
}
|
|
|
|
#[tokio::test]
|
|
#[serial]
|
|
async fn test_parse_pleroma_pm() {
|
|
let context = init_context().await;
|
|
let url = Url::parse("https://enterprise.lemmy.ml/private_message/1621").unwrap();
|
|
let data = prepare_comment_test(&url, &context).await;
|
|
let pleroma_url = Url::parse("https://queer.hacktivis.me/objects/2").unwrap();
|
|
let json = file_to_json_object("assets/pleroma/objects/chat_message.json").unwrap();
|
|
ApubPrivateMessage::verify(&json, &pleroma_url, &context)
|
|
.await
|
|
.unwrap();
|
|
let pm = ApubPrivateMessage::from_json(json, &context).await.unwrap();
|
|
|
|
assert_eq!(pm.ap_id, pleroma_url.into());
|
|
assert_eq!(pm.content.len(), 3);
|
|
assert_eq!(context.request_count(), 0);
|
|
|
|
PrivateMessage::delete(context.pool(), pm.id).await.unwrap();
|
|
cleanup(data, &context).await;
|
|
}
|
|
}
|