2021-11-05 00:24:10 +00:00
|
|
|
use crate::{
|
2021-11-18 17:04:28 +00:00
|
|
|
activity_lists::AnnouncableActivities,
|
2023-03-21 15:03:05 +00:00
|
|
|
objects::{community::ApubCommunity, post::ApubPost},
|
2021-11-05 00:24:10 +00:00
|
|
|
protocol::{
|
2022-11-12 13:52:57 +00:00
|
|
|
activities::{
|
|
|
|
community::announce::AnnounceActivity,
|
2022-12-01 20:52:49 +00:00
|
|
|
create_or_update::page::CreateOrUpdatePage,
|
2022-11-12 13:52:57 +00:00
|
|
|
CreateOrUpdateType,
|
|
|
|
},
|
2021-11-05 00:24:10 +00:00
|
|
|
collections::group_outbox::GroupOutbox,
|
|
|
|
},
|
|
|
|
};
|
2022-06-02 14:33:41 +00:00
|
|
|
use activitypub_federation::{
|
2023-03-21 15:03:05 +00:00
|
|
|
config::Data,
|
|
|
|
kinds::collection::OrderedCollectionType,
|
|
|
|
protocol::verification::verify_domains_match,
|
|
|
|
traits::{ActivityHandler, Collection},
|
2022-06-02 14:33:41 +00:00
|
|
|
};
|
2022-04-01 18:06:23 +00:00
|
|
|
use futures::future::join_all;
|
2023-03-21 15:03:05 +00:00
|
|
|
use lemmy_api_common::{context::LemmyContext, utils::generate_outbox_url};
|
2022-11-12 13:52:57 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::{person::Person, post::Post},
|
|
|
|
traits::Crud,
|
2023-02-18 14:50:28 +00:00
|
|
|
utils::FETCH_LIMIT_MAX,
|
2022-11-12 13:52:57 +00:00
|
|
|
};
|
2022-06-02 14:33:41 +00:00
|
|
|
use lemmy_utils::error::LemmyError;
|
2021-11-05 00:24:10 +00:00
|
|
|
use url::Url;
|
2021-10-27 16:03:07 +00:00
|
|
|
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub(crate) struct ApubCommunityOutbox(Vec<ApubPost>);
|
|
|
|
|
2023-03-21 15:03:05 +00:00
|
|
|
#[async_trait::async_trait]
|
|
|
|
impl Collection for ApubCommunityOutbox {
|
|
|
|
type Owner = ApubCommunity;
|
|
|
|
type DataType = LemmyContext;
|
|
|
|
type Kind = GroupOutbox;
|
2022-06-02 14:33:41 +00:00
|
|
|
type Error = LemmyError;
|
2021-10-27 16:03:07 +00:00
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2023-03-21 15:03:05 +00:00
|
|
|
async fn read_local(
|
|
|
|
owner: &Self::Owner,
|
|
|
|
data: &Data<Self::DataType>,
|
|
|
|
) -> Result<Self::Kind, LemmyError> {
|
2023-07-11 13:09:59 +00:00
|
|
|
let post_list: Vec<ApubPost> = Post::list_for_community(&mut data.pool(), owner.id)
|
2023-03-21 15:03:05 +00:00
|
|
|
.await?
|
|
|
|
.into_iter()
|
|
|
|
.map(Into::into)
|
|
|
|
.collect();
|
2021-10-27 16:03:07 +00:00
|
|
|
let mut ordered_items = vec![];
|
2023-03-21 15:03:05 +00:00
|
|
|
for post in post_list {
|
2023-07-11 13:09:59 +00:00
|
|
|
let person = Person::read(&mut data.pool(), post.creator_id)
|
|
|
|
.await?
|
|
|
|
.into();
|
2022-11-12 13:52:57 +00:00
|
|
|
let create =
|
2023-03-21 15:03:05 +00:00
|
|
|
CreateOrUpdatePage::new(post, &person, owner, CreateOrUpdateType::Create, data).await?;
|
2022-11-16 22:51:05 +00:00
|
|
|
let announcable = AnnouncableActivities::CreateOrUpdatePost(create);
|
2023-03-21 15:03:05 +00:00
|
|
|
let announce = AnnounceActivity::new(announcable.try_into()?, owner, data)?;
|
2021-11-18 17:04:28 +00:00
|
|
|
ordered_items.push(announce);
|
2021-10-27 16:03:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(GroupOutbox {
|
|
|
|
r#type: OrderedCollectionType::OrderedCollection,
|
2023-03-21 15:03:05 +00:00
|
|
|
id: generate_outbox_url(&owner.actor_id)?.into(),
|
2021-10-28 15:52:11 +00:00
|
|
|
total_items: ordered_items.len() as i32,
|
2021-10-27 16:03:07 +00:00
|
|
|
ordered_items,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-11-06 17:35:14 +00:00
|
|
|
async fn verify(
|
|
|
|
group_outbox: &GroupOutbox,
|
|
|
|
expected_domain: &Url,
|
2023-03-21 15:03:05 +00:00
|
|
|
_data: &Data<Self::DataType>,
|
2021-11-06 17:35:14 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
verify_domains_match(expected_domain, &group_outbox.id)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2023-03-21 15:03:05 +00:00
|
|
|
async fn from_json(
|
|
|
|
apub: Self::Kind,
|
|
|
|
_owner: &Self::Owner,
|
|
|
|
data: &Data<Self::DataType>,
|
2021-10-27 16:03:07 +00:00
|
|
|
) -> Result<Self, LemmyError> {
|
2021-11-06 12:37:55 +00:00
|
|
|
let mut outbox_activities = apub.ordered_items;
|
2023-02-18 14:50:28 +00:00
|
|
|
if outbox_activities.len() as i64 > FETCH_LIMIT_MAX {
|
2023-02-28 11:34:50 +00:00
|
|
|
outbox_activities = outbox_activities
|
|
|
|
.get(0..(FETCH_LIMIT_MAX as usize))
|
|
|
|
.unwrap_or_default()
|
|
|
|
.to_vec();
|
2021-10-27 16:03:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// We intentionally ignore errors here. This is because the outbox might contain posts from old
|
|
|
|
// Lemmy versions, or from other software which we cant parse. In that case, we simply skip the
|
|
|
|
// item and only parse the ones that work.
|
2022-04-01 18:06:23 +00:00
|
|
|
// process items in parallel, to avoid long delay from fetch_site_metadata() and other processing
|
|
|
|
join_all(outbox_activities.into_iter().map(|activity| {
|
|
|
|
async {
|
|
|
|
// use separate request counter for each item, otherwise there will be problems with
|
|
|
|
// parallel processing
|
2023-03-21 15:03:05 +00:00
|
|
|
let verify = activity.verify(data).await;
|
2022-04-01 18:06:23 +00:00
|
|
|
if verify.is_ok() {
|
2023-03-21 15:03:05 +00:00
|
|
|
activity.receive(data).await.ok();
|
2022-04-01 18:06:23 +00:00
|
|
|
}
|
2021-11-18 17:04:28 +00:00
|
|
|
}
|
2022-04-01 18:06:23 +00:00
|
|
|
}))
|
|
|
|
.await;
|
2021-10-27 16:03:07 +00:00
|
|
|
|
|
|
|
// This return value is unused, so just set an empty vec
|
2022-03-30 14:58:03 +00:00
|
|
|
Ok(ApubCommunityOutbox(Vec::new()))
|
2021-10-27 16:03:07 +00:00
|
|
|
}
|
|
|
|
}
|