-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
186 lines (151 loc) · 4 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
'use strict';
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');
let csv = require('fast-csv');
var app = express();
// supress console.log for tests
if ('test' == process.env.NODE_ENV){
console.error = function() {};
}
var port = normalizePort(process.env.PORT || '3000');
app.set('port', port);
var http = require('http');
var server = http.createServer(app);
Promise.all([readPitcherData(),readBatterData()]).then(val => {
server.listen(port);
});
server.on('error', onError);
server.on('listening', onListening);
// handlebar
var exphbs = require('express-handlebars');
var hbs = exphbs.create ( {
defaultLayout: path.join(__dirname, '/views/layouts/main')
});
app.set('views', path.join(__dirname, 'views'));
app.engine('handlebars', hbs.engine );
app.set('view engine', 'handlebars');
// routers
var index = require('./routes/index');
var api = require('./routes/api');
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('/', index);
app.use('/api', api);
// catch 404 and forward to error handler
app.use(function(req, res, next) {
var msg = `CODE 404: ${req.path} does not exist!`;
var err = new Error( msg );
err.status = 404;
next(err);
});
// error handler
app.use(function(err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get('env') === 'development' ? err : {};
// only leak msg in development
let msg = app.get('env') === 'development' ? err.message : '';
console.error(msg);
// render the error page
return res.status( err.status || 500 ).send(msg);
});
module.exports = app;
function normalizePort(val) {
var port = parseInt(val, 10);
if (isNaN(port)) {
// named pipe
return val;
}
if (port >= 0) {
// port number
return port;
}
return false;
}
function onError(error) {
if (error.syscall !== 'listen') {
throw error;
}
var bind = typeof port === 'string'
? 'Pipe ' + port
: 'Port ' + port;
// handle specific listen errors with friendly messages
switch (error.code) {
case 'EACCES':
console.error(bind + ' requires elevated privileges');
process.exit(1);
break;
case 'EADDRINUSE':
console.error(bind + ' is already in use');
process.exit(1);
break;
default:
throw error;
}
}
function onListening() {
var addr = server.address();
var bind = typeof addr === 'string'
? 'pipe ' + addr
: 'port ' + addr.port;
console.log('Listening on ' + bind);
app.emit('appStarted');
}
function readPitcherData() {
let dataObj = {
keys : null,
data: []
};
return new Promise (function (resolve, reject){
csv
.fromPath(path.join(__dirname, '/data/pitcher.csv'))
.on('data', data => {
if (!dataObj.keys){
dataObj.keys = data.filter(val => {
return val != -1;
});
} else {
dataObj.data.push(data.filter(val => {
return val != '';
}));
}
})
.on('end', () => {
app.locals.pitcherData = dataObj;
resolve(1);
});
});
}
function readBatterData() {
let dataObj = {
keys : null,
data: []
};
return new Promise (function (resolve, reject){
csv
.fromPath(path.join(__dirname, '/data/position.csv'))
.on('data', data => {
if (!dataObj.keys){
dataObj.keys = data.filter(val => {
return val != -1;
});
} else {
dataObj.data.push(data.filter(val => {
return val != '';
}));
}
})
.on('end', () => {
app.locals.batterData = dataObj;
resolve(1);
});
});
}