mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
a7517eefcb
[web] populate db with collections on import, ahead of waitForDb() call GitOrigin-RevId: 7eb4cd61c2052187acd9947d7060f54d9822d314
52 lines
1.2 KiB
JavaScript
52 lines
1.2 KiB
JavaScript
import { User } from '../app/src/models/User.js'
|
|
import UserController from '../app/src/Features/User/UserController.js'
|
|
import Logger from '@overleaf/logger'
|
|
import pLimit from 'p-limit'
|
|
|
|
Logger.logger.level('error')
|
|
const CONCURRENCY = 10
|
|
const failure = []
|
|
const success = []
|
|
console.log('Starting ensure affiliations')
|
|
|
|
const query = {
|
|
'emails.affiliationUnchecked': true,
|
|
}
|
|
|
|
async function _handleEnsureAffiliation(user) {
|
|
try {
|
|
await UserController.promises.ensureAffiliation(user)
|
|
console.log(`✔ ${user._id}`)
|
|
success.push(user._id)
|
|
} catch (error) {
|
|
failure.push(user._id)
|
|
console.log(`ERROR: ${user._id}`, error)
|
|
}
|
|
}
|
|
|
|
async function getUsers() {
|
|
return User.find(query, { emails: 1 }).exec()
|
|
}
|
|
|
|
async function run() {
|
|
const limit = pLimit(CONCURRENCY)
|
|
const users = await getUsers()
|
|
console.log(`Found ${users.length} users`)
|
|
await Promise.all(
|
|
users.map(user => limit(() => _handleEnsureAffiliation(user)))
|
|
)
|
|
|
|
console.log(`${success.length} successes`)
|
|
console.log(`${failure.length} failures`)
|
|
if (failure.length > 0) {
|
|
console.log('Failed to update:', failure)
|
|
}
|
|
}
|
|
|
|
try {
|
|
await run()
|
|
process.exit()
|
|
} catch (error) {
|
|
console.log(error)
|
|
process.exit(1)
|
|
}
|