-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathapp.js
379 lines (280 loc) · 9.54 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
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
/*
_______ ______ ______ .___ ___. ___ .______ _______.
| ____| / | / | | \/ | / \ | _ \ / |
| |__ | ,----'| ,----' | \ / | / ^ \ | |_) | | (----`
| __| | | | | | |\/| | / /_\ \ | ___/ \ \
| | | `----.| `----. | | | | / _____ \ | | .----) |
|__| \______| \______| |__| |__| /__/ \__\ | _| |_______/
*/
// **********************************************************
"use strict";
// **********************************************************
// require
var express = require('express');
var serveStatic = require('serve-static');
var fsr = require('file-stream-rotator');
var fs = require('fs');
var morgan = require('morgan');
var cors = require('cors');
var bodyparser = require('body-parser');
var request = require('request');
var maps = require('./controllers/maps.js');
// **********************************************************
// config
var configEnv = require('./config/env.json');
var NODE_ENV = process.env.NODE_ENV;
var NODE_PORT = process.env.PORT || configEnv[NODE_ENV].NODE_PORT;
var CONTENT_API = process.env.CONTENT_API || configEnv[NODE_ENV].CONTENT_API;
var DEPLOY_INTERVAL = configEnv[NODE_ENV].DEPLOY_INTERVAL || 300000; //microseconds
var PROXY_PATH = configEnv[NODE_ENV].PROXY_PATH || '';
var ALLOWED_IP = configEnv[NODE_ENV].ALLOWED_IP || ["165.135.*", "127.0.0.1"];
console.log('NODE_ENV : '+ NODE_ENV );
console.log('NODE_PORT : '+ NODE_PORT );
console.log('CONTENT_API : '+ CONTENT_API );
console.log('DEPLOY_INTERVAL : '+ DEPLOY_INTERVAL );
console.log('PROXY_PATH : '+ PROXY_PATH );
console.log('ALLOWED_IP : '+ ALLOWED_IP );
// **********************************************************
// deploy
maps.deployMap(true);
// **********************************************************
// app
var app = express();
app.use(cors());
// **********************************************************
// log
var logDirectory = __dirname + '/log';
fs.existsSync(logDirectory) || fs.mkdirSync(logDirectory);
var accessLogStream = fsr.getStream({
filename: logDirectory + '/fccmaps.log',
verbose: false
});
app.use(morgan('combined', {stream: accessLogStream}))
// **********************************************************
// parser
app.use(bodyparser.json());
app.use(bodyparser.urlencoded({ extended: false }));
// **********************************************************
// validate
function checkAllowed(req, res, next) {
var ip = req.headers['x-forwarded-for'] ||
req.connection.remoteAddress ||
req.socket.remoteAddress ||
req.connection.socket.remoteAddress;
//console.log('ip : ' + ip );
//check allowed IP
var isAllowed = false;
if (ip != undefined) {
ip = ip.replace(/ +/g, '').split(',')[0]
for (var i = 0; i < ALLOWED_IP.length; i++) {
var re = new RegExp('^' + ALLOWED_IP[i].replace('*', ''));
if (ip.match(re)) {
isAllowed = true;
}
}
}
if (isAllowed) {
//console.log('maps.pullMap isAllowed');
next();
}
else {
//console.log('checkAllowed error : IP not allowed');
res.status(404);
res.sendFile('404.html', { root: __dirname + '/public' });
return;
}
}
// **********************************************************
// route
//api routing
app.get('/api/raw', function(req, res, next){
maps.getRawAPI(req, res, next);
});
app.get('/api/raw.json', function(req, res, next){
maps.getRawAPI(req, res, next);
});
app.get('/api', function(req, res, next){
maps.getDataAPI(req, res, next);
});
app.get('/api.json', function(req, res, next){
maps.getDataAPI(req, res, next);
});
app.get('/api/data.json', function(req, res, next){
maps.getDataAPI(req, res, next);
});
app.get('/api/content.json', function(req, res, next){
maps.getDataAPI(req, res, next);
});
app.get('/:mapId/api', function(req, res, next){
maps.getDataAPI(req, res, next);
});
app.get('/:mapId/api.json', function(req, res, next){
maps.getDataAPI(req, res, next);
});
app.get('/:mapId/embed/api', function(req, res, next){
maps.getDataAPI(req, res, next);
});
app.get('/:mapId/embed/api.json', function(req, res, next){
maps.getDataAPI(req, res, next);
});
// **********************************************************
//static routing
app.use('/', express.static(__dirname + '/public'));
// **********************************************************
//map thumb routing
app.use('/:mapId/thumb', function(req, res, next){
//console.log('\n map thumb routing ' );
var mapId = req.params.mapId; //req.url.replace(/\//g, '');
//console.log('mapId thumb : ' + mapId);
if ((req.url == '/') && (req.originalUrl.slice(-1) != '/')) {
//console.log('trailing slash redirect ');
var redUrl = PROXY_PATH + req.originalUrl + '/';
//console.log('redUrl : ' + redUrl);
res.redirect(301, redUrl);
return;
}
var isMap = maps.checkMapId(mapId);
//console.log('isMap : ' + isMap);
if (isMap) {
var thumbURL = maps.getThumbUrl(mapId);
//console.log('thumbURL : ' + thumbURL);
if (thumbURL) {
//console.log('thumbURL proxy pipe ');
req.pipe(request(thumbURL)).pipe(res);
return;
}
}
next();
});
// **********************************************************
//map embed routing
app.use('/:mapId/embed', function(req, res, next){
//console.log('\n map embed routing ' );
var mapId = req.params.mapId; //req.url.replace(/\//g, '');
//console.log('mapId : ' + mapId);
if ((req.url == '/') && (req.originalUrl.slice(-1) != '/')) {
//console.log('trailing slash redirect ');
var redUrl = PROXY_PATH + req.originalUrl + '/';
//console.log('redUrl : ' + redUrl);
res.redirect(301, redUrl);
return;
}
var isMap = maps.checkMapId(mapId);
//console.log('isMap : ' + isMap);
if (isMap) {
var mapType = maps.getMapType(mapId);
//console.log('mapType : ' + mapType);
if ((mapType == 'proxy') || (mapType == 'redirect')) {
//console.log('skip embed if mapType proxy or redirect ');
next();
}
else if ((mapType == 'layers') || (mapType == 'iframe')) {
//console.log('no app id - assume to be a map');
var mapType = maps.getMapType(mapId);
if (mapType == 'layers') {
//console.log('layers embed sendFile ');
res.sendFile('map-embed.html', { root: __dirname + '/public' });
return;
}
else if (mapType == 'iframe') {
//console.log('iframe embed pipe ');
var iframeUrl = maps.getWebUrl(mapId);
//console.log('iframeUrl : ' + iframeUrl);
iframeUrl = iframeUrl.replace(/\?$/, '');
//console.log('iframeUrl : ' + iframeUrl);
if (iframeUrl.slice(-1) == '/' ){
iframeUrl = iframeUrl.slice(0, -1);
}
//console.log('iframeUrl : ' + iframeUrl);
//console.log('mapType redirect 302 ');
res.redirect(302, iframeUrl);
return;
}
}
}
next();
});
// **********************************************************
//map routing
app.use('/:mapId', function(req, res, next){
//console.log('\n map routing ' );
var mapId = req.params.mapId; //req.url.replace(/\//g, '');
//console.log('mapId routing : ' + mapId);
if ((req.url == '/') && (req.originalUrl.slice(-1) != '/')) {
//console.log('trailing slash redirect ');
var redUrl = PROXY_PATH + req.originalUrl + '/';
console.log('redUrl : ' + redUrl);
res.redirect(301, redUrl);
return;
}
var isMap = maps.checkMapId(mapId);
if (isMap) {
var mapType = maps.getMapType(mapId);
if ((mapType == 'proxy') || (mapType == 'redirect')) {
var appUrl = maps.getWebUrl(mapId);
appUrl = appUrl.replace(/\?$/, '');
if (appUrl.slice(-1) == '/' ){
appUrl = appUrl.slice(0, -1);
}
var appReqUrl = appUrl + req.url;
if (mapType == "proxy") {
req.pipe(request(appReqUrl)).pipe(res);
return;
}
else if (mapType == "redirect") {
res.redirect(302, appReqUrl);
return;
}
}
else if ((mapType == 'layers') || (mapType == 'iframe')) {
var mapIndex = 'map-'+ mapType +'.html';
var serve = serveStatic(__dirname + '/public', {'index': [mapIndex]});
serve(req, res, next);
return;
}
}
next();
});
// **********************************************************
// error
app.use(function(req, res) {
console.log('\n app.use file not found ' );
console.error('404 file not found');
//res.status(404);
//res.sendFile('/public/404.html');
//res.sendFile('404.html', { root: __dirname + '/public' });
var app404Url = PROXY_PATH + '/404.html#'+ req.url;
console.log('\n app404Url : ' + app404Url );
//res.redirect(404, app404Url);
res.redirect(301, app404Url);
return;
});
app.use(function(err, req, res, next) {
console.log('\n app.use error: ' + err );
console.error(err.stack);
//res.status(500);
//res.sendFile('/public/500.html');
//res.sendFile('500.html', { root: __dirname + '/public' });
var app500Url = PROXY_PATH + '/500.html#'+ req.url;
console.log('\n app500Url : ' + app500Url );
//res.redirect(500, app500Url);
res.redirect(301, app500Url);
return;
});
process.on('uncaughtException', function (err) {
console.log('\n uncaughtException: '+ err);
console.error(err.stack);
});
// **********************************************************
// server
var server = app.listen(NODE_PORT, function () {
var host = server.address().address;
var port = server.address().port;
console.log('\n listening at http://%s:%s', host, port);
});
// **********************************************************
// deploy
//maps.deployMap(true);
// **********************************************************
// export
module.exports = app;