-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.js
156 lines (109 loc) · 2.39 KB
/
db.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
'use strict';
// Copied from my other project, LynxChan
var mongo = require('mongodb');
var indexesSet;
var cachedDb;
var cachedClient;
var maxIndexesSet = 2;
var cachedUsers;
var cachedLedger;
var loading;
function indexSet(callback) {
indexesSet++;
if (indexesSet === maxIndexesSet) {
loading = false;
callback();
}
}
function initUsers(callback) {
cachedUsers.createIndexes([ {
key : {
identifier : 1
},
unique : true
}, {
key : {
email : 1
},
unique : true
} ], function setIndex(error, index) {
if (error) {
if (loading) {
loading = false;
callback(error);
}
} else {
indexSet(callback);
}
});
}
function initLedger(callback) {
cachedLedger.createIndexes([ {
key : {
target : 1
},
} ], function setIndex(error, index) {
if (error) {
if (loading) {
loading = false;
callback(error);
}
} else {
indexSet(callback);
}
});
}
exports.client = function() {
return cachedClient;
};
exports.users = function() {
return cachedUsers;
};
exports.ledger = function() {
return cachedLedger;
};
function initCollections(callback) {
cachedUsers = cachedDb.collection('users');
cachedLedger = cachedDb.collection('ledger');
initUsers(callback);
initLedger(callback);
}
function connect(connectString, dbToUse, callback, attempts) {
attempts = attempts || 0;
mongo.MongoClient.connect(connectString, {
useNewUrlParser : true,
useUnifiedTopology : true
}, function connectedDb(error, client) {
if (error) {
if (attempts > 9) {
callback(error);
} else {
console.log(error);
console.log('Retrying in 10 seconds');
setTimeout(function() {
connect(connectString, dbToUse, callback, ++attempts);
}, 10000);
}
} else {
cachedClient = client;
cachedDb = client.db(dbToUse);
initCollections(callback);
}
});
}
exports.init = function(callback) {
if (loading) {
callback('Already booting db');
}
loading = true;
indexesSet = 0;
var dbSettings = {
address : 'mongodb',
port : 27017,
db : 'wallets'
};
var connectString = 'mongodb://';
connectString += dbSettings.address + ':';
connectString += dbSettings.port + '/' + dbSettings.db;
connect(connectString, dbSettings.db, callback);
};