mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
4997b7f1ee
[web] Rename overleaf-integration module to saas-authentication GitOrigin-RevId: 7d69e06a19da9855fa9a0962114ad97b45ad8875
36 lines
954 B
JavaScript
36 lines
954 B
JavaScript
process.env.MONGO_SOCKET_TIMEOUT = '300000'
|
|
const { waitForDb } = require('../app/src/infrastructure/mongodb')
|
|
const SAMLUserIdMigrationHandler = require('../modules/saas-authentication/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(
|
|
'Remove SSO linking for users not migrated at institution:',
|
|
institutionId
|
|
)
|
|
|
|
waitForDb()
|
|
.then(main)
|
|
.catch(error => {
|
|
console.error(error)
|
|
process.exit(1)
|
|
})
|
|
|
|
async function main() {
|
|
const result =
|
|
await SAMLUserIdMigrationHandler.promises.removeNotMigrated(institutionId)
|
|
|
|
if (emitUsers) {
|
|
console.log(
|
|
`\nRemoved: ${result.success}\nFailed to remove: ${result.failed}`
|
|
)
|
|
}
|
|
|
|
console.log(
|
|
`\nRemoved: ${result.success.length}\nFailed to remove: ${result.failed.length}`
|
|
)
|
|
|
|
process.exit()
|
|
}
|