2024-05-02 02:59:26 +02:00
|
|
|
use futures::TryStreamExt;
|
|
|
|
use sea_orm::{ColumnTrait, EntityTrait, IntoActiveModel, QueryFilter};
|
|
|
|
|
2024-05-11 22:47:43 +02:00
|
|
|
use crate::server::fetcher::Fetcher;
|
2024-05-02 02:59:26 +02:00
|
|
|
|
2024-05-11 22:47:43 +02:00
|
|
|
pub async fn update_users(ctx: crate::server::Context, days: i64) -> crate::Result<()> {
|
2024-05-02 02:59:26 +02:00
|
|
|
let mut count = 0;
|
|
|
|
let mut insertions = Vec::new();
|
|
|
|
|
|
|
|
{
|
|
|
|
let mut stream = crate::model::user::Entity::find()
|
|
|
|
.filter(crate::model::user::Column::Updated.lt(chrono::Utc::now() - chrono::Duration::days(days)))
|
|
|
|
.stream(ctx.db())
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
|
|
|
|
while let Some(user) = stream.try_next().await? {
|
2024-05-02 03:03:43 +02:00
|
|
|
if ctx.is_local(&user.id) { continue }
|
2024-05-02 02:59:26 +02:00
|
|
|
match ctx.pull_user(&user.id).await {
|
|
|
|
Err(e) => tracing::warn!("could not update user {}: {e}", user.id),
|
|
|
|
Ok(u) => {
|
|
|
|
insertions.push(u);
|
|
|
|
count += 1;
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for u in insertions {
|
|
|
|
tracing::info!("updating user {}", u.id);
|
|
|
|
crate::model::user::Entity::delete_by_id(&u.id).exec(ctx.db()).await?;
|
|
|
|
crate::model::user::Entity::insert(u.into_active_model()).exec(ctx.db()).await?;
|
|
|
|
}
|
|
|
|
|
|
|
|
tracing::info!("updated {count} users");
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|