freeCodeCamp/seed/loopbackMigration.js

184 lines
4.3 KiB
JavaScript
Raw Normal View History

2015-06-08 00:15:53 +00:00
/* eslint-disable no-process-exit */
require('dotenv').load();
2015-06-12 22:27:51 +00:00
var Rx = require('rx'),
uuid = require('node-uuid'),
assign = require('lodash/object/assign'),
2015-06-08 00:15:53 +00:00
mongodb = require('mongodb'),
secrets = require('../config/secrets');
var MongoClient = mongodb.MongoClient;
2015-06-12 22:27:51 +00:00
var providers = [
'facebook',
'twitter',
'google',
'github',
'linkedin'
];
// create async console.logs
function debug() {
var args = [].slice.call(arguments);
process.nextTick(function() {
console.log.apply(console, args);
});
}
2015-06-08 00:15:53 +00:00
function createConnection(URI) {
return Rx.Observable.create(function(observer) {
MongoClient.connect(URI, function(err, database) {
if (err) {
return observer.onError(err);
}
observer.onNext(database);
});
});
}
2015-06-08 05:06:57 +00:00
function createQuery(db, collection, options, batchSize) {
2015-06-08 00:15:53 +00:00
return Rx.Observable.create(function (observer) {
2015-06-08 05:06:57 +00:00
var cursor = db.collection(collection).find({}, options);
2015-06-08 00:15:53 +00:00
cursor.batchSize(batchSize || 20);
// Cursor.each will yield all doc from a batch in the same tick,
// or schedule getting next batch on nextTick
debug('opening cursor for %s', collection);
2015-06-08 00:15:53 +00:00
cursor.each(function (err, doc) {
if (err) {
return observer.onError(err);
}
if (!doc) {
return observer.onCompleted();
}
observer.onNext(doc);
});
return Rx.Disposable.create(function () {
debug('closing cursor for %s', collection);
2015-06-08 00:15:53 +00:00
cursor.close();
});
});
}
2015-06-08 05:06:57 +00:00
function insertMany(db, collection, users, options) {
2015-06-08 00:15:53 +00:00
return Rx.Observable.create(function(observer) {
2015-06-08 05:06:57 +00:00
db.collection(collection).insertMany(users, options, function(err) {
2015-06-08 00:15:53 +00:00
if (err) {
return observer.onError(err);
}
2015-06-12 22:27:51 +00:00
observer.onNext();
2015-06-08 00:15:53 +00:00
observer.onCompleted();
});
});
}
var count = 0;
2015-06-08 05:06:57 +00:00
// will supply our db object
var dbObservable = createConnection(secrets.db).shareReplay();
2015-06-12 22:27:51 +00:00
var users = dbObservable
2015-06-08 00:15:53 +00:00
.flatMap(function(db) {
2015-06-08 05:06:57 +00:00
// returns user document, n users per loop where n is the batchsize.
2015-06-08 00:15:53 +00:00
return createQuery(db, 'users', {});
})
.map(function(user) {
2015-06-08 05:06:57 +00:00
// flatten user
2015-06-08 00:15:53 +00:00
assign(user, user.portfolio, user.profile);
return user;
})
2015-06-12 22:27:51 +00:00
.map(function(user) {
if (user.username) {
return user;
}
user.username = 'fcc' + uuid.v4().slice(0, 8);
return user;
})
.shareReplay();
// batch them into arrays of twenty documents
var userSavesCount = users
2015-06-08 05:06:57 +00:00
.bufferWithCount(20)
// get bd object ready for insert
.withLatestFrom(dbObservable, function(users, db) {
return {
users: users,
db: db
};
2015-06-08 00:15:53 +00:00
})
2015-06-08 05:06:57 +00:00
.flatMap(function(dats) {
// bulk insert into new collection for loopback
return insertMany(dats.db, 'user', dats.users, { w: 1 });
})
// count how many times insert completes
2015-06-12 22:27:51 +00:00
.count();
// create User Identities
var userIdentityCount = users
.flatMap(function(user) {
var ids = providers
.map(function(provider) {
return {
provider: provider,
externalId: user[provider],
userId: user.id
2015-06-12 22:27:51 +00:00
};
})
.filter(function(ident) {
return !!ident.externalId;
});
return Rx.Observable.from(ids);
})
.bufferWithCount(20)
.withLatestFrom(dbObservable, function(identities, db) {
return {
identities: identities,
db: db
};
})
.flatMap(function(dats) {
// bulk insert into new collection for loopback
return insertMany(dats.db, 'userIdentity', dats.identities, { w: 1 });
})
// count how many times insert completes
.count();
var storyCount = dbObservable
.flatMap(function(db) {
return createQuery(db, 'stories', {});
})
.bufferWithCount(20)
.withLatestFrom(dbObservable, function(stories, db) {
return {
stories: stories,
db: db
};
})
.flatMap(function(dats) {
return insertMany(dats.db, 'stories', dats.stories, { w: 1 });
})
.count();
Rx.Observable.combineLatest(
2015-06-12 22:27:51 +00:00
userIdentityCount,
userSavesCount,
storyCount,
function(userIdentCount, userCount, storyCount) {
return {
userIdentCount: userIdentCount * 20,
userCount: userCount * 20,
storyCount: storyCount * 20
};
}
2015-06-12 22:27:51 +00:00
)
2015-06-08 00:15:53 +00:00
.subscribe(
function(countObj) {
count = countObj;
2015-06-08 00:15:53 +00:00
},
function(err) {
console.error('an error occured', err, err.stack);
2015-06-08 00:15:53 +00:00
},
function() {
console.log('finished with ', count);
2015-06-08 00:15:53 +00:00
}
);