forked from alemi/upub
fix: don't insert when there's nothing to insert
This commit is contained in:
parent
1db09064a0
commit
139e973277
1 changed files with 12 additions and 8 deletions
|
@ -155,18 +155,20 @@ impl Context {
|
||||||
.iter()
|
.iter()
|
||||||
.filter(|x| !x.ends_with("/followers"))
|
.filter(|x| !x.ends_with("/followers"))
|
||||||
.map(|to| model::addressing::ActiveModel {
|
.map(|to| model::addressing::ActiveModel {
|
||||||
|
id: sea_orm::ActiveValue::NotSet,
|
||||||
server: Set(Context::server(to)),
|
server: Set(Context::server(to)),
|
||||||
actor: Set(to.to_string()),
|
actor: Set(to.to_string()),
|
||||||
activity: Set(aid.to_string()),
|
activity: Set(aid.to_string()),
|
||||||
object: Set(oid.map(|x| x.to_string())),
|
object: Set(oid.map(|x| x.to_string())),
|
||||||
published: Set(chrono::Utc::now()),
|
published: Set(chrono::Utc::now()),
|
||||||
..Default::default()
|
|
||||||
})
|
})
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
model::addressing::Entity::insert_many(addressings)
|
if !addressings.is_empty() {
|
||||||
.exec(self.db())
|
model::addressing::Entity::insert_many(addressings)
|
||||||
.await?;
|
.exec(self.db())
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
@ -177,6 +179,7 @@ impl Context {
|
||||||
.filter(|to| Context::server(to) != self.base())
|
.filter(|to| Context::server(to) != self.base())
|
||||||
.filter(|to| to != &PUBLIC_TARGET)
|
.filter(|to| to != &PUBLIC_TARGET)
|
||||||
.map(|to| model::delivery::ActiveModel {
|
.map(|to| model::delivery::ActiveModel {
|
||||||
|
id: sea_orm::ActiveValue::NotSet,
|
||||||
actor: Set(from.to_string()),
|
actor: Set(from.to_string()),
|
||||||
// TODO we should resolve each user by id and check its inbox because we can't assume
|
// TODO we should resolve each user by id and check its inbox because we can't assume
|
||||||
// it's /users/{id}/inbox for every software, but oh well it's waaaaay easier now
|
// it's /users/{id}/inbox for every software, but oh well it's waaaaay easier now
|
||||||
|
@ -185,13 +188,14 @@ impl Context {
|
||||||
created: Set(chrono::Utc::now()),
|
created: Set(chrono::Utc::now()),
|
||||||
not_before: Set(chrono::Utc::now()),
|
not_before: Set(chrono::Utc::now()),
|
||||||
attempt: Set(0),
|
attempt: Set(0),
|
||||||
..Default::default()
|
|
||||||
})
|
})
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
model::delivery::Entity::insert_many(deliveries)
|
if !deliveries.is_empty() {
|
||||||
.exec(self.db())
|
model::delivery::Entity::insert_many(deliveries)
|
||||||
.await?;
|
.exec(self.db())
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue