2022-02-07 19:23:12 +00:00
|
|
|
use crate::{
|
|
|
|
activity_lists::SiteInboxActivities,
|
|
|
|
context::WithContext,
|
|
|
|
http::{create_apub_response, payload_to_string, receive_activity, ActivityCommonFields},
|
|
|
|
objects::instance::ApubSite,
|
|
|
|
protocol::collections::empty_outbox::EmptyOutbox,
|
|
|
|
};
|
|
|
|
use actix_web::{web, web::Payload, HttpRequest, HttpResponse};
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_api_common::utils::blocking;
|
2022-02-07 19:23:12 +00:00
|
|
|
use lemmy_apub_lib::traits::ApubObject;
|
|
|
|
use lemmy_db_schema::source::site::Site;
|
|
|
|
use lemmy_utils::{settings::structs::Settings, LemmyError};
|
|
|
|
use lemmy_websocket::LemmyContext;
|
|
|
|
use tracing::info;
|
|
|
|
use url::Url;
|
|
|
|
|
|
|
|
pub(crate) async fn get_apub_site_http(
|
|
|
|
context: web::Data<LemmyContext>,
|
|
|
|
) -> Result<HttpResponse, LemmyError> {
|
|
|
|
let site: ApubSite = blocking(context.pool(), Site::read_local_site)
|
|
|
|
.await??
|
|
|
|
.into();
|
|
|
|
|
|
|
|
let apub = site.into_apub(&context).await?;
|
|
|
|
Ok(create_apub_response(&apub))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tracing::instrument(skip_all)]
|
|
|
|
pub(crate) async fn get_apub_site_outbox() -> Result<HttpResponse, LemmyError> {
|
|
|
|
let outbox_id = format!(
|
|
|
|
"{}/site_outbox",
|
|
|
|
Settings::get().get_protocol_and_hostname()
|
|
|
|
);
|
|
|
|
let outbox = EmptyOutbox::new(Url::parse(&outbox_id)?).await?;
|
|
|
|
Ok(create_apub_response(&outbox))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tracing::instrument(skip_all)]
|
|
|
|
pub async fn get_apub_site_inbox(
|
|
|
|
request: HttpRequest,
|
|
|
|
payload: Payload,
|
|
|
|
context: web::Data<LemmyContext>,
|
|
|
|
) -> Result<HttpResponse, LemmyError> {
|
|
|
|
let unparsed = payload_to_string(payload).await?;
|
|
|
|
info!("Received site inbox activity {}", unparsed);
|
|
|
|
let activity_data: ActivityCommonFields = serde_json::from_str(&unparsed)?;
|
|
|
|
let activity = serde_json::from_str::<WithContext<SiteInboxActivities>>(&unparsed)?;
|
|
|
|
receive_activity(request, activity.inner(), activity_data, &context).await
|
|
|
|
}
|