forked from shadowfacts/shadowfacts.net
Deduplicate inboxes when federating activities
This commit is contained in:
parent
d0663a17e7
commit
63c679d859
|
@ -130,15 +130,18 @@ export async function signAndSend(activity: Activity, inbox: string) {
|
|||
}
|
||||
|
||||
async function sendToFollowers(activity: Create, db: Database) {
|
||||
// TODO: only send to unique inboxes
|
||||
db.each("SELECT inbox FROM followers", (err, result) => {
|
||||
db.all("SELECT inbox FROM followers", (err, results) => {
|
||||
if (err) {
|
||||
console.log("Error getting followers: ", err);
|
||||
return;
|
||||
}
|
||||
const inbox = "https://" + new URL(result.inbox).host + "/inbox";
|
||||
console.log(`Federating ${activity.object.id} to ${inbox}`);
|
||||
signAndSend(activity, inbox);
|
||||
const inboxes = results.map(it => "https://" + new URL(it.inbox).host + "/inbox");
|
||||
// convert to a Set to deduplicate inboxes
|
||||
(new Set(inboxes))
|
||||
.forEach(inbox => {
|
||||
console.log(`Federating ${activity.object.id} to ${inbox}`);
|
||||
signAndSend(activity, inbox);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue