Vulcan/server/migrations.js

423 lines
15 KiB
JavaScript
Raw Normal View History

2014-07-03 09:30:10 +09:00
// TODO: switch over to Tom's migration package.
// database migrations
// http://stackoverflow.com/questions/10365496/meteor-how-to-perform-database-migrations
Migrations = new Meteor.Collection('migrations');
Meteor.startup(function () {
2014-06-23 14:28:37 +09:00
allMigrations = Object.keys(migrationsList);
_.each(allMigrations, function(migrationName){
runMigration(migrationName);
});
});
Meteor.methods({
removeMigration: function (name) {
if (isAdmin(Meteor.user())) {
console.log('// removing migration: '+name)
Migrations.remove({name: name});
}
}
});
2014-06-23 14:28:37 +09:00
// wrapper function for all migrations
var runMigration = function (migrationName) {
2014-08-22 11:25:05 +09:00
var migration = Migrations.findOne({name: migrationName});
if (migration){
if(typeof migration.finishedAt === 'undefined'){
// if migration exists but hasn't finished, remove it and start fresh
console.log('!!! Found incomplete migration "'+migrationName+'", removing and running again.');
2014-08-22 11:25:05 +09:00
Migrations.remove({name: migrationName});
}else{
// do nothing
// console.log('Migration "'+migrationName+'" already exists, doing nothing.')
return
}
2013-04-06 14:27:08 +09:00
}
2014-08-22 11:25:05 +09:00
console.log("//----------------------------------------------------------------------//");
console.log("//------------// Starting "+migrationName+" Migration //-----------//");
console.log("//----------------------------------------------------------------------//");
Migrations.insert({name: migrationName, startedAt: new Date(), completed: false});
// execute migration function
var itemsAffected = migrationsList[migrationName]() || 0;
Migrations.update({name: migrationName}, {$set: {finishedAt: new Date(), completed: true, itemsAffected: itemsAffected}});
console.log("//----------------------------------------------------------------------//");
console.log("//------------// Ending "+migrationName+" Migration //-----------//");
console.log("//----------------------------------------------------------------------//");
};
2013-04-06 14:27:08 +09:00
2014-06-23 14:28:37 +09:00
var migrationsList = {
updatePostStatus: function () {
2014-06-23 17:08:25 +09:00
var i = 0;
2014-06-23 14:28:37 +09:00
Posts.find({status: {$exists : false}}).forEach(function (post) {
2014-06-23 17:08:25 +09:00
i++;
2014-06-23 14:28:37 +09:00
Posts.update(post._id, {$set: {status: 2}});
console.log("---------------------");
console.log("Post: "+post.title);
console.log("Updating status to approved");
});
2014-06-23 17:08:25 +09:00
return i;
2014-06-23 14:28:37 +09:00
},
updateCategories: function () {
2014-06-23 17:08:25 +09:00
var i = 0;
Categories.find({slug: {$exists : false}}).forEach(function (category) {
i++;
var slug = slugify(category.name);
Categories.update(category._id, {$set: {slug: slug}});
console.log("---------------------");
console.log("Category: "+category.name);
console.log("Updating category with new slug: "+slug);
2014-06-23 17:08:25 +09:00
});
2014-06-23 17:08:25 +09:00
return i;
2014-06-23 14:28:37 +09:00
},
updatePostCategories: function () {
2014-06-23 17:08:25 +09:00
var i = 0;
Posts.find().forEach(function (post) {
2014-06-23 17:08:25 +09:00
i++;
var oldCategories = post.categories;
var newCategories = [];
var category = {};
var updating = false; // by default, assume we're not going to do anything
// iterate over the post.categories array
// if the post has no categories then nothing will happen
_.each(oldCategories, function(value, key, list){
// make sure the categories are strings
if((typeof value === "string") && (category = Categories.findOne({name: value}))){
// if value is a string, then look for the matching category object
// and if it exists push it to the newCategories array
updating = true; // we're updating at least one category for this post
newCategories.push(category);
}else{
// if category A) is already an object, or B) it's a string but a matching category object doesn't exist
// just keep the current value
newCategories.push(value);
}
});
if(updating){
// update categories property on post
Posts.update(post._id, {$set: {categories: newCategories}});
}
// START CONSOLE LOGS
console.log("---------------------");
2014-05-16 09:19:35 +09:00
console.log("Post: "+post.title);
if(updating){
console.log(oldCategories.length+" categories: "+oldCategories);
console.log("Updating categories array to: ");
console.log(newCategories);
}else{
console.log("No updates");
}
// END CONSOLE LOGS
});
2014-06-23 17:08:25 +09:00
return i;
2014-06-23 14:28:37 +09:00
},
updateUserProfiles: function () {
2014-06-23 17:08:25 +09:00
var i = 0;
var allUsers = Meteor.users.find();
console.log('> Found '+allUsers.count()+' users.\n');
allUsers.forEach(function(user){
2014-06-23 17:08:25 +09:00
i++;
console.log('> Updating user '+user._id+' ('+user.username+')');
var properties = {};
// update user slug
if(getUserName(user))
2014-08-30 10:04:56 +09:00
properties.slug = slugify(getUserName(user));
// update user isAdmin flag
if(typeof user.isAdmin === 'undefined')
2014-08-30 10:04:56 +09:00
properties.isAdmin = false;
// update postCount
var postsByUser = Posts.find({userId: user._id});
2014-08-30 10:04:56 +09:00
properties.postCount = postsByUser.count();
// update commentCount
var commentsByUser = Comments.find({userId: user._id});
2014-08-30 10:04:56 +09:00
properties.commentCount = commentsByUser.count();
Meteor.users.update(user._id, {$set:properties});
});
2014-06-23 17:08:25 +09:00
return i;
2014-06-23 14:28:37 +09:00
},
resetUpvotesDownvotes: function () {
2014-06-23 17:08:25 +09:00
var i = 0;
Posts.find().forEach(function (post) {
2014-06-23 17:08:25 +09:00
i++;
var upvotes = 0,
downvotes = 0;
2014-05-16 09:19:35 +09:00
console.log("Post: "+post.title);
if(post.upvoters){
upvotes = post.upvoters.length;
console.log("Found "+upvotes+" upvotes.")
}
if(post.downvoters){
downvotes = post.downvoters.length;
console.log("Found "+downvotes+" downvotes.")
}
Posts.update(post._id, {$set: {upvotes: upvotes, downvotes: downvotes}});
console.log("---------------------");
2014-06-23 17:08:25 +09:00
});
return i;
2014-06-23 14:28:37 +09:00
},
resetCommentsUpvotesDownvotes: function () {
2014-06-23 17:08:25 +09:00
var i = 0;
Comments.find().forEach(function (comment) {
2014-06-23 17:08:25 +09:00
i++;
var upvotes = 0,
downvotes = 0;
console.log("Comment: "+comment._id);
if(comment.upvoters){
upvotes = comment.upvoters.length;
console.log("Found "+upvotes+" upvotes.")
}
if(comment.downvoters){
downvotes = comment.downvoters.length;
console.log("Found "+downvotes+" downvotes.")
}
Comments.update(comment._id, {$set: {upvotes: upvotes, downvotes: downvotes}});
console.log("---------------------");
});
2014-06-23 17:08:25 +09:00
return i;
2014-06-23 14:28:37 +09:00
},
headlineToTitle: function () {
2014-06-23 17:08:25 +09:00
var i = 0;
2014-06-23 17:09:06 +09:00
Posts.find({title: {$exists : false}}).forEach(function (post) {
2014-06-23 17:08:25 +09:00
i++;
2014-05-16 09:19:35 +09:00
console.log("Post: "+post.headline+" "+post.title);
Posts.update(post._id, { $rename: { 'headline': 'title'}}, {multi: true, validate: false});
console.log("---------------------");
});
2014-06-23 17:08:25 +09:00
return i;
2014-06-23 14:28:37 +09:00
},
commentsSubmittedToCreatedAt: function () {
2014-06-23 17:08:25 +09:00
var i = 0;
Comments.find().forEach(function (comment) {
2014-06-23 17:08:25 +09:00
i++;
console.log("Comment: "+comment._id);
Comments.update(comment._id, { $rename: { 'submitted': 'createdAt'}}, {multi: true, validate: false});
console.log("---------------------");
});
2014-06-23 17:08:25 +09:00
return i;
2014-06-23 14:28:37 +09:00
},
commentsPostToPostId: function () {
2014-06-23 17:08:25 +09:00
var i = 0;
2014-06-23 17:09:06 +09:00
Comments.find({postId: {$exists : false}}).forEach(function (comment) {
2014-06-23 17:08:25 +09:00
i++;
console.log("Comment: "+comment._id);
Comments.update(comment._id, { $rename: { 'post': 'postId'}}, {multi: true, validate: false});
console.log("---------------------");
});
2014-06-23 17:08:25 +09:00
return i;
2014-06-23 14:28:37 +09:00
},
createdAtSubmittedToDate: function () {
2014-06-23 17:08:25 +09:00
var i = 0;
Posts.find().forEach(function (post) {
2014-06-23 17:08:25 +09:00
if(typeof post.submitted == "number" || typeof post.createdAt == "number"){
i++;
console.log("Posts: "+post.title);
var createdAt = new Date(post.createdAt);
var submitted = new Date(post.submitted);
console.log(createdAt);
2014-06-23 17:08:25 +09:00
Posts.update(post._id, { $set: { 'createdAt': createdAt, submitted: submitted}}, {multi: true, validate: false});
console.log("---------------------");
}
});
2014-06-23 17:08:25 +09:00
return i;
2014-06-23 14:28:37 +09:00
},
commentsCreatedAtToDate: function () {
2014-06-23 17:08:25 +09:00
var i = 0;
Comments.find().forEach(function (comment) {
2014-06-23 17:08:25 +09:00
if(typeof comment.createdAt == "number"){
i++;
console.log("Comment: "+comment._id);
var createdAt = new Date(comment.createdAt);
console.log(createdAt)
Comments.update(comment._id, { $set: { 'createdAt': createdAt}}, {multi: true, validate: false});
console.log("---------------------");
}
});
2014-06-23 17:08:25 +09:00
return i;
2014-07-03 13:15:23 +09:00
},
submittedToPostedAt: function () {
var i = 0;
Posts.find({postedAt: {$exists : false}}).forEach(function (post) {
i++;
console.log("Post: "+post._id);
Posts.update(post._id, { $rename: { 'submitted': 'postedAt'}}, {multi: true, validate: false});
console.log("---------------------");
});
return i;
},
addPostedAtToComments: function () {
var i = 0;
Comments.find({postedAt: {$exists : false}}).forEach(function (comment) {
i++;
console.log("Comment: "+comment._id);
Comments.update(comment._id, { $set: { 'postedAt': comment.createdAt}}, {multi: true, validate: false});
console.log("---------------------");
});
return i;
2014-07-05 16:21:28 +09:00
},
parentToParentCommentId: function () {
var i = 0;
Comments.find({parentCommentId: {$exists : false}}).forEach(function (comment) {
i++;
console.log("Comment: "+comment._id);
Comments.update(comment._id, { $set: { 'parentCommentId': comment.parent}}, {multi: true, validate: false});
console.log("---------------------");
});
return i;
2014-07-19 15:08:28 +09:00
},
2014-07-22 10:29:37 +09:00
addLastCommentedAt: function () {
2014-07-19 15:08:28 +09:00
var i = 0;
Posts.find({$and: [
{comments: {$gt: 0}},
{lastCommentedAt: {$exists : false}}
]}).forEach(function (post) {
2014-07-19 15:08:28 +09:00
i++;
console.log("Post: "+post._id);
var postComments = Comments.find({postId: post._id}, {sort: {postedAt: -1}}).fetch();
var lastComment = postComments[0];
2014-07-22 10:29:37 +09:00
Posts.update(post._id, { $set: { lastCommentedAt: lastComment.postedAt}}, {multi: false, validate: false});
2014-07-19 15:08:28 +09:00
console.log("---------------------");
});
return i;
},
2014-10-16 00:32:08 +02:00
commentsToCommentCount: function () {
var i = 0;
Posts.find({comments: {$exists : true}, commentCount: {$exists : false}}).forEach(function (post) {
i++;
console.log("Post: "+post._id);
Posts.update(post._id, { $set: { 'commentCount': post.comments}, $unset: { 'comments': ''}}, {multi: true, validate: false});
console.log("---------------------");
});
return i;
},
addCommentersToPosts: function () {
var i = 0;
Comments.find().forEach(function (comment) {
i++;
console.log("Comment: "+comment._id);
console.log("Post: "+comment.postId);
Posts.update(comment.postId, { $addToSet: { 'commenters': comment.userId}}, {multi: true, validate: false});
console.log("---------------------");
});
return i;
},
createVotes: function () { // create empty user.votes object
var i = 0;
Meteor.users.find({votes: {$exists : false}}).forEach(function (user) {
i++;
console.log("User: "+user._id);
Meteor.users.update(user._id, {$set: {votes: {}}}, {multi: true, validate: false});
console.log("---------------------");
});
return i;
},
moveVotesFromProfile: function () {
var i = 0;
Meteor.users.find().forEach(function (user) {
i++;
console.log("User: "+user._id);
Meteor.users.update(user._id, {
$rename: {
'profile.upvotedPosts': 'votes.upvotedPosts',
'profile.downvotedPosts': 'votes.downvotedPosts',
'profile.upvotedComments': 'votes.upvotedComments',
'profile.downvotedComments': 'votes.downvotedComments'
}
}, {multi: true, validate: false});
console.log("---------------------");
});
return i;
},
addHTMLBody: function () {
var i = 0;
Posts.find({body: {$exists : true}}).forEach(function (post) {
i++;
var htmlBody = sanitize(marked(post.body));
console.log("Post: "+post._id);
Posts.update(post._id, { $set: { 'htmlBody': htmlBody}}, {multi: true, validate: false});
console.log("---------------------");
});
return i;
},
addHTMLComment: function () {
var i = 0;
Comments.find({body: {$exists : true}}).forEach(function (comment) {
i++;
var htmlBody = sanitize(marked(comment.body));
console.log("Comment: "+comment._id);
Comments.update(comment._id, { $set: { 'htmlBody': htmlBody}}, {multi: true, validate: false});
console.log("---------------------");
});
return i;
},
2014-10-16 00:32:08 +02:00
clicksToClickCount: function () {
var i = 0;
Posts.find({"clicks": {$exists: true}, "clickCount": {$exists : false}}).forEach(function (post) {
i++;
console.log("Post: " + post._id);
Posts.update(post._id, { $set: { 'clickCount': post.clicks}, $unset: { 'clicks': ''}}, {multi: true, validate: false});
console.log("---------------------");
});
return i;
},
commentsCountToCommentCount: function () {
var i = 0;
Posts.find({"commentCount": {$exists : false}}).forEach(function (post) {
i++;
console.log("Post: " + post._id);
var result = Posts.update({_id: post._id}, { $set: { 'commentCount': post.commentsCount}, $unset: {'commentsCount': ""}}, {multi: true, validate: false});
console.log("---------------------");
});
return i;
},
userDataCommentsCountToCommentCount: function(){
var i = 0;
Meteor.users.find({'commentCount': {$exists: false}}).forEach(function(user){
i++;
var commentCount = Comments.find({userId: user._id}).count();
console.log("User: " + user._id);
Meteor.users.update(user._id, {$unset: {data: ""}, $set: {'commentCount': commentCount}});
console.log("---------------------");
});
return i;
},
clicksToClickCountForRealThisTime: function () { // since both fields might be co-existing, add to clickCount instead of overwriting it
var i = 0;
Posts.find({'clicks': {$exists: true}}).forEach(function (post) {
i++;
console.log("Post: " + post._id);
var result = Posts.update(post._id, { $inc: { 'clickCount': post.clicks}, $unset: {'clicks': ""}}, {multi: true, validate: false});
console.log("---------------------");
});
return i;
2014-11-29 11:38:53 +09:00
},
normalizeCategories: function () {
var i = 0;
Posts.find({'categories': {$exists: true}}).forEach(function (post) {
i++;
console.log("Post: " + post._id);
var justCategoryIds = post.categories.map(function (category){
return category._id;
});
var result = Posts.update(post._id, {$set: {categories: justCategoryIds, oldCategories: post.categories}}, {multi: true, validate: false});
console.log("---------------------");
});
return i;
}
2014-11-29 11:14:44 +09:00
};
// TODO: normalize categories?