-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnode_simple.js
1456 lines (1269 loc) · 47.9 KB
/
node_simple.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
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* A simple node driver to interact with mongo database
*/
/**********************
**** COLLECTIONS: ****
* ********************
*
* * * ADMINS - Admins login info
* {
* fname: first name,
* lname: last name,
* username: admin username,
* password: hashed password
* }
*
* * * COURSES - Course info
* {
* course_code: course code,
* title: course title
* }
*
*
* * * EXAMS - Exams info
* {
* course_code: course code,
* year: course year,
* term: course term,
* type: midterm or final,
* instructors: array of instructor names,
* page_count: the midterm/exam's number of pages,
* questions_count: the midterm/exam's number of questions,
* questions_list: array containing question objects, {q_id: question #, question: question},
* upload_date: date,
* uploaded_by: username
* }
*
*
* * * LOGINS - Users login info
* {
* email: user email,
* user_name: user username,
* password: users hashed password
* }
*
*
* * * MAIL - messaging system base
* {
* sender: the message sender's username,
* receiver: the receiver's username,
* message: message,
* date: date message was sent
* }
*
*
* * * SOLUTIONS - exam solutions
* {
* exam_id: the id of the exam this solution applies to,
* q_id: question id,
* text: users solution,
* votes: votes,
* comments: list of comment objects, {text: comment, date: comment date, by: username}
* }
*
* * * USERS
* {
* email: user email,
* username: username,
* f_name: first name,
* l_name: last name,
* university: user's university,
* department: user's department,
* answered: number of solutions user posted,
* messages: user's inbox count,
* comments: user comment count,
* phone_num: user phone number,
* followers: the list of exams that the user follows
* }
*
*
* * * VERIFICATIONS - link facebook profile to the user
* {
* username: user username,
* facebookID: facebook profile id,
* facebookToken: facebook token,
* }
*
*
*/
var exports = module.exports = {};
const debug_mode = false;
Object.assign = require('object-assign');
var mongodb = require('mongodb');
var mongoFactory = require('mongo-factory');
var ObjectId = require('mongodb').ObjectID;
var assert = require('assert');
var _ = require('underscore');
var db;
// Standard URI format: mongodb://[dbuser:dbpassword@]host:port/dbname
var uri = exports.uri = 'mongodb://general:[email protected]:57862/solutions_repo';
// Keep this for testing on local machine, do not remove. - Humair
//var uri = 'mongodb://localhost:27017/db';
/*******************************FUNCTIONS************************************************/
/************************* SETUP **********************************/
exports.setupDB = function (callback) {
mongoFactory.getConnection(uri).then(function (database) {
db = database;
callback(true, "Database connected"); // signal start of app
}).catch(function (err) {
callback(false, "Error: connecting to the database");
});
};
/************************* USERS **********************************/
/**
* This function will remove the user given user_name from the users table
* and the logins table. So far.
* IF there is a sessions table, we need to remove it from there as well.
* We can leave it in the mail table (involves another user).
* We can leave it in the solutions table (solution may still be valid).
*
* @param {string} username: the unique user_name for the user
* @param {function} callback: 2 args: (boolean, <string>),
* where <boolean> : err ? false : true
* where <string> : error ? error_mssg : success_mssg
*/
exports.remove_user = function (username, callback) {
var users = db.collection('users');
var logins = db.collection('logins');
// look for the specific user
users.removeOne( { user_name: username }, function (err, docs) {
if (err) throw callback(false, "Error: problem while removing the user from users");
else if (docs.deletedCount == 1) {
// now remove it from logins ....
logins.removeOne( { user_name: username }, function (err, result) {
if (err) throw callback(false, "Error: problem whlie remvoving course from courses");
else if (result.deletedCount == 1) {
callback(true, "User was removed successfully from both tables");
}
});
}
else if (docs.deletedCount == 0) {
callback(false, "No such user was found");
//console.log("No such exam was found");
}
});
};
/**
* This function will search through the users table to look for 'token'.
* It will search the user_name, f_name, l_name fields of the table.
* Do not worry about case sensitivity. Malicious string is a possibility though.
* Returns a [] of user object(s)
*
* @params {string} token: search term (hopefully user info)
* @params {function} callback: with 2 args: (boolean, <string>),
* where <boolean> : err ? false : true
* where <string> can be error message
* OR on success <[Objs]> RESULT
* */
exports.search_users = function ( token, callback ) {
var users = db.collection('users');
users.createIndex( // make the following fields searchable
{
"user_name":"text",
"f_name":"text",
"l_name":"text"
});
users.find(
{ $text: { $search: token } },
{ score: { $meta: "textScore" } }
).sort( { score: { $meta:"textScore" } } ).toArray(function (err, docs) {
if (err) callback(false, "Error: some error while searching");
else {
// console.log(docs);
callback(true, docs);
}
});
};
/**
* This function will return a list of followers of user i.e. a list of
* exam_ids that the user has chosen to follow
*
* @param {string} user_name: the unique user name for the user
* @param {function} callback: with 2 args: (boolean, <string>),
* where boolean : err ? false : true
* where <string> can be error message
* OR on success <[<strings>]> RESULT
**/
exports.retrieveFollows = function (user_name, callback) {
var users = db.collection('users');
// insert data into table
users.find( {user_name: user_name} ).toArray(function (err, docs) {
// if (err) throw err;
if (err) callback(false, "Error: followers could not be retrieved for some reason");
else {
callback(true, docs[0].followers);
}
});
};
/**
* This function will retrieve ALL the comments a user has ever made.
* It returns an array containing objects of the form: {exam_id, comment, date, ...
* course_code, year, term}.
* Note: a comment should only exist IF a solution exists.
*
* @param {string} username: the unique user name for the user
* @param {function} callback: with 2 args: (boolean, <string>),
* where boolean : err ? false : true
* where <string> can be error message
* OR on success <[Objs]> RESULT
**/
exports.retrieve_userComments_history = function (username, callback) {
var solutions = db.collection('solutions');
var exams = db.collection('exams');
var mylist = [];
solutions.aggregate([
{ $match : {
"comments.by": username
}},
{ $unwind : "$comments" },
{ $match : {
"comments.by": username
}},
{$project: {
comment: "$comments.text",
date: "$comments.date",
exam_id: "$exam_id",
_id: 0
}}
]).toArray(function (err, res) {
if(!res.length){ // Ensure a callback is executed if res is empty
callback(true, res);
}else{
var finised = _.after(res.length, doCall); // execute "doCall" only after res.length # of attempts
res.forEach(function (comment) {
exams.find( { _id: ObjectId(comment.exam_id) } ).toArray(function (err, docs) { // get the exam info
comment.course_code = docs[0].course_code;
comment.year = docs[0].year;
comment.term = docs[0].term;
mylist.push(comment); // save it to array
finised();
});
});
}
});
function doCall() {
callback(true, mylist);
}
};
/** We CAN use this. IF we do, we should remove the comments_count field from a user
* IF we dont wanna go that route, need to update these fields whenever they are altered
* by the user manually.
*
* @param {string} username: the unique user name for the user
* @param {function} callback: with 2 args: (boolean, <string>),
* where boolean : err ? false : true
* where <string> can be error message
* OR on success <int> RESULT
**/
exports.retrieve_userComments_count = function (username, callback) {
exports.retrieve_userComments_history(username, function (bool, results) {
if (!bool) callback(false, "Error: error occurred");
else {
var length = results.length;
callback(true, length);
}
});
};
/**
* This function will retrieve ALL the solutions a user has ever provided.
* It returns an array containing objects of the solution form.
*
* @param {string} username: the unique user name for the user
* @param {function} callback: with 2 args: (boolean, <string>),
* where boolean : err ? false : true
* where <string> can be error message
* OR on success <[Objs]> RESULT
**/
exports.retrieve_userSolutions_history = function (username, callback) {
var solutions = db.collection('solutions');
solutions.find( { author: username } ).toArray(function (err, result) {
if (err) callback(false, "Error: problem while looking for stuff");
else {
callback(true, result);
}
});
};
/** We CAN use this. IF we do, we should remove the solutions_count field from a user
* IF we dont wanna go that route, need to update these fields whenever they are altered
* by the user manually.
*
* @param {string} username: the unique user name for the user
* @param {function} callback: with 2 args: (boolean, <string>),
* where boolean is false if err OR true if no error
* where <string> can be error message
* OR on success <int> RESULT
**/
exports.retrieve_userSolutions_count = function (username, callback) {
exports.retrieve_userSolutions_history(username, function (bool, results) {
if (!bool) callback(false, "Error: error occured");
else {
var length = results.length;
callback(true, length);
}
});
};
/**
* This function creates and adds a user to users table.
* IFF both the email and the user_name are not in the database already.
* If either of them exist, the user is NOT added.
*
* @param {string[]} fields: [email, user_name, f_name, l_name, uni, department, password, phone_num, facebook_id]
* @param {function} callbackUser: of the form (<boolean1>, <boolean2>, <string>)
* where, <boolean1> -
* <boolean2> -
* <string> - error ? error_mssg : success_mssg
**/
exports.add_user = function (fields, callbackUser) {
// create a user object
var user_data = {
email: fields[0],
user_name: fields[1],
f_name: fields[2],
l_name: fields[3],
university: fields[4],
department: fields[5],
answered: 0,
messages: 0,
comments: 0,
phone_num: fields[7],
followers: [],
fb_id: fields[8]
};
var login_data = {
email: fields[0],
user_name: fields[1],
password: fields[6]
};
// find out if this user already exists by checking their email
exports.find_user( fields[0], function (result) {
if (result == false) {
// find out if the user_name is taken
exports.find_user_name( fields[1], function (docs) {
if (docs == false) { // if not ...
// continue
console.log("user name is valid");
// when both are valid add the user to the users and logins table
var users = db.collection('users');
var logins = db.collection('logins');
// Add users, and login through callbacks
users.insertOne( user_data, function (err) {
if (err) {
callbackUser(false, true, "Error : User has not been added.");
}
else {// user insert successfull
logins.insertOne(login_data, function (err) {
if (err) {
callbackUser(false, true, "Error : User has not been added.");
}
else {// login insert successfull
callbackUser(true, false, "User has been added.");
}
});
}
});
}
else {
callbackUser(false, false, "Username is taken.");
}
});
}
else {
callbackUser(false, false, "User with this email already exists.");
}
});
};
/**
* This function returns whether the user with the given username has already been signed in before.
* This is important because we need to link a unique facebook account with a username. If the user has signed in
* before, return the verification object, consisting of facebook profile id.
*
* @param {string} username
* @param {function} callbackUser: of the form (<boolean>, verifications object (See COLLECTION)) -
* callbackUser(error, object)
*
**/
exports.userVerifiedBefore = function(username, callback) {
var verif = db.collection('verifications');
verif.find( { username : username } ).toArray(function(err, result) {
if (err) {
callback(true, null);
} else {
callback(false, result);
}
});
};
/**
* THis function adds the user's facebook account verification to the database and links it to the user's local in site
* account.
*
* @param {object} - verifications object
* @param {function} callbackUser: of the form (<boolean>) - callback(error)
*
**/
exports.addVerification = function(verification, callBack) {
var verif = db.collection('verifications');
verif.insertOne(verification, function (err) {
if (err) {
callBack(true);
} else {
callBack(false);
}
})
};
/**
* This (helper) function returns true IFF user_name already exists in the database
*
* @param {string} user_name: the user name
* @param {function} callback: of the arg (bool)
* where <bool> : found ? true : false
* */
exports.find_user_name = function (user_name, callback) {
var logins = db.collection('logins');
var admins = db.collection('admins');
logins.find( { user_name: user_name } ).toArray(function (err, result) {
if (err) throw err;
else if (result.length == 0) { // nothing was found in users
// check if user_name is taken by admin
admins.find({username : user_name}).toArray(function(err, data) {
if (err) throw err;
else if (data.length == 0) {
callback(false);
}
else {
callback(true);
}
});
}
else {
callback(true);
}
});
};
/**
* This function retrieves the user object given their user_name
*
* @param {string} username: the user name
* @param {function} callback: with args (<bool1>,<bool2>,<string1>,<string2>)
* where, <bool1> : success ? true : false
* where, <bool2> : error ? true : false
* where, <string1> : success ? {Obj} : null
* where, <string2> : success ? success_mssg : err_mssg
* */
exports.retrieveUser = function (username, callback) {
var users = db.collection('users');
users.find({user_name: username}).toArray(function (err, result) {
if (err) {
// callback(success, error, user, message)
callback(false, true, null, "Error : Could not retrieve user.");
}
else if (result.length) {
callback(true, false, result[0], "User retrieved");
}
else {
callback(false, false, null, "Username is undefined.");
}
});
};
/**
* This function retrieves the user object given their Facebook username.
*
* @param {string} id: the user's facebook id
* @param {function} callback: with args (<bool1>,<bool2>,<string1>,<string2>)
* where, <bool1> : success ? true : false
* where, <bool2> : error ? true : false
* where, <string1> : success ? {Obj} : null
* where, <string2> : success ? success_mssg : err_mssg
* */
exports.retrieveUserById = function(id, callback){
var users = db.collection('users');
users.find({fb_id: id}).toArray(function(err, result) {
if (err) {
// callback(success, error, user, message)
callback(false, true, null, "Error : Could not retrieve user.");
} else if (result.length) {
callback(true, false, result[0], "User retrieved");
} else {
callback(false, false, null, "ID is undefined.");
}
});
}
/**
* Returns the hashed password given the username. Assume username exists.
* Used for both admins and users.
*
* @param {string} username: the user name
* @param {function} callback: with args (<bool>,<string>,<string>)
* where, <bool> : success ? true : false
* where, <string> : success ? "pwd" : null
* where, <string> : success ? success_mssg : err_mssg
* */
exports.retrievePassword = function (username, callback) {
var collection = db.collection('logins');
collection.find({user_name: username}).toArray(function(err, result) {
if (err) {
// callback(success, password, message)
callback(false, null, "Error : Could not retrieve password.");
}
else {
var pwd = result[0].password; //result is an array
callback(true, pwd, "Password retrieved");
}
});
};
/**
* This (helper) function returns true IFF email already exists in the database
*
* @param {string} email: unique email of the user
* @param {function} callback: <bool> : found ? true : false
* */
exports.find_user = function (email, callback) {
var logins = db.collection('logins');
logins.find( { email: email } ).toArray(function (err, result) {
if (err) throw err;
else if (result.length == 0) { // nothing was found so this user is new
callback(false);
}
else {
callback(true);
}
});
};
/**
* This function retrieves the user object from the users collection given the object id.
*
* @param {string} id
* @param {function} callbackUser: of the form (<boolean>, user object (See COLLECTION)) -
* callbackUser(error, object)
*
**/
exports.findUserByID = function (id, callback) {
var logins = db.collection('logins');
logins.find( { _id : id }, function (err, result) {
callback(err, result);
});
};
exports.updatePassword = function (email, password, callback) {
var logins = db.collection('logins');
logins.updateOne({email: email}, {$set: {password: password}}, function(err, docs) {
if (err) callback(true, "Error: Failed to update password.");
else {
callback(false, "Success");
}
});
}
/*exports.findUserByEmail = function (email, callback) {
var users = db.collection('users');
users.find({email: email}).toArray(function(err, result) {
if (err) {
// callback(success, error, user, message)
callback(false, true, null, "Error : Could not retrieve user.");
} else if (result.length) {
callback(true, false, result[0], "User retrieved");
} else {
callback(false, false, null, "ID is undefined.");
}
});
}*/
/************************* COURSES / EXAMS **********************************/
/**
* Find all UNIQUE course codes from EXAMS collection
*
* @param {function} callback: 2 args: (<string>),
* where <string> : couseCodes array
*/
exports.find_all_course_codes_from_exams = function (callback) {
var exams = db.collection('exams');
exams.distinct("course_code", function (err, result) {
if (err) callback(false, "Failed to get unique courses");
else {
callback(true, result);
}
});
};
/**
* Remvove a course from ONLY the courses table IN CASE of accidental
* addition.
*
* @param {string} course_code: the course code
* @param {function} callback: 2 args: (boolean, <string>),
* where <boolean> : err ? false : true
* where <string> : error ? error_mssg : success_mssg
*/
exports.remove_course = function (course_code, callback) {
var courses = db.collection('courses');
courses.createIndex( // make the following fields searchable
{
"course_code":"text"
});
// look for the specific course
courses.removeOne( { $text: { $search: course_code } }, function (err, docs) {
// if (err) throw err;
if (err) callback(false, "Error: Failed to remove the course.");
else if (docs.deletedCount == 1) {
callback(true, "Course was removed successfully from JUST courses");
}
else if (docs.deletedCount == 0) {
callback(false, "No such course was found");
//console.log("No such exam was found");
}
});
};
/**
* This function will add the given exam_id to the given user's followers list.
* It simply appends the exam_id to the list and nothing else.
* If the exam_id already exists in the user's followers list,
* false will be returned, andnothing will be added.
*
* Ideally the user shouldnt even be able to attempt to follow an exam twice.
*
* @param {string} user_name: the unique user name for the user
* @param {string} exam_id: the _id of the exam TO follow
* @param {function} callback: with 2 args: (boolean, <string>),
* where <boolean> : err ? false : true
* where <string> : error ? err_messg : success_messg
**/
exports.followExam = function (user_name, exam_id, callback) {
exports.retrieveFollows(user_name, function (bool, result) {
if (!bool) callback(false, result);
else { // no err occured so far...
var found = false;
for (var i = 0; i < result.length; i++) { // search through the list of exams followed
if (result[i] == exam_id) {
found = true;
}
}
if (found) { // means exam is already followed by user
callback(false, "user is already following this exam");
}
else { // add it to the user follower list
// find the user table
var users = db.collection('users');
// insert data into table
users.updateOne( {user_name: user_name}, {$push: {followers: exam_id}} , function (err) {
// if (err) throw err;
if (err) callback(false, "Error: some error occurred while following the exam");
else {
// console.log("user is following this exam");
callback(true, "Success: user is following this exam");
}
});
}
}
});
};
/**
* This function returns an array where each element contains info for a particular question
* such as the question number (_id), number of solutions (count), and number of comments
* (comments). [ {_id,count,comments}, {} , ...]
*
* @param {string} exam_id: the exam_id of which the info is required
* @param {function} callback: with arg (<[Objs]>) - RESULT
* */
exports.get_exam_info_by_ID = function (exam_id, callback) {
var solutions = db.collection('solutions');
solutions.aggregate([
// {$unwind: "$comments"},
{ $match: { exam_id: exam_id }},
{
$project:
{
num_comments: { $size: "$comments" },
_id: "$exam_id",
q_id: "$q_id"
}
},
{
$group : {
_id : "$q_id",
count: { $sum: 1 },
comments: {$sum: "$num_comments"}
// num_comments: { $size: "$comments" }
}
}
]).toArray(function (err, result) {
callback(result);
});
};
/**
* CALLBACK ADDED RECENTLY, BEWARE WHEN CALLING IT
* This function will add a comment to the solutions table
*
* @param {string} sol_id: id of the solution to which to add the comment
* @param {string[]} fields: <[text, by_username]>
* @param {function} serverCallback: with args (<bool>,<string>)
* where <bool> : err ? false : true
* where <string> : err ? err_mssg : success_mssg
* */
exports.add_comment = function (sol_id, fields, serverCallback) {
var date = new Date();
var Data = {
text: fields[0],
date: date.toString().slice(0, 24),
by: fields[1]
};
// find the solutions table
var solutions = db.collection('solutions');
var users = db.collection('users');
// insert data into table
solutions.updateOne( {_id: ObjectId(sol_id)}, {$push: {comments: Data}} , function (err, result) {
if (err) {
serverCallback(false, "Error: Solution found, but could not update comments.");
throw err;
}
else {
users.updateOne( { user_name: fields[1] }, { $inc: { comments: 1} }, function (err) {
if (err) serverCallback(false, "Error: Some error occured while updating user info");
else {
serverCallback(true, "Success: comment added successfully");
}
});
}
});
};
/**
* This function will get all the solution for a given exam_id and q_num
* sorted by highest to lowest votes.
*
* @param {string} exam_id: exam_id for which the info is required.
* @param {int} q_num: the question number for which solutions are required.
* @param {function} callback: <[Objs]> - RESULT
* */
exports.get_all_solutions = function (exam_id, q_num, callback) {
// check if the exam id already exists...
exports.get_exam_byID(exam_id, function (success, failure, exam) {
if (!success && failure) { // some error occurred while searching
callback(false, true, "Error: Some error occurred while searching for exam", null);
} else if (!success && !failure) {
callback(false, true, "Error: this exam doesn't exist", null);
} else if (success && !failure) { // this exam exists proceed with task
var solutions = db.collection('solutions');
solutions.find(
{
exam_id: exam_id,
q_id: q_num
}
).sort({ votes: -1}).toArray( function (err, docs) {
if (err) callback(false, true, "Error: Some error occurred while looking for solutions");
else { // either nothing was found or something was found
callback(true, false, "Solutions", docs);
}
});
}
});
};
/**
* CALLBACK ADDED RECENTLY, BEWARE WHEN CALLING IT
* This function will add a solution to the solutions table in the database.
*
* @param {string[]} fields: [exam_id , question_id, solution text, user_name]
* @param {function} callback: with args (bool, string)
* where, <bool>: err ? false : true
* where, <string>: err ? err_mssg : success_mssg
* */
exports.add_solution = function (fields, callback) {
var Data = {
exam_id: fields[0],
q_id: fields[1],
text: fields[2],
votes: 0,
comments: [],
author: fields[3]
};
// find the solutions table
var solutions = db.collection('solutions');
var users = db.collection('users');
// insert data into table
solutions.insert(Data, function(err) {
if (err) callback(false , "Error: Failed to add the solution");
else {
users.updateOne( { user_name: fields[3] }, { $inc: { answered: 1} }, function (err) {
if (err) callback(false, "Error: Failed to update the user solution count");
else {
// console.log("solution added");
callback(true, "Success: added solution successfully!");
}
});
}
});
};
/**
* This function will update the vote count of a solution.
*
* @param {string} sol_id: the sol_id of the solution to vote
* @param {string} upORdown: <string> : up_vote ? "up" : "down"
* @param {function} callback: with args (bool, string)
* where, <bool>: err ? false : true
* where, <string>: err ? err_mssg : success_mssg
* */
exports.vote_solution = function (sol_id, upORdown , callback) {
var vote = (upORdown == "up") ? 1 : -1;
var solutions = db.collection('solutions');
solutions.updateOne(
{_id: ObjectId(sol_id) },
{ $inc: { votes: vote} }, function (err) {
// if (err) throw err;
if (err) callback(false, "Error: couldnt update the vote count");
else {
callback(true, "Success: updated vote count");
}
});
};
/**
* This function will retrieve all exams in the database given the course code ...
* ... ordered by the year of the exam.
*
* @param {string} course_code: the course code to get all the exams for
* @param {function} callback: with args (<string>)
* where on success is <[Objs]>
* */
exports.get_all_exams = function (course_code, callback) {
// get the exams table
var exam_collection = db.collection('exams');
exam_collection.createIndex( // make the following fields searchable
{
"course_code":"text"
});
// search exams table with given course code
exam_collection.find(
{ $text: { $search: course_code } }
).sort({ year: -1}).toArray( function (err, docs) { // order by year
if (err) throw err;
else { // get the title
exports.find_course(course_code, function (result, data) {
if (result == true) {
// append the title from data to each exam object from docs
docs.forEach(function (doc) {
doc.title = data[0].title;
});
/*callback(docs); // send back the data*/
}
else if (result == false) { // no such course was found
}
callback(docs); // send back the data
});
}
});
};
/**
* This function will add an exam to the database UNLESS the exams already exists.
* If the exams table is empty, this will create one and then add the data.
* Note: this assumes that (course_code + year + term + type) together form a unique exam.
* i.e there can't be two exams occurring for the same course in the same year in the same term with the same type.
*
* @param {string[]} fields: an array of format ["course_code", year, "term",
* ["instructor1",...,"instructor n"], page_count, question_count
* "upload_date", "user_name"]
* @param {string[]} questions_array: a array by format ["q_1", "q_2", ... , "q_question_count"]
* @param {function} serverCallback: with args (<bool>, <string>)
* where <bool> : err ? false : true
* where <string> : err ? err_mssg : success_mssg
*
* */
exports.add_exam = function (fields, questions_array, serverCallback) {
// construct an exam object
var Data =
{
course_code: fields[0],
year: fields[1],
term: fields[2],
type: fields[3],
instructors: fields[4],
page_count: fields[5],
questions_count: fields[6],
questions_list: [],
upload_date: fields[7],
uploaded_by: fields[8]
};
// create the questions objects
for (var i = 1; i <= Data.questions_count; i++) {
Data.questions_list.push(
{