mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
8c816b3b23
[v1 and web] Migrate institution SSO external user ID GitOrigin-RevId: f31cd50fbada9a2704df1c837d695f2ff547420d
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
process.env.MONGO_CONNECTION_STRING =
|
|
process.env.READ_ONLY_MONGO_CONNECTION_STRING
|
|
|
|
const { waitForDb } = require('../app/src/infrastructure/mongodb')
|
|
const SAMLUserIdMigrationHandler = require('../modules/overleaf-integration/app/src/SAML/SAMLUserIdMigrationHandler')
|
|
|
|
const institutionId = parseInt(process.argv[2])
|
|
if (isNaN(institutionId)) throw new Error('No institution id')
|
|
const emitUsers = process.argv.includes('--emit-users')
|
|
|
|
console.log('Checking SSO user ID migration for institution:', institutionId)
|
|
|
|
waitForDb()
|
|
.then(main)
|
|
.catch(error => {
|
|
console.error(error)
|
|
process.exit(1)
|
|
})
|
|
|
|
async function main() {
|
|
const result = await SAMLUserIdMigrationHandler.promises.checkMigration(
|
|
institutionId
|
|
)
|
|
|
|
if (emitUsers) {
|
|
console.log(
|
|
`\nMigrated: ${result.migrated}\nNot migrated: ${result.notMigrated}\nMultiple Identifers: ${result.multipleIdentifiers}`
|
|
)
|
|
}
|
|
|
|
console.log(
|
|
`\nMigrated: ${result.migrated.length}\nNot migrated: ${result.notMigrated.length}\nMultiple Identifers: ${result.multipleIdentifiers.length}`
|
|
)
|
|
|
|
process.exit()
|
|
}
|