mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-12-26 12:51:30 +00:00
52 lines
1.6 KiB
Rust
52 lines
1.6 KiB
Rust
use crate::{
|
|
activities::send_lemmy_activity,
|
|
activity_lists::AnnouncableActivities,
|
|
insert_activity,
|
|
objects::community::ApubCommunity,
|
|
protocol::activities::community::announce::AnnounceActivity,
|
|
};
|
|
use lemmy_apub_lib::{object_id::ObjectId, traits::ActorType};
|
|
use lemmy_utils::LemmyError;
|
|
use lemmy_websocket::LemmyContext;
|
|
use url::Url;
|
|
|
|
pub mod add_mod;
|
|
pub mod announce;
|
|
pub mod block_user;
|
|
pub mod remove_mod;
|
|
pub mod report;
|
|
pub mod undo_block_user;
|
|
pub mod update;
|
|
|
|
pub(crate) async fn send_to_community<T: ActorType>(
|
|
activity: AnnouncableActivities,
|
|
activity_id: &Url,
|
|
actor: &T,
|
|
community: &ApubCommunity,
|
|
additional_inboxes: Vec<Url>,
|
|
context: &LemmyContext,
|
|
) -> Result<(), LemmyError> {
|
|
// if this is a local community, we need to do an announce from the community instead
|
|
let object_value = serde_json::to_value(&activity)?;
|
|
if community.local {
|
|
insert_activity(activity_id, object_value, true, false, context.pool()).await?;
|
|
AnnounceActivity::send(activity, community, additional_inboxes, context).await?;
|
|
} else {
|
|
let mut inboxes = additional_inboxes;
|
|
inboxes.push(community.shared_inbox_or_inbox_url());
|
|
send_lemmy_activity(context, &activity, activity_id, actor, inboxes, false).await?;
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
async fn get_community_from_moderators_url(
|
|
moderators: &Url,
|
|
context: &LemmyContext,
|
|
request_counter: &mut i32,
|
|
) -> Result<ApubCommunity, LemmyError> {
|
|
let community_id = Url::parse(&moderators.to_string().replace("/moderators", ""))?;
|
|
ObjectId::new(community_id)
|
|
.dereference(context, request_counter)
|
|
.await
|
|
}
|