mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
26f3f3e2e2
Migrate scripts folder to esm 1/x GitOrigin-RevId: 4a4bc9a161f144fdb40ce3f2a0a9313b36c6df81
35 lines
1.1 KiB
JavaScript
35 lines
1.1 KiB
JavaScript
import { waitForDb } from '../app/src/infrastructure/mongodb.js'
|
|
import SAMLUserIdMigrationHandler from '../modules/saas-authentication/app/src/SAML/SAMLUserIdMigrationHandler.js'
|
|
import { ensureRunningOnMongoSecondaryWithTimeout } from './helpers/env_variable_helper.mjs'
|
|
|
|
ensureRunningOnMongoSecondaryWithTimeout(300000)
|
|
|
|
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 Identifiers: ${result.multipleIdentifiers}`
|
|
)
|
|
}
|
|
|
|
console.log(
|
|
`\nMigrated: ${result.migrated.length}\nNot migrated: ${result.notMigrated.length}\nMultiple Identifiers: ${result.multipleIdentifiers.length}`
|
|
)
|
|
|
|
process.exit()
|
|
}
|