overleaf/services/web/scripts/refresh_institution_users.mjs
Liangjun Song 902ae750dc Merge pull request #21202 from overleaf/ls-scripts-to-esm-2
Migrate scripts folder to esm 2/x

GitOrigin-RevId: 1698bc4f13e026fa281d37a4914a2f997849c761
2024-10-23 08:04:53 +00:00

40 lines
1 KiB
JavaScript

import { waitForDb } from '../app/src/infrastructure/mongodb.js'
import minimist from 'minimist'
import InstitutionsManager from '../app/src/Features/Institutions/InstitutionsManager.js'
const institutionId = parseInt(process.argv[2])
if (isNaN(institutionId)) throw new Error('No institution id')
console.log('Refreshing users at institution', institutionId)
function main() {
const argv = minimist(process.argv.slice(2))
if (!argv.notify) {
throw new Error('Missing `notify` flag. Please use `--notify true|false`')
}
if (!argv.notify[0]) {
throw new Error('Empty `notify` flag. Please use `--notify true|false`')
}
const notify = argv.notify[0] === 't'
console.log('Running with notify =', notify)
InstitutionsManager.refreshInstitutionUsers(
institutionId,
notify,
function (error) {
if (error) {
console.log(error)
} else {
console.log('DONE 👌')
}
process.exit()
}
)
}
try {
await waitForDb()
await main()
} catch (error) {
console.error(error)
process.exit(1)
}