2013-09-24 14:46:30 +04:00
|
|
|
var when = require('when'),
|
|
|
|
_ = require('underscore'),
|
2013-09-17 19:55:55 +04:00
|
|
|
models = require('../../models'),
|
|
|
|
errors = require('../../errorHandling'),
|
|
|
|
Importer000;
|
|
|
|
|
|
|
|
|
|
|
|
Importer000 = function () {
|
2013-09-24 14:46:30 +04:00
|
|
|
_.bindAll(this, 'basicImport');
|
2013-09-17 19:55:55 +04:00
|
|
|
|
2013-09-24 14:46:30 +04:00
|
|
|
this.version = '000';
|
2013-09-17 19:55:55 +04:00
|
|
|
|
|
|
|
this.importFrom = {
|
2013-09-24 14:46:30 +04:00
|
|
|
'000': this.basicImport,
|
2013-11-24 18:29:36 +04:00
|
|
|
'001': this.basicImport
|
2013-09-17 19:55:55 +04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
Importer000.prototype.importData = function (data) {
|
|
|
|
return this.canImport(data)
|
|
|
|
.then(function (importerFunc) {
|
|
|
|
return importerFunc(data);
|
|
|
|
}, function (reason) {
|
|
|
|
return when.reject(reason);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
Importer000.prototype.canImport = function (data) {
|
|
|
|
if (data.meta && data.meta.version && this.importFrom[data.meta.version]) {
|
|
|
|
return when.resolve(this.importFrom[data.meta.version]);
|
|
|
|
}
|
|
|
|
|
2013-09-18 07:19:57 +04:00
|
|
|
return when.reject("Unsupported version of data: " + data.meta.version);
|
2013-09-17 19:55:55 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function stripProperties(properties, data) {
|
|
|
|
_.each(data, function (obj) {
|
|
|
|
_.each(properties, function (property) {
|
|
|
|
delete obj[property];
|
|
|
|
});
|
|
|
|
});
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
function preProcessPostTags(tableData) {
|
|
|
|
var postTags,
|
|
|
|
postsWithTags = {};
|
|
|
|
|
|
|
|
|
|
|
|
postTags = tableData.posts_tags;
|
|
|
|
_.each(postTags, function (post_tag) {
|
|
|
|
if (!postsWithTags.hasOwnProperty(post_tag.post_id)) {
|
|
|
|
postsWithTags[post_tag.post_id] = [];
|
|
|
|
}
|
|
|
|
postsWithTags[post_tag.post_id].push(post_tag.tag_id);
|
|
|
|
});
|
|
|
|
|
|
|
|
_.each(postsWithTags, function (tag_ids, post_id) {
|
|
|
|
var post, tags;
|
|
|
|
post = _.find(tableData.posts, function (post) {
|
|
|
|
return post.id === parseInt(post_id, 10);
|
|
|
|
});
|
|
|
|
if (post) {
|
|
|
|
tags = _.filter(tableData.tags, function (tag) {
|
|
|
|
return _.indexOf(tag_ids, tag.id) !== -1;
|
|
|
|
});
|
|
|
|
post.tags = [];
|
|
|
|
_.each(tags, function (tag) {
|
|
|
|
// names are unique.. this should get the right tags added
|
|
|
|
// as long as tags are added first;
|
|
|
|
post.tags.push({name: tag.name});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return tableData;
|
|
|
|
}
|
|
|
|
|
2013-11-21 00:36:02 +04:00
|
|
|
function importTags(ops, tableData, transaction) {
|
2013-09-17 19:55:55 +04:00
|
|
|
tableData = stripProperties(['id'], tableData);
|
|
|
|
_.each(tableData, function (tag) {
|
2013-11-21 00:36:02 +04:00
|
|
|
ops.push(models.Tag.findOne({name: tag.name}, {transacting: transaction}).then(function (_tag) {
|
2013-09-25 14:30:59 +04:00
|
|
|
if (!_tag) {
|
2013-11-21 00:36:02 +04:00
|
|
|
return models.Tag.add(tag, {transacting: transaction});
|
2013-09-25 14:30:59 +04:00
|
|
|
}
|
|
|
|
return when.resolve(_tag);
|
|
|
|
}));
|
2013-09-17 19:55:55 +04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-11-21 00:36:02 +04:00
|
|
|
function importPosts(ops, tableData, transaction) {
|
2013-09-17 19:55:55 +04:00
|
|
|
tableData = stripProperties(['id'], tableData);
|
|
|
|
_.each(tableData, function (post) {
|
2013-12-26 07:48:16 +04:00
|
|
|
ops.push(models.Post.add(post, {transacting: transaction, importing: true}));
|
2013-09-17 19:55:55 +04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-11-21 00:36:02 +04:00
|
|
|
function importUsers(ops, tableData, transaction) {
|
2013-09-17 19:55:55 +04:00
|
|
|
tableData = stripProperties(['id'], tableData);
|
|
|
|
tableData[0].id = 1;
|
2013-11-21 00:36:02 +04:00
|
|
|
ops.push(models.User.edit(tableData[0], {transacting: transaction}));
|
2013-09-17 19:55:55 +04:00
|
|
|
}
|
|
|
|
|
2013-11-21 00:36:02 +04:00
|
|
|
function importSettings(ops, tableData, transaction) {
|
2013-09-17 19:55:55 +04:00
|
|
|
// for settings we need to update individual settings, and insert any missing ones
|
|
|
|
// the one setting we MUST NOT update is the databaseVersion settings
|
|
|
|
var blackList = ['databaseVersion'];
|
|
|
|
tableData = stripProperties(['id'], tableData);
|
|
|
|
tableData = _.filter(tableData, function (data) {
|
|
|
|
return blackList.indexOf(data.key) === -1;
|
|
|
|
});
|
|
|
|
|
2013-11-21 00:36:02 +04:00
|
|
|
ops.push(models.Settings.edit(tableData, transaction));
|
2013-09-17 19:55:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// No data needs modifying, we just import whatever tables are available
|
|
|
|
Importer000.prototype.basicImport = function (data) {
|
|
|
|
var ops = [],
|
|
|
|
tableData = data.data;
|
2013-11-21 00:36:02 +04:00
|
|
|
return models.Base.transaction(function (t) {
|
2013-09-17 19:55:55 +04:00
|
|
|
|
2013-11-21 00:36:02 +04:00
|
|
|
// Do any pre-processing of relationships (we can't depend on ids)
|
|
|
|
if (tableData.posts_tags && tableData.posts && tableData.tags) {
|
|
|
|
tableData = preProcessPostTags(tableData);
|
|
|
|
}
|
2013-09-17 19:55:55 +04:00
|
|
|
|
2013-11-21 00:36:02 +04:00
|
|
|
// Import things in the right order:
|
|
|
|
if (tableData.tags && tableData.tags.length) {
|
|
|
|
importTags(ops, tableData.tags, t);
|
|
|
|
}
|
2013-09-17 19:55:55 +04:00
|
|
|
|
2013-11-21 00:36:02 +04:00
|
|
|
if (tableData.posts && tableData.posts.length) {
|
|
|
|
importPosts(ops, tableData.posts, t);
|
|
|
|
}
|
2013-09-17 19:55:55 +04:00
|
|
|
|
2013-11-21 00:36:02 +04:00
|
|
|
if (tableData.users && tableData.users.length) {
|
|
|
|
importUsers(ops, tableData.users, t);
|
|
|
|
}
|
2013-09-17 19:55:55 +04:00
|
|
|
|
2013-11-21 00:36:02 +04:00
|
|
|
if (tableData.settings && tableData.settings.length) {
|
|
|
|
importSettings(ops, tableData.settings, t);
|
|
|
|
}
|
2013-09-17 19:55:55 +04:00
|
|
|
|
2013-11-21 00:36:02 +04:00
|
|
|
/** do nothing with these tables, the data shouldn't have changed from the fixtures
|
|
|
|
* permissions
|
|
|
|
* roles
|
|
|
|
* permissions_roles
|
|
|
|
* permissions_users
|
|
|
|
* roles_users
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Write changes to DB, if successful commit, otherwise rollback
|
|
|
|
// when.all() does not work as expected, when.settle() does.
|
|
|
|
when.settle(ops).then(function (descriptors) {
|
|
|
|
var rej = false,
|
|
|
|
error = '';
|
|
|
|
descriptors.forEach(function (d) {
|
|
|
|
if (d.state === 'rejected') {
|
|
|
|
error += _.isEmpty(error) ? '' : '</br>';
|
|
|
|
if (!_.isEmpty(d.reason.clientError)) {
|
|
|
|
error += d.reason.clientError;
|
|
|
|
} else if (!_.isEmpty(d.reason.message)) {
|
|
|
|
error += d.reason.message;
|
|
|
|
}
|
|
|
|
rej = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (rej) {
|
|
|
|
t.rollback(error);
|
|
|
|
} else {
|
|
|
|
t.commit();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}).then(function () {
|
|
|
|
//TODO: could return statistics of imported items
|
|
|
|
return when.resolve();
|
|
|
|
}, function (error) {
|
|
|
|
return when.reject("Error importing data: " + error);
|
2013-09-17 19:55:55 +04:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
Importer000: Importer000,
|
|
|
|
importData: function (data) {
|
|
|
|
return new Importer000().importData(data);
|
|
|
|
}
|
|
|
|
};
|