2020-10-05 04:29:37 -04:00
|
|
|
const { waitForDb } = require('../app/src/infrastructure/mongodb')
|
2019-07-11 14:45:50 -04:00
|
|
|
const InstitutionsManager = require('../app/src/Features/Institutions/InstitutionsManager')
|
2019-01-28 09:18:01 -05:00
|
|
|
|
|
|
|
const institutionId = parseInt(process.argv[2])
|
|
|
|
if (isNaN(institutionId)) throw new Error('No institution id')
|
|
|
|
console.log('Checking users of institution', institutionId)
|
|
|
|
|
2020-10-05 04:29:37 -04:00
|
|
|
waitForDb()
|
|
|
|
.then(main)
|
|
|
|
.catch(err => {
|
|
|
|
console.error(err)
|
|
|
|
process.exit(1)
|
|
|
|
})
|
|
|
|
|
|
|
|
function main() {
|
|
|
|
InstitutionsManager.checkInstitutionUsers(institutionId, function(
|
|
|
|
error,
|
|
|
|
usersSummary
|
|
|
|
) {
|
|
|
|
if (error) {
|
|
|
|
console.log(error)
|
|
|
|
} else {
|
|
|
|
console.log(usersSummary)
|
|
|
|
}
|
|
|
|
process.exit()
|
|
|
|
})
|
|
|
|
}
|