fedimovies/src/activitypub/handlers/undo.rs

108 lines
3.6 KiB
Rust
Raw Normal View History

use tokio_postgres::GenericClient;
use crate::activitypub::{
activity::Activity,
identifiers::parse_local_actor_id,
receiver::find_object_id,
vocabulary::{ANNOUNCE, FOLLOW, LIKE},
};
use crate::config::Config;
2022-12-03 22:09:42 +00:00
use crate::database::DatabaseError;
use crate::errors::ValidationError;
use crate::models::{
posts::queries::{
delete_post,
get_post_by_remote_object_id,
},
profiles::queries::{
get_profile_by_acct,
get_profile_by_remote_actor_id,
},
reactions::queries::{
delete_reaction,
get_reaction_by_remote_activity_id,
},
relationships::queries::unfollow,
};
use super::HandlerResult;
async fn handle_undo_follow(
config: &Config,
db_client: &mut impl GenericClient,
activity: Activity,
) -> HandlerResult {
let source_profile = get_profile_by_remote_actor_id(
db_client,
&activity.actor,
).await?;
let target_actor_id = find_object_id(&activity.object["object"])?;
let target_username = parse_local_actor_id(
&config.instance_url(),
&target_actor_id,
)?;
// acct equals username if profile is local
let target_profile = get_profile_by_acct(db_client, &target_username).await?;
match unfollow(db_client, &source_profile.id, &target_profile.id).await {
Ok(_) => (),
// Ignore Undo if relationship doesn't exist
Err(DatabaseError::NotFound(_)) => return Ok(None),
Err(other_error) => return Err(other_error.into()),
};
Ok(Some(FOLLOW))
}
pub async fn handle_undo(
config: &Config,
db_client: &mut impl GenericClient,
activity: Activity,
) -> HandlerResult {
if let Some(FOLLOW) = activity.object["type"].as_str() {
2022-12-08 22:47:56 +00:00
// Object type is currently required for processing Undo(Follow)
// because activity IDs of remote follow requests are not stored.
return handle_undo_follow(config, db_client, activity).await
};
2022-10-15 12:32:27 +00:00
let actor_profile = get_profile_by_remote_actor_id(
db_client,
&activity.actor,
).await?;
let object_id = find_object_id(&activity.object)?;
2022-10-15 12:32:27 +00:00
match get_reaction_by_remote_activity_id(db_client, &object_id).await {
Ok(reaction) => {
// Undo(Like)
if reaction.author_id != actor_profile.id {
return Err(ValidationError("actor is not an author").into());
};
delete_reaction(
db_client,
&reaction.author_id,
&reaction.post_id,
).await?;
Ok(Some(LIKE))
},
Err(DatabaseError::NotFound(_)) => {
// Undo(Announce)
2022-10-15 12:32:27 +00:00
let post = match get_post_by_remote_object_id(
db_client,
&object_id,
).await {
Ok(post) => post,
// Ignore undo if neither reaction nor repost is found
Err(DatabaseError::NotFound(_)) => return Ok(None),
Err(other_error) => return Err(other_error.into()),
};
if post.author.id != actor_profile.id {
return Err(ValidationError("actor is not an author").into());
};
match post.repost_of_id {
// Ignore returned data because reposts don't have attached files
Some(_) => delete_post(db_client, &post.id).await?,
// Can't undo regular post
None => return Err(ValidationError("object is not a repost").into()),
};
Ok(Some(ANNOUNCE))
},
2022-05-30 23:58:11 +00:00
Err(other_error) => Err(other_error.into()),
}
}