mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-15 21:57:22 +01:00
* upgrade gulp-babel * upgrade babel-eslint * upgrade eslint-friendly-formatter * start upgrading chai * start to upgrade eslint * restore skipped tests * start to upgrqde monk * fix linting and remove unused file * fix mocha notifications, and common tests * fix unit tests * start to fix initrgration tests * more integration tests fixes * upgrade monk to latest version * lint /scripts * migrations: start moving to /archive unused migrations and run eslint with --fix * lint migrations * fix more integration tests * fix test
120 lines
3.4 KiB
JavaScript
120 lines
3.4 KiB
JavaScript
/* let migrationName = 'restore_profile_data.js'; */
|
|
let authorName = 'ThehollidayInn'; // in case script author needs to know when their ...
|
|
let authorUuid = ''; // ... own data is done
|
|
|
|
/*
|
|
* Check if users have empty profile data in new database and update it with old database info
|
|
*/
|
|
|
|
let monk = require('monk');
|
|
let connectionString = ''; // FOR TEST DATABASE
|
|
let dbUsers = monk(connectionString).get('users', { castIds: false });
|
|
|
|
let monk2 = require('monk');
|
|
let oldDbConnectionString = 'mongodb://localhost:27017/habitrpg?auto_reconnect=true'; // FOR TEST DATABASE
|
|
let olDbUsers = monk2(oldDbConnectionString).get('users', { castIds: false });
|
|
|
|
function processUsers (lastId) {
|
|
// specify a query to limit the affected users (empty for all users):
|
|
let query = {
|
|
// 'profile.name': 'profile name not found',
|
|
'profile.blurb': null,
|
|
// 'auth.timestamps.loggedin': {$gt: new Date('11/30/2016')},
|
|
};
|
|
|
|
if (lastId) {
|
|
query._id = {
|
|
$gt: lastId,
|
|
};
|
|
}
|
|
|
|
dbUsers.find(query, {
|
|
sort: {_id: 1},
|
|
limit: 250,
|
|
fields: ['_id', 'profile', 'auth.timestamps.loggedin'], // specify fields we are interested in to limit retrieved data (empty if we're not reading data):
|
|
})
|
|
.then(updateUsers)
|
|
.catch((err) => {
|
|
console.log(err);
|
|
return exiting(1, `ERROR! ${ err}`);
|
|
});
|
|
}
|
|
|
|
let progressCount = 1000;
|
|
let count = 0;
|
|
|
|
function updateUsers (users) {
|
|
if (!users || users.length === 0) {
|
|
console.warn('All appropriate users found and modified.');
|
|
setTimeout(displayData, 300000);
|
|
return;
|
|
}
|
|
|
|
let userPaymentPromises = users.map(updateUser);
|
|
let lastUser = users[users.length - 1];
|
|
|
|
return Promise.all(userPaymentPromises)
|
|
.then(() => {
|
|
return processUsers(lastUser._id);
|
|
});
|
|
}
|
|
|
|
function updateUser (user) {
|
|
count++;
|
|
|
|
if (!user.profile.name || user.profile.name === 'profile name not found' || !user.profile.imageUrl || !user.profile.blurb) {
|
|
return olDbUsers.findOne({_id: user._id}, '_id profile')
|
|
.then((oldUserData) => {
|
|
if (!oldUserData) return;
|
|
// specify user data to change:
|
|
let set = {};
|
|
|
|
if (oldUserData.profile.name === 'profile name not found') return;
|
|
|
|
let userNeedsProfileName = !user.profile.name || user.profile.name === 'profile name not found';
|
|
if (userNeedsProfileName && oldUserData.profile.name) {
|
|
set['profile.name'] = oldUserData.profile.name;
|
|
}
|
|
|
|
if (!user.profile.imageUrl && oldUserData.profile.imageUrl) {
|
|
set['profile.imageUrl'] = oldUserData.profile.imageUrl;
|
|
}
|
|
|
|
if (!user.profile.blurb && oldUserData.profile.blurb) {
|
|
set['profile.blurb'] = oldUserData.profile.blurb;
|
|
}
|
|
|
|
if (Object.keys(set).length !== 0 && set.constructor === Object) {
|
|
console.log(set);
|
|
return dbUsers.update({_id: user._id}, {$set: set});
|
|
}
|
|
});
|
|
}
|
|
|
|
if (count % progressCount === 0) console.warn(`${count } ${ user._id}`);
|
|
if (user._id === authorUuid) console.warn(`${authorName } processed`);
|
|
}
|
|
|
|
function displayData () {
|
|
console.warn(`\n${ count } users processed\n`);
|
|
return exiting(0);
|
|
}
|
|
|
|
function exiting (code, msg) {
|
|
code = code || 0; // 0 = success
|
|
if (code && !msg) {
|
|
msg = 'ERROR!';
|
|
}
|
|
if (msg) {
|
|
if (code) {
|
|
console.error(msg);
|
|
} else {
|
|
console.log(msg);
|
|
}
|
|
}
|
|
process.exit(code);
|
|
}
|
|
|
|
|
|
processUsers();
|