forked from ebinxavier/ionicTalkMe
-
Notifications
You must be signed in to change notification settings - Fork 5
/
server.js
776 lines (585 loc) · 23 KB
/
server.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
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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
var app = require('express')();
var exp = require('express');
app.use(exp.static('node_modules'))
app.use(exp.static('static'))
var server = require('http').Server(app);
var io = require('socket.io')(server);
var mongodb = require('mongodb');
var request = require('request');
var fileUpload = require('express-fileupload');
var fs = require('fs');
var im = require('imagemagick');
ObjectId = require('mongodb').ObjectID;
//We need to work with "MongoClient" interface in order to connect to a mongodb server.
var MongoClient = mongodb.MongoClient;
// Connection URL. This is where your mongodb server is running.
//var url = 'mongodb://<dbuser>:<dbpassword>@ds161497.mlab.com:61497/wpchat';
var url = 'mongodb://dibin:12345@ds161069.mlab.com:61069/talkme';
var groupHandler, contactHandler;
// function to encode file data to base64 encoded string
function base64_encode(file) {
// read binary data
var bitmap = fs.readFileSync(file);
// convert binary data to base64 encoded string
return new Buffer(bitmap).toString('base64');
}
function createAccount(name, email, phone, callback) {
// getlist("email", function (val) {
// console.log("list of mails ", val);
// val.forEach(function (val) {
// if (email == val.)
// })
//
// })
listAccounts(function (val) {
//console.log(val);
var f = 0;
for (i = 0; i < val.length; i++) {
if (email == val[i].email || phone == val[i].phone) {
f = 1;
console.log("repeated phone or email")
console.log("Repetaed", name, email, phone);
break;
}
}
if (f == 0) { // repeated
new Promise(function (resolve, reject) {
// Use connect method to connect to the Server
MongoClient.connect(url, function (err, db) {
if (err) {
console.log('Unable to connect to the mongoDB server CreateAccount. Error:');
reject(err);
} else {
//HURRAY!! We are connected. :)
console.log('create Account: Connection established to', url);
// do some work here with the database.
var collection = db.collection("account");
var otp = 1;//Math.floor(Math.random() * 1000000);
var info = {
name: name,
email: email,
phone: phone,
otp: otp
};
// console.log("Random OTP : ", );
collection.insert(info, function (err, result) {
if (err) {
console.log(err)
reject(err);
} else {
console.log("document inserted", result.ops[0]._id);
// resolve(result.ops[0]._id);
resolve(email);
}
})
var propertiesObject = {
to: email,
msg: 'This is OTP for TalkMe App : ' + otp
};
request({
host: "proxy.cognizant.com",
port: 6050,
url: "https://sms-mail-server.herokuapp.com/",
qs: propertiesObject
}, function (err, response, body) {
if (err) {
console.log("OTP send error : ", err);
return;
}
console.log("Got response: " + response.statusCode);
});
var propertiesObject = {
to: phone,
msg: 'This is OTP for TalkMe App : ' + otp
};
request({
host: "proxy.cognizant.com",
port: 6050,
url: "https://sms-mail-server.herokuapp.com/",
qs: propertiesObject
}, function (err, response, body) {
if (err) {
console.log("OTP send error : ", err);
return;
}
console.log("Got response: " + response.statusCode);
});
//Close connection
db.close();
}
});
}).then(function (val) {
console.log(val);
callback({
id: val,
status: "Account Created"
});
}).catch(function (val) {
console.log("rejected");
// console.log(val);
callback({
id: 0,
status: "Error in Account Creation : db error"
});
})
} else {
callback({
id: 0,
status: "Error in Account Creation : already exist"
});
}
})
// })
}
function verifyOTP(email, otp, cb) {
listAccounts(function (val) {
console.log("testing OTP : ",email,otp);
var f = 0;
for (i = 0; i < val.length; i++) {
if (val[i].email == email && val[i].otp == otp) {
MongoClient.connect(url, function (err, db) {
if (err) {
console.log('Unable to connect to the mongoDB server CreateAccount. Error:');
reject(err);
} else {
//HURRAY!! We are connected. :)
console.log('verify OTP: Connection established to', url);
// do some work here with the database.
var collection = db.collection("account");
// var info = {
// $set: {
// otp: Math.floor(Math.random() * 1000000)
// }
// };
// console.log("Random OTP : ", );
collection.update({
email: email
}, {
$set: {
otp: 0
}
}, function (err, result) {
if (err) {
console.log(err)
// reject(err);
} else {
// console.log("document inserted", result.ops[0]._id);
// resolve(result);
}
})
//Close connection
db.close();
}
});
cb({
id: val[i]._id,
status: "Account Created"
});
f = 1;
break;
}
}
if (f == 0) cb({
id: 0,
status: "Error in verification : OTP not matched"
});
})
}
function getlist(field, cb) {
// console.log(field);
// debugger;
new Promise(function (resolve, reject) {
MongoClient.connect(url, function (err, db) {
if (err) {
console.log('Unable to connect to the mongoDB server. Error:', err);
reject(err);
} else {
//HURRAY!! We are connected. :)
console.log('Connection established to', url);
// do some work here with the database.
var collection = db.collection("account");
//We have a cursor now with our find criteria
var cursor = collection.find({}, JSON.parse("{\"" + field + "\": 1}"))
var ret = [];
//Lets iterate on the result
cursor.toArray().then(function (res) {
resolve(res);
});
db.close();
}
});
}).then(function (val) {
cb(val);
}).catch(function (err) {
cb(err);
console.log(err);
console.log("catch")
})
}
function listAccounts(cb) {
// Use connect method to connect to the Server
MongoClient.connect(url, function (err, db) {
if (err) {
console.log('Unable to connect to the mongoDB server. Error:', err);
cb({
id: 0,
status: "DBerr"
});
} else {
//HURRAY!! We are connected. :)
console.log('Connection established to', url);
// do some work here with the database.
var collection = db.collection("account");
//We have a cursor now with our find criteria
var cursor = collection.find();
var ret = [];
//Lets iterate on the result
cursor.toArray().then(function (res) {
cb(res);
});
db.close();
}
});
}
function login(email, cb) {
listAccounts(function (val) {
for (i = 0; i < val.length; i++) {
if (val[i].email == email) {
// console.log(val[i]._id);
new Promise(function (resolve, reject) {
// Use connect method to connect to the Server
MongoClient.connect(url, function (err, db) {
if (err) {
console.log('Unable to connect to the mongoDB server CreateAccount. Error:');
reject(err);
} else {
//HURRAY!! We are connected. :)
console.log('create Account: Connection established to', url);
// do some work here with the database.
var collection = db.collection("account");
// var info = {
// $set: {
// otp: Math.floor(Math.random() * 1000000)
// }
// };
// console.log("Random OTP : ", );
var otp = Math.floor(Math.random() * 1000000);
collection.update({
email: email
}, {
$set: {
otp: otp
}
}, function (err, result) {
if (err) {
console.log(err)
reject(err);
} else {
// console.log("document inserted", result.ops[0]._id);
resolve(result);
}
})
var propertiesObject = {
to: 'ebinx7@gmail.com',
msg: 'This is OTP for TalkMe App : ' + otp
};
request({
host: "proxy.cognizant.com",
port: 6050,
url: "https://sms-mail-server.herokuapp.com/",
qs: propertiesObject
}, function (err, response, body) {
if (err) {
console.log("OTP send error : ", err);
return;
}
console.log("Get response: " + response.statusCode);
});
//Close connection
db.close();
}
});
}).then(function (val) {
console.log("resolved ");
// callback({
// id: val,
// status: "msg saved"
// });
}).catch(function (val) {
console.log("rejected");
// console.log(val);
// callback({
// id: 0,
// status: "Error in Account Creation : db error"
// });
})
cb(email);
break;
}
}
cb("-1");
// console.log("outside loop");
})
}
function saveMessageToDatabase(fromId, toId, msg) {
new Promise(function (resolve, reject) {
// Use connect method to connect to the Server
MongoClient.connect(url, function (err, db) {
if (err) {
console.log('Unable to connect to the mongoDB server CreateAccount. Error:');
reject(err);
} else {
//HURRAY!! We are connected. :)
console.log('create Account: Connection established to', url);
// do some work here with the database.
var collection = db.collection(fromId);
var info = {
from: fromId,
to: toId,
msg: msg,
delivered: ""
};
// console.log("Random OTP : ", );
collection.insert(info, function (err, result) {
if (err) {
console.log(err)
reject(err);
} else {
console.log("document inserted", result.ops[0]._id);
resolve(result.ops[0]._id);
}
})
//Close connection
db.close();
}
});
}).then(function (val) {
console.log(val);
// callback({
// id: val,
// status: "msg saved"
// });
}).catch(function (val) {
console.log("rejected" + val);
// console.log(val);
// callback({
// id: 0,
// status: "Error in Account Creation : db error"
// });
})
}
app.use(function (req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
next();
});
server.listen(3000);
var groups = [{
name: "group1"
}];
app.use(fileUpload());
app.post('/upload', function (req, res) {
var sampleFile;
if (!req.files) {
res.send('No files were uploaded.');
return;
}
sampleFile = req.files.sampleFile;
sampleFile.mv('filename.jpg', function (err) {
if (err) {
res.status(500).send(err);
} else {
res.send('File uploaded!');
}
});
});
app.get('/', function (req, res) {
res.sendFile(__dirname + '/index.html');
});
app.get('/login', function (req, res) {
login(req.query.email, function (val) {
res.send(val);
io.emit(val, "some ack");
});
});
app.get('/groups', function (req, resp) {
listGroups(function (res) {
resp.send(res);
console.log(res);
});
});
app.get('/createGroup', function (req, res) {
createGroup(req.query.name);
var f = 0;
console.log(groups.length);
for (var i = 0; i < groups.length; i++) {
if (groups[i].name == req.query.name) {
console.log("duplication");
f = 1;
}
}
if (f == 0) {
res.send("success")
} else res.send("failure");
})
app.get('/accounts', function (req, resp) {
listAccounts(function (res) {
resp.send(res);
console.log(res);
});
});
function secondVerifyOTP(email, cb) {
listAccounts(function (val) {
console.log("testing OTP : ",email,"val = ",val);
var f = 0;
var otp = Math.floor(Math.random() * 1000000);
for (i = 0; i < val.length; i++) {
if (val[i].email == email ) {
MongoClient.connect(url, function (err, db) {
if (err) {
console.log('Unable to connect to the mongoDB server CreateAccount. Error:');
reject(err);
} else {
//HURRAY!! We are connected. :)
console.log('verify OTP: Connection established to', url);
// do some work here with the database.
var collection = db.collection("account");
// var info = {
// $set: {
// otp: Math.floor(Math.random() * 1000000)
// }
// };
// console.log("Random OTP : ", );
collection.update({
email: email
}, {
$set: {
otp: otp
}
}, function (err, result) {
if (err) {
console.log(err)
// reject(err);
} else {
// console.log("document inserted", result.ops[0]._id);
// resolve(result);
}
})
//Close connection
db.close();
}
});
cb({
id: val[i]._id,
status: "Account Updated1"
});
f = 1;
break;
}
}
if (f == 0) cb({
id: 0,
status: "Error in verification : OTP not matched"
});
})
}
app.get('/secondVerifyOTP', function (req, res) {
secondVerifyOTP(req.query.email, function (val) {
console.log("respose get");
res.send(val);
console.log(val);
});
});
app.get('/createAccount', function (req, res) {
createAccount(req.query.name, req.query.email, req.query.phone, function (val) {
res.send(val);
console.log(val);
});
})
app.get('/verifyOTP', function (req, res) {
verifyOTP(req.query.email, req.query.otp, function (val) {
res.send(val);
console.log(val);
console.log(query.otp);
});
})
app.get('/getImage', function (req, res) {
debugger;
//base64_encode(__dirname + "/static/images.png");
im.readMetadata(__dirname + "/static/images.png", function (err, metadata) {
// if (err)
// console.log(err);
// else
// console.log('Shot at ' + metadata.exif.dateTimeOriginal);
})
res.send(base64_encode(__dirname + "/static/images.png"));
})
app.get('/sendMessage', function (req, res) {
saveMessageToDatabase(req.query.from, req.query.to, req.query.msg);
res.send("nothing");
});
io.on('connection', function (socket) {
console.log("connected");
io.emit('ack', "some ack");
socket.on('disconnect', function () {
console.log('user disconnected');
});
});
var from,to,msg;
io.on('connection', function (socket) {
socket.on('send', function (data) {
console.log("data : ",data,"data ends");
// data.to.forEach(function(val){
// var obj={type:"msg",content:data};
// io.emit(val, obj);
// })
//connect away
MongoClient.connect(url, function(err, db) {
if (err) throw err;
console.log("Connected to Database");
//simple json record
// data.status=[];
// for(i=0;i<data.to.length;i++)
// {
// data.status.push(1)
// }
//insert record
db.collection('msg').insert(data, function(err, records) {
if (err) throw err;
console.log("Record added as ",records.ops[0]._id);
io.emit('newMsg',data);
});
});
console.log(data);
});
socket.on('receivedAck', function (data) {
console.log("message received : ");
})
//changes to remove
socket.on('receivedAck2', function (data) {
console.log("2nd message received : ");
console.log("2nd acknwoledge received : ");
})
socket.on('receivedAck3', function (data) {
console.log("3rd message received : ");
console.log("3rd acknwoledge received : ");
})
socket.on('receivedAck4', function (data) {
console.log("4th message received : ");
console.log("4th acknwoledge received : ");
})
//changes to remove
socket.on('sendAck', function (data) {
var socketelement=true;
var socketdata=false;
console.log("message send : ");
})
});
app.get('/listNames', function (req, res) {
//var val=[];
console.log()
listAccounts(function (val) {
console.log(val);
res.send(val);
})
})