feat: super simple thread fixer task

probably a bit stupid to do it like this? but whatever eventually should
fix everything just run it a lot lmao
This commit is contained in:
əlemi 2024-06-25 01:27:07 +02:00
parent 4bf5835001
commit 21343436e8
Signed by: alemi
GPG key ID: A4895B84D311642C
2 changed files with 44 additions and 0 deletions

View file

@ -19,6 +19,9 @@ pub use update::*;
mod nuke;
pub use nuke::*;
mod thread;
pub use thread::*;
#[derive(Debug, Clone, clap::Subcommand)]
pub enum CliCommand {
/// generate fake user, note and activity
@ -104,6 +107,11 @@ pub enum CliCommand {
/// also send Delete activities for all local objects
#[arg(long, default_value_t = false)]
delete_objects: bool,
},
/// attempt to fix broken threads and completely gather their context
Thread {
}
}
@ -124,5 +132,7 @@ pub async fn run(ctx: upub::Context, command: CliCommand) -> Result<(), Box<dyn
Ok(register(ctx, username, password, display_name, summary, avatar_url, banner_url).await?),
CliCommand::Nuke { for_real, delete_objects } =>
Ok(nuke(ctx, for_real, delete_objects).await?),
CliCommand::Thread { } =>
Ok(thread(ctx).await?),
}
}

34
upub/cli/src/thread.rs Normal file
View file

@ -0,0 +1,34 @@
use sea_orm::{ColumnTrait, EntityTrait, IntoActiveModel, QueryFilter};
use upub::traits::{fetch::PullError, Fetcher};
pub async fn thread(ctx: upub::Context) -> Result<(), PullError> {
use futures::TryStreamExt;
let db = ctx.db();
tracing::info!("fixing contexts...");
let mut stream = upub::model::object::Entity::find()
.filter(upub::model::object::Column::Context.is_null())
.stream(db)
.await?;
while let Some(mut object) = stream.try_next().await? {
match object.in_reply_to {
None => object.context = Some(object.id.clone()),
Some(ref in_reply_to) => {
let reply = ctx.fetch_object(in_reply_to, ctx.db()).await?;
if let Some(context) = reply.context {
object.context = Some(context);
} else {
continue;
}
},
}
tracing::info!("updating context of {}", object.id);
upub::model::object::Entity::update(object.into_active_model())
.exec(ctx.db())
.await?;
}
tracing::info!("done fixing contexts");
Ok(())
}