2018-02-17 17:11:24 +00:00
|
|
|
let migrationName = '20171117_turkey_ladder.js';
|
|
|
|
|
let authorName = 'Sabe'; // in case script author needs to know when their ...
|
|
|
|
|
let authorUuid = '7f14ed62-5408-4e1b-be83-ada62d504931'; // ... own data is done
|
2017-11-17 22:21:05 +00:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Award the Turkey Day ladder:
|
|
|
|
|
* Grant Turkey Costume to those who have the Gilded Turkey mount
|
|
|
|
|
* Grant Gilded Turkey mount to those who have the Gilded Turkey pet
|
|
|
|
|
* Grant Gilded Turkey pet to those who have the Base Turkey mount
|
|
|
|
|
* Grant Base Turkey mount to those who have the Base Turkey pet
|
|
|
|
|
* Grant Base Turkey pet to those who have none of the above yet
|
|
|
|
|
*/
|
|
|
|
|
|
2018-02-17 17:11:24 +00:00
|
|
|
let monk = require('monk');
|
|
|
|
|
let connectionString = 'mongodb://localhost:27017/habitrpg?auto_reconnect=true'; // FOR TEST DATABASE
|
|
|
|
|
let dbUsers = monk(connectionString).get('users', { castIds: false });
|
2017-11-17 22:21:05 +00:00
|
|
|
|
2018-02-17 17:11:24 +00:00
|
|
|
function processUsers (lastId) {
|
2017-11-17 22:21:05 +00:00
|
|
|
// specify a query to limit the affected users (empty for all users):
|
2018-02-17 17:11:24 +00:00
|
|
|
let query = {
|
|
|
|
|
migration: {$ne: migrationName},
|
|
|
|
|
'auth.timestamps.loggedin': {$gt: new Date('2017-11-01')},
|
2017-11-17 22:21:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (lastId) {
|
|
|
|
|
query._id = {
|
2018-02-17 17:11:24 +00:00
|
|
|
$gt: lastId,
|
|
|
|
|
};
|
2017-11-17 22:21:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dbUsers.find(query, {
|
|
|
|
|
sort: {_id: 1},
|
|
|
|
|
limit: 250,
|
|
|
|
|
fields: [
|
|
|
|
|
'items.pets',
|
|
|
|
|
'items.mounts',
|
2018-02-17 17:11:24 +00:00
|
|
|
], // specify fields we are interested in to limit retrieved data (empty if we're not reading data):
|
2017-11-17 22:21:05 +00:00
|
|
|
})
|
2018-02-17 17:11:24 +00:00
|
|
|
.then(updateUsers)
|
|
|
|
|
.catch(function (err) {
|
|
|
|
|
console.log(err);
|
|
|
|
|
return exiting(1, `ERROR! ${ err}`);
|
|
|
|
|
});
|
2017-11-17 22:21:05 +00:00
|
|
|
}
|
|
|
|
|
|
2018-02-17 17:11:24 +00:00
|
|
|
let progressCount = 1000;
|
|
|
|
|
let count = 0;
|
2017-11-17 22:21:05 +00:00
|
|
|
|
|
|
|
|
function updateUsers (users) {
|
|
|
|
|
if (!users || users.length === 0) {
|
|
|
|
|
console.warn('All appropriate users found and modified.');
|
|
|
|
|
displayData();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-17 17:11:24 +00:00
|
|
|
let userPromises = users.map(updateUser);
|
|
|
|
|
let lastUser = users[users.length - 1];
|
2017-11-17 22:21:05 +00:00
|
|
|
|
|
|
|
|
return Promise.all(userPromises)
|
2018-02-17 17:11:24 +00:00
|
|
|
.then(function () {
|
|
|
|
|
processUsers(lastUser._id);
|
|
|
|
|
});
|
2017-11-17 22:21:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function updateUser (user) {
|
|
|
|
|
count++;
|
|
|
|
|
|
2018-02-17 17:11:24 +00:00
|
|
|
let set = {};
|
2017-11-17 22:21:05 +00:00
|
|
|
|
|
|
|
|
if (user && user.items && user.items.mounts && user.items.mounts['Turkey-Gilded']) {
|
|
|
|
|
set = {
|
|
|
|
|
migration: migrationName,
|
|
|
|
|
'items.gear.owned.head_special_turkeyHelmBase': false,
|
|
|
|
|
'items.gear.owned.armor_special_turkeyArmorBase': false,
|
|
|
|
|
'items.gear.owned.back_special_turkeyTailBase': false,
|
|
|
|
|
};
|
|
|
|
|
var push = [
|
|
|
|
|
{
|
|
|
|
|
type: 'marketGear',
|
|
|
|
|
path: 'gear.flat.head_special_turkeyHelmBase',
|
|
|
|
|
_id: monk.id(),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'marketGear',
|
|
|
|
|
path: 'gear.flat.armor_special_turkeyArmorBase',
|
|
|
|
|
_id: monk.id(),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'marketGear',
|
|
|
|
|
path: 'gear.flat.back_special_turkeyTailBase',
|
|
|
|
|
_id: monk.id(),
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
} else if (user && user.items && user.items.pets && user.items.pets['Turkey-Gilded']) {
|
2018-02-17 17:11:24 +00:00
|
|
|
set = {migration: migrationName, 'items.mounts.Turkey-Gilded': true};
|
2017-11-17 22:21:05 +00:00
|
|
|
} else if (user && user.items && user.items.mounts && user.items.mounts['Turkey-Base']) {
|
2018-02-17 17:11:24 +00:00
|
|
|
set = {migration: migrationName, 'items.pets.Turkey-Gilded': 5};
|
2017-11-17 22:21:05 +00:00
|
|
|
} else if (user && user.items && user.items.pets && user.items.pets['Turkey-Base']) {
|
2018-02-17 17:11:24 +00:00
|
|
|
set = {migration: migrationName, 'items.mounts.Turkey-Base': true};
|
2017-11-17 22:21:05 +00:00
|
|
|
} else {
|
2018-02-17 17:11:24 +00:00
|
|
|
set = {migration: migrationName, 'items.pets.Turkey-Base': 5};
|
2017-11-17 22:21:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dbUsers.update({_id: user._id}, {$set: set});
|
|
|
|
|
if (push) {
|
|
|
|
|
dbUsers.update({_id: user._id}, {$push: {pinnedItems: {$each: push}}});
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-17 17:11:24 +00:00
|
|
|
if (count % progressCount === 0) console.warn(`${count } ${ user._id}`);
|
|
|
|
|
if (user._id === authorUuid) console.warn(`${authorName } processed`);
|
2017-11-17 22:21:05 +00:00
|
|
|
}
|
|
|
|
|
|
2018-02-17 17:11:24 +00:00
|
|
|
function displayData () {
|
|
|
|
|
console.warn(`\n${ count } users processed\n`);
|
2017-11-17 22:21:05 +00:00
|
|
|
return exiting(0);
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-17 17:11:24 +00:00
|
|
|
function exiting (code, msg) {
|
2017-11-17 22:21:05 +00:00
|
|
|
code = code || 0; // 0 = success
|
2018-02-17 17:11:24 +00:00
|
|
|
if (code && !msg) {
|
|
|
|
|
msg = 'ERROR!';
|
|
|
|
|
}
|
2017-11-17 22:21:05 +00:00
|
|
|
if (msg) {
|
2018-02-17 17:11:24 +00:00
|
|
|
if (code) {
|
|
|
|
|
console.error(msg);
|
|
|
|
|
} else {
|
|
|
|
|
console.log(msg);
|
|
|
|
|
}
|
2017-11-17 22:21:05 +00:00
|
|
|
}
|
|
|
|
|
process.exit(code);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
module.exports = processUsers;
|