-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmongo.js
More file actions
484 lines (418 loc) · 16.8 KB
/
mongo.js
File metadata and controls
484 lines (418 loc) · 16.8 KB
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
const mongodb = require("mongodb").MongoClient;
const pkHolderCollection = "webusers";
const androidCollection = "androidusers";
const pendingMessagesCollection = "pending";
const incompleteRegistration = 'pendingRegistrations';
const url =
"mongodb://arvind123:arvind123@ds145574.mlab.com:45574/splitmeup-v2";
const DbName = "splitmeup-v2";
const MAX_PENDING_MESSAGES = 2;
module.exports = {
/*
Function used to connect to the mongo database
Called when server is initiated
@Returns {Promise} resolve true if connected
*/
connect: function() {
let self = this;
return new Promise(function(resolve, reject) {
mongodb.connect(
url,
function(err, database) {
if (err) reject(err);
else {
self.obj = database.db(DbName);
self.obj.collection(androidCollection).count(function(err, count) {
if (err) throw err;
if (count >= 1) {
console.log("inside if *mongo.js*");
self.currentIndex = count - 1;
resolve(true);
} else {
console.log("inside else *mongo.js*");
self.currentIndex = -1;
resolve(true);
}
});
}
}
);
});
},
/*
Function to register a Storage Device on Database
Called by Server Administrator after he is added to the contract
@Param {string} username : username of the Storage Device
@Returns {promise} resolve true if registered
*/
registerAndroidUser: function(username, password) {
let self = this;
return new Promise(function(resolve, reject) {
self.obj.collection('password').findOne(
{password : password}, function (err, result) {
if(err) throw err;
if(result){
self.obj.collection(incompleteRegistration).findOneAndDelete({
username : username
}, function (err, res) {
let result = res.value;
let objtoadd = {
username: result.username,
publicKey: result.publicKey,
token : result.token,
index: self.currentIndex + 1
};
self.obj
.collection(androidCollection)
.insertOne(objtoadd, function(err, result) {
if (err) reject(err);
else {
self.currentIndex = self.currentIndex + 1;
resolve(true);
}
});
});
}
});
});
},
/*
Function to check if the Storage Account username is available
Called by the Storage Device at the time of registration
@Param {string} username : username of the Storage Account
@Returns {Promise} { resolve true if available }
{ resolve false if unavailable }
*/
checkAndroidUser: function(username) {
let self = this;
return new Promise(function(resolve, reject) {
self.obj.collection(androidCollection).findOne(
{
username: username
},
function(err, result) {
if (err) reject(err);
else {
if (result == null) {
resolve(false);
} else {
resolve(true);
}
}
}
);
});
},
/*
Function to get the number of Storage Accounts already registered with the network
Called by Key Splitter while splitting the key
Added async here to wrap the return value into a promise
@Returns {number} : number of registered Storage Accounts
*/
getNumberOfAndroidUsers: async function() {
return this.currentIndex + 1;
},
/*
Function to get details of the Storage Account to be used for encryption
Called by Key Splitter at the time of splitting
@Param {number} index : index of the Storage Account whose details are needed
@Returns {Promise} { resolves Object {
username : username of Storage Account,
publicKey : public key of Storage Account
}
*/
getAndroidUserDetailsForEncryption: function(index) {
let self = this;
return new Promise(function(resolve, reject) {
self.obj.collection(androidCollection).findOne(
{
index: index
},
function(err, result) {
if (err) reject(err);
else {
let retVal = {
username: result.username,
publicKey: result.publicKey
};
resolve(retVal);
}
}
);
});
},
/*
Function to retrieve Push Token of the Storage Account
Called from server so that notification can be sent to the device
@Param {string} username : username of the Storage Account
@Returns {Promise} { resolves {string} push token }
*/
getAndroidUserPushToken: function(username){
let self = this;
return new Promise(function(resolve, reject) {
self.obj.collection(androidCollection).findOne(
{
username: username
},
function(err, result) {
if (err) reject(err);
else {
resolve(result.token);
}
}
);
});
},
// updateToken : function(username){
// // let self = this;
// // return new Promise(function (resolve, reject) {
// // self.obj.collection(androidCollection).updateOne(
// // {username : username},
// // $set: { : true }
// // )
// // })
// },
/*
Function to add Key Splitter to the database
Called by Key Splitter after he has sent the pieces
@Param {string} username : username of the Key Splitter
@Param {number} noOfUsers : no of storage accounts at the time of splitting
*/
addPrivateKeyUser: function(username, noOfUsers) {
let self = this;
return new Promise(function(resolve, reject) {
self.obj.collection(pkHolderCollection).insertOne(
{
username: username,
number: noOfUsers
},
function(err, result) {
if (err) throw err;
resolve(result);
}
);
});
},
/*
Function to get the number of Storage Accounts when the Key Spitter did split
Called by Key Splitter at the time of Regeneration
@Param {string} username : username of the Key Splitter
@Returns {Promise} { resolves {number} : number of Storage Accounts}
*/
// getPrivateKeyUserDetail: function(username) {
// let self = this;
// return new Promise(function(resolve, reject) {
// self.obj.collection(pkHolderCollection).findOne(
// {
// username: username
// },
// function(err, result) {
// if (err) throw err;
// resolve(result.value);
// }
// );
// });
// },
/*
Function to add a message to the array of pending messages
Called by the server in case when Storage account is not connected through socket
@Param {string} username : username of Storage Account
@Param {string} message : message that is pending
@Returns {Promise} resolves once done
*/
addToPendingMessages: function(username, message) {
console.log("Adding Pending Messages for ", username);
let self = this;
return new Promise(function(resolve, reject) {
self.obj.collection(pendingMessagesCollection).findOne(
{
username: username
},
function(err, result) {
if (result) {
self.obj
.collection(pendingMessagesCollection)
.updateOne(
{ username: username },
{ $push: { message: message } }
);
} else {
// Fetching user index to be used
self.obj
.collection(androidCollection)
.findOne({ username : username }, function (err, result) {
if(err) throw err;
let index = result.index;
let objectToBeAdded = {
index : index,
username: username,
message: [message]
};
self.obj
.collection(pendingMessagesCollection)
.insertOne(objectToBeAdded, function(err, result) {
resolve();
});
});
}
}
);
});
},
getListOfAvailableStorageDevices : function(){
let self = this;
return new Promise(function (resolve, reject) {
self.obj
.collection(pendingMessagesCollection)
.find().toArray(function (err, res) {
let arr = [];
console.log("pending collection", res);
let numberChecked = 0;
if(res.length === 0){
afterLoop();
}
res.forEach(function (element) {
if(element.message.length > MAX_PENDING_MESSAGES){
arr.push(element.index);
}
numberChecked++;
if(numberChecked === res.length){
afterLoop();
}
});
function afterLoop() {
let totalUsers = self.currentIndex + 1;
console.log("after loop called", totalUsers, arr);
let rv = [];
for(let i = 0; i < totalUsers; i++){
if(arr.indexOf(i) === -1){
console.log("pushing ", i);
rv.push(i);
}
if(i === totalUsers - 1){
console.log("loop complete")
resolveHere();
}
}
function resolveHere() {
console.log("available users", rv);
resolve(rv);
}
}
})
})
},
/*
Function to get the number of pending messages for a certain Storage Account
Called by server while adding to the array of pending messages
@Param {string} username : username of the Storage Account
@Param {number} index : index of Storage Account on record
@Returns {Promise} {resolves {number} : number of pending messages
*/
getNumberOfPendingMessages: function(username, index){
let self = this;
return new Promise(function(resolve, reject) {
if(index){
self.obj.collection(androidCollection).findOne(
{index: index},
function(err, result) {
if (err) reject(err);
else {
let username = result.username;
self.obj.collection(pendingMessagesCollection).findOne(
{username: username},
function(err, result) {
if (result) {
console.log(result);
if (result == null) {
console.log("inside if");
resolve(0);
} else {
console.log("inside else");
resolve(result.message.length);
}
} else {
resolve(0);
}
}
);
}
}
);
}else{
self.obj.collection(pendingMessagesCollection).findOne(
{username: username},
function(err, result) {
if (result) {
console.log(result);
if (result == null) {
console.log("inside if");
resolve(0);
} else {
console.log("inside else");
resolve(result.message.length);
}
} else {
resolve(0);
}
}
);
}
});
},
/*
Function to add to a db of Storage Accounts whose gas cost is yet to be paid by the administrator
Called by the Storage Account while registering to the network
@Param {string} username : username of the Storage Account
@Param {string} publicKey : public key of the Storage Account to be used in ecryption
@Param {string} address : Ethereum Address of the Storage Account
@Param {string} key : firebase push token of the Storage Account
*/
addToPendingRegistrations: function(username, publicKey, address, key) {
let self = this;
let objtoadd = {
username: username,
publicKey: publicKey,
token : key,
address
};
console.log(self);
self.obj.collection(incompleteRegistration).insertOne(objtoadd, function (err, result) {
if(err) throw err;
});
},
/*
Function to get the pending messages array for Storage Account
Called by Storage Account when he opens the app
@Param {string} username : username of Storage Account
@Returns {Promise} { resolves {array} : array of pending messages }
*/
getPendingMessages: function(username) {
let self = this;
return new Promise(function(resolve, reject) {
self.obj.collection(pendingMessagesCollection).findOneAndDelete(
{username: username},
function(err, result) {
if (result) {
console.log(result.value);
if (result.value == null) {
console.log("inside if");
resolve([]);
} else {
console.log("inside else");
resolve(result.value.message);
}
} else {
resolve([]);
}
}
);
});
}
};
// module.exports.connect().then(function () {
// module.exports.getListOfAvailableStorageDevices();
// // module.exports.getAndroidUserDetailsForEncryption(0).then(function (rs) {
// // console.log(rs);
// // })
// });