mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-24 17:51:51 +02:00
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
const {db} = require('../app/js/infrastructure/mongojs')
|
|
const FeaturesUpdater = require(
|
|
'../app/js/Features/Subscription/FeaturesUpdater'
|
|
)
|
|
const V1SubscriptionManager = require(
|
|
'../app/js/Features/Subscription/V1SubscriptionManager'
|
|
)
|
|
const async = require('async')
|
|
const logger = require('logger-sharelatex')
|
|
logger.logger.level('error')
|
|
|
|
db.users.find({
|
|
'overleaf.id': { $exists: true }
|
|
}, {
|
|
overleaf: 1
|
|
}, function (error, users) {
|
|
if (error) throw error
|
|
console.log('Found users:', users.length)
|
|
async.mapSeries(users, function (user, callback) {
|
|
console.log('refreshing in v2', user._id)
|
|
FeaturesUpdater.refreshFeatures(user._id, false, function (error) {
|
|
if (error) console.error('ERROR', error)
|
|
console.log('refreshing in v1', user._id)
|
|
V1SubscriptionManager.notifyV1OfFeaturesChange(
|
|
user._id,
|
|
function (error) {
|
|
if (error) console.error('ERROR', error)
|
|
callback()
|
|
}
|
|
)
|
|
})
|
|
}, function (error) {
|
|
if (error) throw error
|
|
console.log('FINISHED!')
|
|
process.exit()
|
|
})
|
|
})
|