-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.js
241 lines (204 loc) · 5.1 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
'use strict';
/**
* Module dependencies.
**/
var _ = require('lodash'),
fs = require('fs'),
async = require('async'),
mongoose = require('mongoose'),
path = require('path'),
spawn = require('child_process').spawn;
function Seeder(options, callback) {
var that = this;
this.result = {
db: "",
cleared: [],
populate: {}
};
// Set default options
var defaultOptions = {
mongodb: {
host: "localhost",
port: 27017,
dbname: "mongoose-seed-plus-dev"
},
dump: {
bin: "/usr/local/bin/mongodump",
enable: false,
args: []
},
models: [],
path: ""
};
defaultOptions.dump.args = [
'--db', options.mongodb.dbname || defaultOptions.mongodb.dbname,
'--out', "",
'--quiet'
];
var args = [];
if (options.dump.args) {
args = _.concat(defaultOptions.dump.args, options.dump.args);
}
this.options = _.merge(defaultOptions, options);
this.options.dump.args = args;
async.waterfall([
function connect(callback) {
return that.connect(callback);
},
function dump(callback) {
if (that.options.dump.enable) {
return that.dump(callback);
}
return callback();
},
function loadModels(callback) {
return that.loadModels(callback);
},
function clearModels(callback) {
return that.clearModels(callback);
},
function readData(callback) {
return that.readData(callback);
},
function populateModels(data, callback) {
return that.populateModels(data, callback);
},
], function (err) {
if (err) {
return callback(err, null);
}
mongoose.connection.close();
return callback(null, that.result);
});
}
Seeder.prototype.connect = function(callback) {
var dbURI = 'mongodb://'+ this.options.mongodb.host +':'+ this.options.mongodb.port +'/'+ this.options.mongodb.dbname;
this.result.db = dbURI;
mongoose.connect(dbURI, { useMongoClient: true });
mongoose.connection.on('connected', function() {
return callback();
});
mongoose.connection.on('error', function(err) {
return callback({ "code": "connect", message: "Could not connect to MongoDB!", error: err });
});
};
Seeder.prototype.dump = function(callback) {
try {
var mongodump = spawn(this.options.dump.bin, this.options.dump.args);
}
catch (err) {
return callback({ code: "dump", message: 'Could not dump ' + this.options.mongodb.dbname, error: err });
}
mongodump.on('exit', function () {
return callback();
});
};
Seeder.prototype.loadModels = function(callback) {
var models = this.options.models;
async.each(models, function(model, callback) {
try {
require(path.resolve(model.path));
}
catch (e) {
return callback({ code: 'load', message: e.message, error: e });
}
return callback();
}, function(err) {
if (err) {
return callback(err);
}
return callback();
});
};
Seeder.prototype.clearModels = function(callback) {
var invalidModels = [];
var models = this.options.models;
var that = this;
// Convert to array if not already
if (!Array.isArray(models)) {
return callback({ code: 'clear', message: "Invalid model type" });
}
// Confirm that all Models have been registered in Mongoose
models.forEach(function(model) {
if(_.indexOf(mongoose.modelNames(), model.name) === -1) {
invalidModels.push(model.name);
}
});
if (invalidModels.length) {
return callback({ code: 'model', message: "Models not registered in Mongoose: " + invalidModels});
}
// Clear each model
async.each(models, function(model, done) {
if (model.clear) {
var Model = mongoose.model(model.name);
Model.remove({}, function(err) {
if (err) {
return done({ code: 'model', message: 'Unable to clean model', error: err });
}
that.result.cleared.push(model.name);
done();
});
}
else {
done();
}
}, function(err) {
if (err) {
return callback(err);
}
return callback();
});
};
Seeder.prototype.readData = function(callback) {
var data = [];
var migrations_path = this.options.path;
var files = fs.readdirSync(migrations_path);
async.each(files, function(file, done) {
if (~file.indexOf('.json')) {
try {
var model = require(migrations_path + '/' + file);
}
catch (e) {
return done({ code: 'read', message: e.message, error: e });
}
data.push(model);
}
done();
}, function(err) {
if (err) {
return callback(err);
}
return callback(null, data);
});
};
Seeder.prototype.populateModels = function(seedData, callback) {
var that = this;
async.each(seedData, function(entry, done) {
var Model = mongoose.model(entry.model);
async.each(entry.documents, function(document, done) {
Model.create(document, function(err) {
if (err) {
return done({ code: 'populate', message: 'Unable to create document .', error: err });
}
if (that.result.populate[entry.model]) {
that.result.populate[entry.model] = that.result.populate[entry.model] + 1;
}
else {
that.result.populate[entry.model] = 1;
}
done();
});
}, function(err) {
if (err) {
return done(err);
}
done();
});
}, function(err) {
if (err) {
return callback(err);
}
return callback();
});
};
module.exports = Seeder;