mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
61 lines
1.5 KiB
JavaScript
61 lines
1.5 KiB
JavaScript
|
const Settings = require('@overleaf/settings')
|
||
|
const logger = require('@overleaf/logger')
|
||
|
const { db, waitForDb } = require('../../../app/src/infrastructure/mongodb')
|
||
|
const {
|
||
|
mergeFeatures,
|
||
|
compareFeatures,
|
||
|
} = require('../../../app/src/Features/Subscription/FeaturesHelper')
|
||
|
const DRY_RUN = !process.argv.includes('--dry-run=false')
|
||
|
|
||
|
async function main(DRY_RUN, defaultFeatures) {
|
||
|
await waitForDb()
|
||
|
|
||
|
logger.info({ defaultFeatures }, 'default features')
|
||
|
|
||
|
const cursor = db.users.find(
|
||
|
{},
|
||
|
{ projection: { _id: 1, email: 1, features: 1 } }
|
||
|
)
|
||
|
for await (const user of cursor) {
|
||
|
const newFeatures = mergeFeatures(user.features, defaultFeatures)
|
||
|
const diff = compareFeatures(newFeatures, user.features)
|
||
|
if (Object.keys(diff).length > 0) {
|
||
|
logger.warn(
|
||
|
{
|
||
|
userId: user._id,
|
||
|
email: user.email,
|
||
|
oldFeatures: user.features,
|
||
|
newFeatures,
|
||
|
},
|
||
|
'user features upgraded'
|
||
|
)
|
||
|
|
||
|
if (!DRY_RUN) {
|
||
|
await db.users.updateOne(
|
||
|
{ _id: user._id },
|
||
|
{ $set: { features: newFeatures } }
|
||
|
)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = main
|
||
|
|
||
|
if (require.main === module) {
|
||
|
if (DRY_RUN) {
|
||
|
console.error('---')
|
||
|
console.error('Dry-run enabled, use --dry-run=false to commit changes')
|
||
|
console.error('---')
|
||
|
}
|
||
|
main(DRY_RUN, Settings.defaultFeatures)
|
||
|
.then(() => {
|
||
|
console.log('Done.')
|
||
|
process.exit(0)
|
||
|
})
|
||
|
.catch(error => {
|
||
|
console.error({ error })
|
||
|
process.exit(1)
|
||
|
})
|
||
|
}
|