fedimovies/src/activitypub/handlers/like.rs

63 lines
1.9 KiB
Rust
Raw Normal View History

2022-12-09 21:16:53 +00:00
use serde_json::Value;
use tokio_postgres::GenericClient;
use crate::activitypub::{
activity::Activity,
fetcher::helpers::get_or_import_profile_by_actor_id,
identifiers::parse_local_object_id,
receiver::find_object_id,
vocabulary::NOTE,
};
use crate::config::Config;
2022-12-03 22:09:42 +00:00
use crate::database::DatabaseError;
2022-12-09 21:16:53 +00:00
use crate::errors::ValidationError;
use crate::models::reactions::queries::create_reaction;
2022-10-15 12:32:27 +00:00
use crate::models::posts::queries::get_post_by_remote_object_id;
use super::HandlerResult;
pub async fn handle_like(
config: &Config,
db_client: &mut impl GenericClient,
2022-12-09 21:16:53 +00:00
activity: Value,
) -> HandlerResult {
2022-12-09 21:16:53 +00:00
let activity: Activity = serde_json::from_value(activity)
.map_err(|_| ValidationError("unexpected activity structure"))?;
let author = get_or_import_profile_by_actor_id(
db_client,
&config.instance(),
&config.media_dir(),
&activity.actor,
).await?;
let object_id = find_object_id(&activity.object)?;
2022-10-15 12:32:27 +00:00
let post_id = match parse_local_object_id(
&config.instance_url(),
&object_id,
) {
Ok(post_id) => post_id,
Err(_) => {
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 like if post is not found locally
Err(DatabaseError::NotFound(_)) => return Ok(None),
Err(other_error) => return Err(other_error.into()),
};
post.id
},
};
match create_reaction(
db_client,
&author.id,
&post_id,
Some(&activity.id),
).await {
Ok(_) => (),
// Ignore activity if reaction is already saved
Err(DatabaseError::AlreadyExists(_)) => return Ok(None),
Err(other_error) => return Err(other_error.into()),
};
Ok(Some(NOTE))
}