-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathseed.js
55 lines (48 loc) · 1.54 KB
/
seed.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
const config = require("./config.json");
const co = require("co");
const common = require("./services/common");
const db = require("./services/db");
const portfolioModel = require("./models/portfolio");
const tradeConfig = require("./config/trading").config;
const manifest = {
databases: [
common.db.portfolios,
common.db.trades
]
};
co(function* co() {
// create the databases
common.log("info", ".:. Creating Databases .:.");
for (const db of manifest.databases) {
// run the create method
yield createDatabase(db);
}
common.log("info", ".:. Seeding Trading Portfolio .:.");
try {
yield db.removeDocument(portfolioModel.name, common.db.portfolios);
common.log("info", `* Document '${portfolioModel.name}' deleted!`);
} catch (err) {
throw new Error(err.stack);
common.log("warn", `* Deleting '${portfolioModel.name}' failed!`);
}
try {
const portfolio = portfolioModel.create(portfolioModel.name);
yield db.saveDocument(portfolio, common.db.portfolios);
common.log("info", `* Document '${portfolioModel.name}' created!`);
} catch (err) {
common.log("warn", `* Saving '${portfolioModel.name}' failed!`);
}
common.log("info", ".:. Seeding Complete! .:.");
}).catch((err) => {
throw new Error(err.stack);
});
// FUNCTIONS TO ACTUALLY DO THE STUFF HERE
function* createDatabase(name) {
const confirmation = yield db.createDatabase(name);
if (confirmation.error === true) {
common.log("warn", `! Database '${name}' creation failed!`);
} else {
common.log("info", `* Database '${name}' created!`);
}
return confirmation;
}