-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathgenerateReport.js
More file actions
276 lines (262 loc) · 7.94 KB
/
generateReport.js
File metadata and controls
276 lines (262 loc) · 7.94 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
const stripe = require('stripe')(process.env.STRIPE_SECRET_KEY);
const AWS = require('aws-sdk');
const fs = require('fs');
const s3 = new AWS.S3();
const yosql = require('yosql');
const fetch = require('node-fetch');
const btoa = require('btoa');
const moment = require('moment');
require('moment-range');
let headers = {
'Authorization': 'Basic ' + btoa(process.env.INSIGHTLY_API_KEY),
'Accept-Encoding': 'gzip'
};
const mongoose = require('mongoose');
mongoose.Promise = global.Promise;
mongoose.connect(process.env.MONGODB_URI);
const fileName = 'report.sqlite3';
if (fs.existsSync(fileName)) {
fs.unlinkSync(fileName);
}
const db = yosql.createDatabase(fileName);
db.serialize(() => {
return generateReport();
});
const stripePayments = [];
const insightlyLeads = [];
function generateReport() {
const tables = {
'users': require('./models/UserModel'),
'locations': require('./models/LocationModel'),
'terms': require('./models/TermModel'),
'courses': require('./models/CourseModel'),
'textbooks': require('./models/TextbookModel'),
'tracks': require('./models/TrackModel')
};
const tableNames = Object.keys(tables);
function createTable(idx) {
const tableName = tableNames[idx];
tables[tableName].find({ client: mongoose.Types.ObjectId(process.env.CLIENT) }, (err, documents) => {
if (err) { console.log(err); }
console.log(`generating ${tableName} tables`);
yosql.createTable(db, tableName, JSON.parse(JSON.stringify(documents)), {}, () => {
if (idx < tableNames.length - 1) {
createTable(++idx);
} else {
courseDates();
}
});
});
}
return createTable(0);
}
function courseDates() {
require('./models/CourseModel')
.find({ client: mongoose.Types.ObjectId(process.env.CLIENT) })
.populate('term')
.exec((err, courses) => {
if (err) { console.log(err); }
const dates = [];
courses.forEach(course => {
moment
.range(course.term.start_date, moment(course.term.end_date)
.add(1, 'days'))
.by('days', date => {
if (
course.get('days').includes(date.format('dddd').toLowerCase()) &&
!course.get('holidays').includes(date.format('YYYY-MM-DD'))
) {
dates.push({
course_id: course._id.toString(),
date: date.format('YYYY-MM-DD')
});
}
});
});
console.log(`generating course_dates table`);
yosql.createTable(db, 'course_dates', dates, {}, () => {
console.log('fetching stripe charges');
fetchAllStripeCharges();
});
});
}
function fetchAllStripeCharges(startingAfter) {
stripe.charges.list({ limit: 100, starting_after: startingAfter }, (err, charges) => {
if (err) { console.log(err); }
Array.prototype.push.apply(stripePayments, charges.data);
console.log(`fetched ${charges.data.length} payments`);
if (charges.has_more) {
fetchAllStripeCharges(charges.data[charges.data.length - 1].id);
} else {
console.log('generating stripe_payments table');
yosql.createTable(db, 'stripe_payments', stripePayments, {}, () => {
console.log('fetching insightly lead statuses');
uploadDatabase();
});
}
});
}
// function fetchInsightlyLeadStatuses() {
// fetch('https://api.insight.ly/v2.2/LeadStatuses?converted=true', {
// method: 'GET',
// headers
// })
// .then(res => {
// return res.json();
// })
// .then(leadStatuses => {
// if (typeof leadStatuses === 'string') {
// console.log(leadStatuses);
// if (leadStatuses.contains('Second')) {
// headers = {
// 'Authorization': 'Basic ' + btoa(process.env.INSIGHTLY_API_KEY_2),
// 'Accept-Encoding': 'gzip'
// };
// return fetchInsightlyLeadStatuses();
// } else {
// db.close();
// return uploadDatabase();
// }
// }
// console.log('generating insightly_lead_statuses table');
// yosql.createTable(db, 'insightly_lead_statuses', leadStatuses, {}, () => {
// console.log('fetching insightly custom fields');
// fetchInsightlyCustomFields();
// });
// })
// .catch(error => {
// console.log(error);
// });
// }
// function fetchInsightlyCustomFields() {
// fetch('https://api.insight.ly/v2.2/CustomFields', {
// method: 'GET',
// headers
// })
// .then(res => {
// return res.json();
// })
// .then(customFields => {
// if (typeof customFields === 'string') {
// console.log(customFields);
// if (customFields.contains('Second')) {
// headers = {
// 'Authorization': 'Basic ' + btoa(process.env.INSIGHTLY_API_KEY_2),
// 'Accept-Encoding': 'gzip'
// };
// return fetchInsightlyCustomFields();
// } else {
// db.close();
// return uploadDatabase();
// }
// }
// console.log('generating insightly_custom_fields table');
// yosql.createTable(db, 'insightly_custom_fields', customFields, {}, () => {
// console.log('fetching insightly leads');
// fetchInsightlyLeads(0);
// });
// })
// .catch(error => {
// console.log(error);
// });
// }
// function fetchInsightlyLeads(skip) {
// fetch(`https://api.insight.ly/v2.2/Leads/?converted=true&top=500&skip=${skip}`, {
// method: 'GET',
// headers
// })
// .then(res => {
// return res.json();
// })
// .then(leads => {
// if (typeof leads === 'string') {
// console.log(leads);
// if (leads.contains('Second')) {
// headers = {
// 'Authorization': 'Basic ' + btoa(process.env.INSIGHTLY_API_KEY_2),
// 'Accept-Encoding': 'gzip'
// };
// return fetchInsightlyLeads(skip);
// } else {
// db.close();
// return uploadDatabase();
// }
// }
// Array.prototype.push.apply(insightlyLeads, leads);
// console.log(`fetched ${leads.length} leads`);
// if (leads.length === 500) {
// setTimeout(() => {
// fetchInsightlyLeads(skip + 500);
// }, 200);
// } else {
// console.log('fetching insightly lead notes');
// fetchInsightlyLeadNotes();
// }
// }).catch(error => {
// console.log(error);
// });
// }
// function fetchInsightlyLeadNotes() {
// s3.getObject({
// Bucket: process.env.S3_BUCKET_NAME,
// Key: `leadNotes.json`
// }, function(err, data) {
// if (err) {
// console.log(err, err.stack); // an error occurred
// return fetchInsightlyLeadAttachments();
// } else {
// const leadNotes = JSON.parse(data.Body.toString());
// insightlyLeads.forEach(lead => {
// lead.NOTES = leadNotes[lead.LEAD_ID];
// });
// }
// fetchInsightlyLeadAttachments();
// });
// }
// function fetchInsightlyLeadAttachments() {
// s3.getObject({
// Bucket: process.env.S3_BUCKET_NAME,
// Key: `leadAttachments.json`
// }, function(err, data) {
// if (err) {
// console.log(err, err.stack); // an error occurred
// return createLeadsTable();
// } else {
// const leadAttachments = JSON.parse(data.Body.toString());
// insightlyLeads.forEach(lead => {
// lead.FILE_ATTACHMENTS = leadAttachments[lead.LEAD_ID];
// });
// }
// createLeadsTable();
// });
// }
// function createLeadsTable() {
// yosql.createTable(db, 'insightly_leads', insightlyLeads, {}, () => {
// db.close();
// uploadDatabase();
// });
// }
function uploadDatabase() {
s3.putObject({
Bucket: process.env.S3_BUCKET_NAME,
Key: `${fileName}`,
Body: new Buffer(fs.readFileSync(fileName))
}, (err, data) => {
if (err) {
console.log(err)
} else {
console.log(`Successfully uploaded data to Amazon S3/${process.env.S3_BUCKET_NAME}/${fileName}`);
}
fetch(process.env.SNITCH_URL, {
headers: {
'Content-Type': 'application/x-www-url-formencoded'
}
})
.then(() => {
process.exit();
})
.catch(error => {
console.log(error);
});
});
}