lemmy/server/src/apub/activities.rs

83 lines
2.1 KiB
Rust
Raw Normal View History

2020-06-01 14:17:20 +00:00
use crate::{
apub::{
community::do_announce, extensions::signatures::sign, insert_activity, is_apub_id_valid,
ActorType,
},
request::retry_custom,
DbPool, LemmyError,
2020-06-01 14:17:20 +00:00
};
use activitystreams_new::base::AnyBase;
use actix_web::client::Client;
use lemmy_db::{community::Community, user::User_};
use lemmy_utils::{get_apub_protocol_string, settings::Settings};
2020-05-16 14:04:08 +00:00
use log::debug;
use url::{ParseError, Url};
use uuid::Uuid;
2020-04-09 19:04:31 +00:00
pub async fn send_activity_to_community(
2020-06-01 14:17:20 +00:00
creator: &User_,
community: &Community,
to: Vec<String>,
activity: AnyBase,
client: &Client,
pool: &DbPool,
) -> Result<(), LemmyError> {
insert_activity(creator.id, activity.clone(), true, pool).await?;
2020-06-01 14:17:20 +00:00
// if this is a local community, we need to do an announce from the community instead
if community.local {
do_announce(activity, &community, creator, client, pool).await?;
2020-06-01 14:17:20 +00:00
} else {
send_activity(client, &activity, creator, to).await?;
2020-06-01 14:17:20 +00:00
}
2020-06-01 14:17:20 +00:00
Ok(())
}
2020-04-17 15:33:55 +00:00
/// Send an activity to a list of recipients, using the correct headers etc.
pub async fn send_activity(
client: &Client,
activity: &AnyBase,
actor: &dyn ActorType,
to: Vec<String>,
) -> Result<(), LemmyError> {
let activity = serde_json::to_string(&activity)?;
debug!("Sending activitypub activity {} to {:?}", activity, to);
2020-04-14 15:37:23 +00:00
for t in to {
let to_url = Url::parse(&t)?;
if !is_apub_id_valid(&to_url) {
2020-06-25 19:36:03 +00:00
debug!("Not sending activity to {} (invalid or blocklisted)", t);
2020-04-17 17:34:18 +00:00
continue;
}
let res = retry_custom(|| async {
let request = client.post(&t).header("Content-Type", "application/json");
match sign(request, actor, activity.clone()).await {
Ok(signed) => Ok(signed.send().await),
Err(e) => Err(e),
}
})
.await?;
2020-04-17 14:55:28 +00:00
debug!("Result for activity send: {:?}", res);
2020-04-09 19:04:31 +00:00
}
2020-04-09 19:04:31 +00:00
Ok(())
}
pub(in crate::apub) fn generate_activity_id<T>(kind: T) -> Result<Url, ParseError>
where
T: ToString,
{
let id = format!(
"{}://{}/activities/{}/{}",
get_apub_protocol_string(),
Settings::get().hostname,
kind.to_string().to_lowercase(),
Uuid::new_v4()
);
Url::parse(&id)
}