-
Notifications
You must be signed in to change notification settings - Fork 10.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] Room's list showing all rooms with same name (#20176)
- Loading branch information
1 parent
0cfb988
commit 0c5100d
Showing
2 changed files
with
90 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -209,4 +209,5 @@ import './v209'; | |
import './v210'; | ||
import './v211'; | ||
import './v212'; | ||
import './v213'; | ||
import './xrun'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
import { Migrations } from '../../../app/migrations'; | ||
import { Subscriptions, Rooms } from '../../../app/models/server/raw'; | ||
|
||
const updateSubscriptions = async () => { | ||
const cursor = Subscriptions.find({ t: 'd' }, { projection: { rid: 1, u: 1 } }); | ||
|
||
let actions = []; | ||
for await (const sub of cursor) { | ||
const room = await Rooms.findOne({ _id: sub.rid }, { projection: { usernames: 1 } }); | ||
if (!room) { | ||
console.log(`[migration] room record not found: ${ sub.rid }`); | ||
continue; | ||
} | ||
|
||
if (!room.usernames || room.usernames.length === 0) { | ||
console.log(`[migration] room without usernames: ${ sub.rid }`); | ||
continue; | ||
} | ||
|
||
const name = room.usernames | ||
.filter((u) => u !== sub.u.username) | ||
.sort() | ||
.join(', ') || sub.u.username; | ||
if (!name) { | ||
console.log(`[migration] subscription without name ${ sub._id }`); | ||
continue; | ||
} | ||
|
||
actions.push({ | ||
updateMany: { | ||
filter: { _id: sub._id }, | ||
update: { $set: { name, _updatedAt: new Date() } }, | ||
}, | ||
}); | ||
if (actions.length === 1000) { | ||
await Subscriptions.col.bulkWrite(actions, { ordered: false }); | ||
actions = []; | ||
} | ||
} | ||
if (actions.length) { | ||
await Subscriptions.col.bulkWrite(actions, { ordered: false }); | ||
} | ||
}; | ||
|
||
Migrations.add({ | ||
version: 213, | ||
up() { | ||
Promise.await((async () => { | ||
const options = { | ||
projection: { rid: 1, u: 1, name: 1 }, | ||
}; | ||
const cursor = Subscriptions.find({ t: 'd' }, options).sort({ _updatedAt: 1 }).limit(100); | ||
const total = await cursor.count(); | ||
|
||
// if number of subscription is low, we can go ahead and fix them all | ||
if (total < 1000) { | ||
return updateSubscriptions(); | ||
} | ||
|
||
// otherwise we'll first see if they're broken | ||
const subs = await cursor.toArray(); | ||
const subsTotal = subs.length; | ||
|
||
const subsWithRoom = await Promise.all(subs.map(async (sub) => ({ | ||
sub, | ||
room: await Rooms.findOne({ _id: sub.rid }, { projection: { usernames: 1 } }), | ||
}))); | ||
|
||
const wrongSubs = subsWithRoom | ||
.filter(({ room }) => room && room.usernames && room.usernames.length > 0) | ||
.filter(({ room, sub }) => { | ||
const name = room.usernames | ||
.filter((u) => u !== sub.u.username) | ||
.sort() | ||
.join(', ') || sub.u.username; | ||
|
||
return name !== sub.name; | ||
}).length; | ||
|
||
|
||
// if less then 5% of subscriptions are wrong, we're fine, doesn't need to do anything | ||
if (wrongSubs / subsTotal < 0.05) { | ||
return; | ||
} | ||
|
||
return updateSubscriptions(); | ||
})()); | ||
}, | ||
}); |