mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-14 20:24:53 +00:00
Add in check to see if user was out of sync
This commit is contained in:
parent
89d5605874
commit
de519f545f
1 changed files with 32 additions and 5 deletions
|
@ -9,29 +9,56 @@ const async = require('async')
|
|||
const logger = require('logger-sharelatex')
|
||||
logger.logger.level('error')
|
||||
|
||||
const areFeaturesEqual = function(featuresA, featuresB) {
|
||||
for (const feature in featuresA) {
|
||||
if (featuresA[feature] !== featuresB[feature]) {
|
||||
return false
|
||||
}
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
||||
var outOfSyncUserCount = 0
|
||||
var userCount = null
|
||||
|
||||
db.users.find({
|
||||
'overleaf.id': { $exists: true }
|
||||
}, {
|
||||
overleaf: 1
|
||||
overleaf: 1,
|
||||
features: 1
|
||||
}, function (error, users) {
|
||||
if (error) throw error
|
||||
console.log('Found users:', users.length)
|
||||
console.log('USER COUNT', userCount = users.length)
|
||||
async.mapSeries(users, function (user, callback) {
|
||||
console.log('refreshing in v2', user._id)
|
||||
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)
|
||||
console.log('REFRESHING IN v1', user._id)
|
||||
V1SubscriptionManager.notifyV1OfFeaturesChange(
|
||||
user._id,
|
||||
function (error) {
|
||||
if (error) console.error('ERROR', error)
|
||||
callback()
|
||||
db.users.find({
|
||||
_id: user._id
|
||||
}, {
|
||||
features: 1
|
||||
}, function (error, [updatedUser]) {
|
||||
if (error) throw error
|
||||
if (areFeaturesEqual(user.features, updatedUser.features)) {
|
||||
console.log('UNCHANGED', user._id)
|
||||
} else {
|
||||
console.log('MODIFIED', user._id)
|
||||
outOfSyncUserCount = outOfSyncUserCount + 1
|
||||
}
|
||||
callback()
|
||||
})
|
||||
}
|
||||
)
|
||||
})
|
||||
}, function (error) {
|
||||
if (error) throw error
|
||||
console.log('FINISHED!')
|
||||
console.log('OUT OF SYNC USERS', outOfSyncUserCount, '/', userCount)
|
||||
process.exit()
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Reference in a new issue