2021-10-28 21:17:59 +00:00
|
|
|
use crate::{
|
2021-11-05 00:24:10 +00:00
|
|
|
fetcher::post_or_comment::PostOrComment,
|
2022-06-02 14:33:41 +00:00
|
|
|
local_instance,
|
2022-04-27 16:12:13 +00:00
|
|
|
mentions::MentionOrValue,
|
2021-11-06 17:35:14 +00:00
|
|
|
objects::{comment::ApubComment, person::ApubPerson, post::ApubPost},
|
2022-08-22 20:55:10 +00:00
|
|
|
protocol::{objects::LanguageTag, Source},
|
2021-10-28 21:17:59 +00:00
|
|
|
};
|
2022-06-02 14:33:41 +00:00
|
|
|
use activitypub_federation::{
|
|
|
|
core::object_id::ObjectId,
|
|
|
|
deser::{
|
|
|
|
helpers::{deserialize_one_or_many, deserialize_skip_error},
|
|
|
|
values::MediaTypeMarkdownOrHtml,
|
|
|
|
},
|
|
|
|
};
|
2021-11-19 17:47:06 +00:00
|
|
|
use activitystreams_kinds::object::NoteType;
|
2021-10-28 21:17:59 +00:00
|
|
|
use chrono::{DateTime, FixedOffset};
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_api_common::utils::blocking;
|
2022-07-30 03:55:59 +00:00
|
|
|
use lemmy_db_schema::{source::post::Post, traits::Crud};
|
2022-06-02 14:33:41 +00:00
|
|
|
use lemmy_utils::error::LemmyError;
|
2021-10-28 21:17:59 +00:00
|
|
|
use lemmy_websocket::LemmyContext;
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use serde_with::skip_serializing_none;
|
|
|
|
use std::ops::Deref;
|
|
|
|
use url::Url;
|
|
|
|
|
|
|
|
#[skip_serializing_none]
|
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct Note {
|
|
|
|
pub(crate) r#type: NoteType,
|
2021-11-03 16:26:09 +00:00
|
|
|
pub(crate) id: ObjectId<ApubComment>,
|
2021-10-28 21:17:59 +00:00
|
|
|
pub(crate) attributed_to: ObjectId<ApubPerson>,
|
2022-06-02 14:33:41 +00:00
|
|
|
#[serde(deserialize_with = "deserialize_one_or_many")]
|
2021-10-28 21:17:59 +00:00
|
|
|
pub(crate) to: Vec<Url>,
|
2022-06-02 14:33:41 +00:00
|
|
|
#[serde(deserialize_with = "deserialize_one_or_many", default)]
|
2021-11-06 17:44:34 +00:00
|
|
|
pub(crate) cc: Vec<Url>,
|
2021-10-28 21:17:59 +00:00
|
|
|
pub(crate) content: String,
|
2022-02-17 22:04:01 +00:00
|
|
|
pub(crate) in_reply_to: ObjectId<PostOrComment>,
|
|
|
|
|
2022-05-06 23:53:33 +00:00
|
|
|
pub(crate) media_type: Option<MediaTypeMarkdownOrHtml>,
|
2022-06-02 14:33:41 +00:00
|
|
|
#[serde(deserialize_with = "deserialize_skip_error", default)]
|
2022-04-01 18:25:19 +00:00
|
|
|
pub(crate) source: Option<Source>,
|
2021-10-28 21:17:59 +00:00
|
|
|
pub(crate) published: Option<DateTime<FixedOffset>>,
|
|
|
|
pub(crate) updated: Option<DateTime<FixedOffset>>,
|
2021-11-15 22:54:25 +00:00
|
|
|
#[serde(default)]
|
2022-04-27 16:12:13 +00:00
|
|
|
pub(crate) tag: Vec<MentionOrValue>,
|
2022-08-17 11:38:52 +00:00
|
|
|
// lemmy extension
|
|
|
|
pub(crate) distinguished: Option<bool>,
|
2022-08-22 20:55:10 +00:00
|
|
|
pub(crate) language: Option<LanguageTag>,
|
2021-10-28 21:17:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Note {
|
|
|
|
pub(crate) async fn get_parents(
|
|
|
|
&self,
|
|
|
|
context: &LemmyContext,
|
|
|
|
request_counter: &mut i32,
|
2022-07-30 03:55:59 +00:00
|
|
|
) -> Result<(ApubPost, Option<ApubComment>), LemmyError> {
|
2021-10-28 21:17:59 +00:00
|
|
|
// Fetch parent comment chain in a box, otherwise it can cause a stack overflow.
|
|
|
|
let parent = Box::pin(
|
|
|
|
self
|
|
|
|
.in_reply_to
|
2022-06-08 15:45:39 +00:00
|
|
|
.dereference(context, local_instance(context), request_counter)
|
2021-10-28 21:17:59 +00:00
|
|
|
.await?,
|
|
|
|
);
|
|
|
|
match parent.deref() {
|
|
|
|
PostOrComment::Post(p) => {
|
2022-07-30 03:55:59 +00:00
|
|
|
let post = p.deref().to_owned();
|
|
|
|
Ok((post, None))
|
2021-10-28 21:17:59 +00:00
|
|
|
}
|
|
|
|
PostOrComment::Comment(c) => {
|
|
|
|
let post_id = c.post_id;
|
|
|
|
let post = blocking(context.pool(), move |conn| Post::read(conn, post_id)).await??;
|
2022-07-30 03:55:59 +00:00
|
|
|
let comment = c.deref().to_owned();
|
|
|
|
Ok((post.into(), Some(comment)))
|
2021-10-28 21:17:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|