mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
9dca97cb50
[web] allow disconnect_all_users.js --delay-in-seconds=0 GitOrigin-RevId: f52f26588da502ab43724854a3fe138347767f09
65 lines
1.9 KiB
JavaScript
65 lines
1.9 KiB
JavaScript
const { promisify } = require('util')
|
|
const Settings = require('@overleaf/settings')
|
|
const AdminController = require('../app/src/Features/ServerAdmin/AdminController')
|
|
|
|
const args = require('minimist')(process.argv.slice(2), {
|
|
string: ['confirm-site-url', 'delay-in-seconds'],
|
|
default: {
|
|
'delay-in-seconds': 10,
|
|
'confirm-site-url': '',
|
|
},
|
|
})
|
|
const sleep = promisify(setTimeout)
|
|
|
|
async function main() {
|
|
if (args.help) {
|
|
console.error()
|
|
console.error(
|
|
' usage: node disconnect_all_users.js [--delay-in-seconds=10] --confirm-site-url=https://www....\n'
|
|
)
|
|
process.exit(1)
|
|
}
|
|
if (Settings.overleaf && args['confirm-site-url'] !== Settings.siteUrl) {
|
|
console.error()
|
|
console.error(
|
|
'Please confirm the environment you want to disconnect ALL USERS from by specifying the site URL aka PUBLIC_URL, e.g. --confirm-site-url=https://www.dev-overleaf.com for the dev-env'
|
|
)
|
|
console.error()
|
|
console.error(
|
|
`!!! --confirm-site-url=${
|
|
args['confirm-site-url'] || "''"
|
|
} does not match the PUBLIC_URL in this environment.`
|
|
)
|
|
console.error()
|
|
console.error(' Are you running this script in the correct environment?')
|
|
process.exit(1)
|
|
}
|
|
const delay = parseInt(args['delay-in-seconds'] || '10', 10)
|
|
if (!(delay >= 0)) {
|
|
console.error(
|
|
`--delay-in-seconds='${args['delay-in-seconds']}' should be a number >=0`
|
|
)
|
|
process.exit(1)
|
|
}
|
|
console.log()
|
|
console.log(
|
|
`Disconnect all users from ${args['confirm-site-url']}, with delay ${delay}`
|
|
)
|
|
|
|
console.error(' Use CTRL+C in the next 5s to abort.')
|
|
await sleep(5 * 1000)
|
|
|
|
await AdminController._sendDisconnectAllUsersMessage(delay)
|
|
}
|
|
|
|
if (require.main === module) {
|
|
main()
|
|
.then(() => {
|
|
console.error('Done.')
|
|
process.exit(0)
|
|
})
|
|
.catch(err => {
|
|
console.error('Error', err)
|
|
process.exit(1)
|
|
})
|
|
}
|