relay/src/jobs/apub/undo.rs

51 lines
1.4 KiB
Rust
Raw Normal View History

2020-03-30 17:10:04 +00:00
use crate::{
apub::AcceptedObjects,
config::UrlKind,
data::Actor,
jobs::{apub::generate_undo_follow, Deliver, JobState},
};
use activitystreams::primitives::XsdAnyUri;
2020-04-21 00:56:50 +00:00
use background_jobs::ActixJob;
2020-03-30 17:10:04 +00:00
use std::{future::Future, pin::Pin};
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
pub struct Undo {
input: AcceptedObjects,
actor: Actor,
}
impl Undo {
pub fn new(input: AcceptedObjects, actor: Actor) -> Self {
Undo { input, actor }
}
async fn perform(self, state: JobState) -> Result<(), anyhow::Error> {
let was_following = state.actors.is_following(&self.actor.id).await;
2020-04-26 01:49:29 +00:00
if state.actors.unfollower(&self.actor).await?.is_some() {
2020-03-30 17:10:04 +00:00
state.db.remove_listener(self.actor.inbox.clone()).await?;
}
if was_following {
let my_id: XsdAnyUri = state.config.generate_url(UrlKind::Actor).parse()?;
let undo = generate_undo_follow(&state.config, &self.actor.id, &my_id)?;
state
.job_server
.queue(Deliver::new(self.actor.inbox, undo)?)?;
}
Ok(())
}
}
impl ActixJob for Undo {
type State = JobState;
type Future = Pin<Box<dyn Future<Output = Result<(), anyhow::Error>>>>;
2020-04-21 01:03:46 +00:00
const NAME: &'static str = "relay::jobs::apub::Undo";
2020-04-21 00:56:50 +00:00
2020-03-30 17:10:04 +00:00
fn run(self, state: Self::State) -> Self::Future {
Box::pin(self.perform(state))
}
}