-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.js
218 lines (173 loc) · 5.94 KB
/
app.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
var express = require('express');
var path = require('path');
var favicon = require('serve-favicon');
var logger = require('morgan');
var cookieParser = require('cookie-parser');
var bodyParser = require('body-parser');
var http = require('http');
var ejs = require("ejs");
var request = require('request');
var cheerio = require('cheerio'); //scraping tool
var downloadCSV = require('./public/javascripts/downloadCSV');
var downloadICS = require('./public/javascripts/downloadICS');
var routes = require('./routes/index');
var users = require('./routes/users');
var app = express();
/*
App parameters
Enter year, (month-1) and day when the semester starts (Monday of the study week 1)
*/
var startYear = 2017;
var startMonth = 0;
var startDay = 16;
var skipWeek = true;
var url = "https://browser.ted.is.ed.ac.uk/generate?courses[]=BITE10013_SS1_YR&courses[]=BITE10002_SV1_SEM1&courses[]=BITE10001_SV1_SEM1&courses[]=BITE10007_SV1_YR&courses[]=BITE10006_SV1_SEM2&courses[]=CMSE10002_SV1_SEM1&show-close=1&show-close=1&period=SEM1";
var port = process.env.PORT || 3000;
//pp.set('port', process.env.PORT || 3000);
// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'html');
app.engine('html', ejs.renderFile);
// uncomment after placing your favicon in /public
//app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')));
app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended: false}));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));
//app.use(express.static(path.join(__dirname, 'views')));
app.get('/', function(req, res) {
res.render('index.html');
});
app.get('/download/csv', function(req, res) {
var url = req.query.url;
console.log(url);
if (!url) {
res.redirect('/');
return;
}
getFile(url, true, function(ts) {
console.log(ts);
res.send({ts:ts});
//console.log("ping from csv");
});
});
app.get('/download/ics', function(req, res) {
var url = req.query.url;
console.log(url);
if (!url) {
res.redirect('/');
return;
}
getFile(url, false, function(ts) {
console.log(ts);
res.send({ts:ts});
//console.log("ping from ts");
});
//res.setHeader('Content-disposition', 'attachment; filename=timetable.ics');
//res.download('timetable.ics');
//res.render('download.html');
//
//console.log("ping from ics");
//res.setHeader('Content-disposition', 'attachment; filename=timetable.csv');
//res.download('timetable.csv');
//res.send('<b>timetable.csv and timetable.ics</b> have been successfully saved to your hard drive.');
});
//app.use('/users', users);
//router.get('/', function(req, res, next) {
// res.render('index');
//});
/*
Main Function Start
*/
function getFile(url, isCSVRequest, callback) {
//url = 'https://browser.ted.is.ed.ac.uk/generate?courses[]=BILG09014_SV1_SEM2&courses[]=BUST10118_SV1_SEM2&courses[]=BUST10021_SV1_SEM2&show-close=1&period=SEM2#';
var ts = 0;
request(url, function (error, response, html) {
if (!error) {
var $ = cheerio.load(html);
var course, type, times, location, day;
var weeks = [];
var event = {
course: "",
type: "",
location: "",
times: "",
day: "",
weeks: []
};
event.weeks = [];
var items = [];
$('.event-head span.course').each(function (i, elem) {
items[i] = {
course: $(this).text()
};
items[i].day = $(this).parent().parent().parent().parent().find('th').text();
if (items[i].day == '' && i != 0) {
items[i].day = items[i - 1].day;
}
});
$('.type').each(function (i, elem) {
items[i].type = $(this).clone().find('br').remove().end().find('small').remove().end().text().replace(/\s+/g, "");
});
$('div.times').each(function (i, elem) {
items[i].times = $(this).clone().find('i').remove().end().text().replace(/\s+/g, "");
});
$('ul.facts').each(function (i, elem) {
items[i].location = $(this).children().last().clone().find('span').remove().end().text().trim();
});
$('table .weeks').each(function (i, elem) {
items[i].weeks = [];
$(this).find('.on').each(function (n, nelem) {
items[i].weeks.push($(this).text());
});
});
if (isCSVRequest) {
ts = downloadCSV(startYear, startMonth, startDay, items);
callback(ts);
}
else {
ts = downloadICS(startYear, startMonth, startDay, items);
callback(ts);
}
} else {
console.log('url request failed');
}
});
}
/*
Main Function End
*/
// catch 404 and forward to error handler
app.use(function (req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
});
// error handlers
// development error handler
// will print stacktrace
if (app.get('env') === 'development') {
app.use(function (err, req, res, next) {
res.status(err.status || 500);
//res.render('error', {
// message: err.message,
// error: err
//});
});
}
// production error handler
// no stacktraces leaked to user
app.use(function (err, req, res, next) {
res.status(err.status || 500);
//res.render('error', {
// message: err.message,
// error: {}
//});
});
app.listen(port, function() {
console.log('Express server listening on port ' + port);
});
//app.listen(app.get('port'));
//console.log('Express server listening on port ' + app.get('port'));
module.exports = app;