mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 06:07:21 +01:00
* shared model for chat and inbox * disable inbox schema * inbox: use separate model * remove old code that used group.chat * add back chat field (not used) and remove old tests * remove inbox exclusions when loading user * add GET /api/v3/inbox/messages * add comment * implement DELETE /inbox/messages/:messageid in v4 * implement GET /inbox/messages in v4 and update tests * implement DELETE /api/v4/inbox/clear * fix url * fix doc * update /export/inbox.html * update other data exports * add back messages in user schema * add user.toJSONWithInbox * add compativility until migration is done * more compatibility * fix tojson called twice * add compatibility methods * fix common tests * fix v4 integration tests * v3 get user -> with inbox * start to fix tests * fix v3 integration tests * wip * wip, client use new route * update tests for members/send-private-message * tests for get user in v4 * add tests for DELETE /inbox/messages/:messageId * add tests for DELETE /inbox/clear in v4 * update docs * fix tests * initial migration * fix migration * fix migration * migration fixes * migrate api.enterCouponCode * migrate api.castSpell * migrate reset, reroll, rebirth * add routes to v4 version * fix tests * fixes * api.updateUser * remove .only * get user -> userLib * refactor inbox.vue to work with new data model * fix return message when messaging yourself * wip fix bug with new conversation * wip * fix remaining ui issues * move api.registerLocal, fixes * keep only v3 version of GET /inbox/messages
124 lines
3.1 KiB
JavaScript
124 lines
3.1 KiB
JavaScript
const migrationName = '20180811_inboxOutsideUser.js';
|
|
const authorName = 'paglias'; // in case script author needs to know when their ...
|
|
const authorUuid = 'ed4c688c-6652-4a92-9d03-a5a79844174a'; // ... own data is done
|
|
|
|
/*
|
|
* Move inbox messages from the user model to their own collection
|
|
*/
|
|
|
|
const monk = require('monk');
|
|
const nconf = require('nconf');
|
|
|
|
const Inbox = require('../website/server/models/message').inboxModel;
|
|
const connectionString = nconf.get('MIGRATION_CONNECT_STRING'); // FOR TEST DATABASE
|
|
const dbInboxes = monk(connectionString).get('inboxes', { castIds: false });
|
|
const dbUsers = monk(connectionString).get('users', { castIds: false });
|
|
|
|
function processUsers (lastId) {
|
|
let query = {
|
|
migration: {$ne: migrationName},
|
|
};
|
|
|
|
if (lastId) {
|
|
query._id = {
|
|
$gt: lastId,
|
|
};
|
|
}
|
|
|
|
dbUsers.find(query, {
|
|
sort: {_id: 1},
|
|
limit: 1000,
|
|
fields: ['_id', 'inbox'],
|
|
})
|
|
.then(updateUsers)
|
|
.catch((err) => {
|
|
console.log(err);
|
|
return exiting(1, `ERROR! ${ err}`);
|
|
});
|
|
}
|
|
|
|
let progressCount = 1000;
|
|
let count = 0;
|
|
let msgCount = 0;
|
|
|
|
function updateUsers (users) {
|
|
if (!users || users.length === 0) {
|
|
console.warn('All appropriate users and their tasks found and modified.');
|
|
displayData();
|
|
return;
|
|
}
|
|
|
|
let usersPromises = users.map(updateUser);
|
|
let lastUser = users[users.length - 1];
|
|
|
|
return Promise.all(usersPromises)
|
|
.then(() => {
|
|
return processUsers(lastUser._id);
|
|
});
|
|
}
|
|
|
|
function updateUser (user) {
|
|
count++;
|
|
|
|
if (count % progressCount === 0) console.warn(`${count } ${ user._id}`);
|
|
if (msgCount % progressCount === 0) console.warn(`${msgCount } messages processed`);
|
|
if (user._id === authorUuid) console.warn(`${authorName } being processed`);
|
|
|
|
const oldInboxMessages = user.inbox.messages || {};
|
|
const oldInboxMessagesIds = Object.keys(oldInboxMessages);
|
|
|
|
msgCount += oldInboxMessagesIds.length;
|
|
|
|
const newInboxMessages = oldInboxMessagesIds.map(msgId => {
|
|
const msg = oldInboxMessages[msgId];
|
|
if (!msg || (!msg.id && !msg._id)) { // eslint-disable-line no-extra-parens
|
|
console.log('missing message or message _id and id', msg);
|
|
throw new Error('error!');
|
|
}
|
|
|
|
if (msg.id && !msg._id) msg._id = msg.id;
|
|
if (msg._id && !msg.id) msg.id = msg._id;
|
|
|
|
const newMsg = new Inbox(msg);
|
|
newMsg.ownerId = user._id;
|
|
return newMsg.toJSON();
|
|
});
|
|
|
|
return dbInboxes.insert(newInboxMessages)
|
|
.then(() => {
|
|
return dbUsers.update({_id: user._id}, {
|
|
$set: {
|
|
migration: migrationName,
|
|
'inbox.messages': {},
|
|
},
|
|
});
|
|
})
|
|
.catch((err) => {
|
|
console.log(err);
|
|
return exiting(1, `ERROR! ${ err}`);
|
|
});
|
|
}
|
|
|
|
function displayData () {
|
|
console.warn(`\n${ count } users processed\n`);
|
|
console.warn(`\n${ msgCount } messages 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);
|
|
}
|
|
|
|
module.exports = processUsers;
|