-
Notifications
You must be signed in to change notification settings - Fork 0
/
database-fix.js
150 lines (145 loc) · 3.87 KB
/
database-fix.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
var models = require('./models');
var async = require('async')
models.funds.findAll().then(function(funds){
//trim and turn to lower case
// async.each(funds, function(fund, callback){
// var id = fund.dataValues.id;
// var tags = fund.dataValues.tags;
// for (j = 0; j < tags.length; j++){
// tags[j] = tags[j].trim();
// tags[j] = tags[j].toLowerCase();
// }
// models.funds.findById(id).then(function(fund){
// fund.update({
// tags: tags
// }).then(function(fund){
// callback();
// })
// })
// })
//Remove redundancies between tags and subject,degree,etc
// async.each(funds, function(fund, callback){
// var id = fund.dataValues.id;
// var tags = fund.dataValues.tags;
//
// if(fund.dataValues.subject){
// var subject = fund.dataValues.subject;
// for (j = 0; j < subject.length; j++){
// tags.push(subject[j]);
// }
// models.funds.findById(id).then(function(fund){
// fund.update({
// tags: tags
// }).then(function(){
// callback();
// })
// })
// }
// else{
// callback();
// }
// })
//
// //Turn single string into array
// async.each(funds, function(fund,callback){
// var id = fund.dataValues.id;
// var tags = fund.dataValues.tags;
// var subject = fund.dataValues.university;
//
// if(subject[0]) {
// subject = subject[0].split(',');
// models.funds.findById(id).then(function(fund){
// fund.update({
// university: subject
// }).then(function(){
// callback();
// })
// })
// }
// else {
// callback()
// }
// })
// async.each(funds, function(fund, callback){
// var id = fund.dataValues.id;
// var name = fund.dataValues.title.toLowerCase();
// if(name.indexOf("scholarship") > -1){
// models.funds.findById(id).then(function(fund){
// fund.update({
// support_type: "scholarship"
// }).then(function(){
// callback()
// })
// })
// }
// else if(name.indexOf("bursar") > -1){
// models.funds.findById(id).then(function(fund){
// fund.update({
// support_type: "bursary"
// }).then(function(){
// callback();
// })
// })
// }
// else if(name.indexOf("grant") > -1){
// models.funds.findById(id).then(function(fund){
// fund.update({
// support_type: "grant"
// }).then(function(){
// callback();
// })
// })
// }
// else if(name.indexOf("prize") > -1){
// models.funds.findById(id).then(function(fund){
// fund.update({
// support_type: "prize"
// }).then(function(){
// callback();
// })
// })
// }
// else{
// models.funds.findById(id).then(function(fund){
// fund.update({
// support_type: "grant"
// }).then(function(){
// callback()
// })
// })
// }
// })
//get rid of religion
// async.each(funds, function(fund,callback){
// fund = fund.get();
// var subject = fund.subject;
// var id = fund.id;
// if(subject){
// if(subject.indexOf("arts and law") != -1 && subject.indexOf("engineering and physical sciences") != -1 && subject.indexOf("medical and dental sciences") != -1 && subject.indexOf("social sciences") != -1 && subject.indexOf("life and environmental sciences")) {
// console.log("JUST HERE");
// models.funds.findById(id).then(function(fund){
// console.log("I'm here");
// fund.update({
// subject: null
// }).then(function(){
// callback();
// });
// });
// }
// else {
// callback();
// }
// }
// else{
// callback();
// }
//
// });
var totalAmount = 0;
for (var i =0; i < funds.length; i++){
if(funds[i].maximum_amount){
totalAmount = totalAmount + funds[i].maximum_amount;
}
}
console.log(totalAmount);
});