mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-10-27 11:12:28 +01:00
32 lines
1.2 KiB
JavaScript
32 lines
1.2 KiB
JavaScript
// node .migrations/20131127_restore_dayStart.js
|
|
|
|
var mongo = require('mongoskin');
|
|
var _ = require('lodash');
|
|
|
|
var backupUsers = mongo.db('localhost:27017/habitrpg_old?auto_reconnect').collection('users');
|
|
var liveUsers = mongo.db('localhost:27017/habitrpg_new?auto_reconnect').collection('users');
|
|
|
|
var query = {'preferences.dayStart':{$exists:1,$ne:0}};
|
|
var select = {'preferences.dayStart': 1};
|
|
|
|
backupUsers.count(query, function(err, count){
|
|
if (err) return console.error(err);
|
|
backupUsers.findEach(query, select, {batchSize:20}, function(err, before){
|
|
if (err) return console.error(err);
|
|
if (!before) { count--; return console.log('!before'); }
|
|
liveUsers.findById(before._id, function(err, after){
|
|
if (err) return console.error(err);
|
|
if (!after) { count--; return console.log(before._id + ' deleted?'); }
|
|
|
|
var dayStart = +before.preferences.dayStart;
|
|
if (after.preferences.dayStart == 0 && dayStart != 0){
|
|
dayStart = (_.isNaN(dayStart) || dayStart < 0 || dayStart > 24) ? 0 : dayStart;
|
|
} else {
|
|
dayStart = after.preferences.dayStart;
|
|
}
|
|
|
|
liveUsers.update({_id:after._id}, {$inc:{_v:1}, $set:{'preferences.dayStart':dayStart}});
|
|
if (--count <= 0) console.log("DONE!");
|
|
})
|
|
});
|
|
}); |