-
Notifications
You must be signed in to change notification settings - Fork 146
Expand file tree
/
Copy pathserver.js
More file actions
396 lines (362 loc) · 11.7 KB
/
server.js
File metadata and controls
396 lines (362 loc) · 11.7 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
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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
/* eslint-disable no-param-reassign, no-console, strict, global-require, no-unused-vars, func-names */
'use strict';
/* ********* Polyfills (for node) ********* */
const path = require('path');
const fs = require('fs');
require('@babel/register')({
// This will override `node_modules` ignoring - you can alternatively pass
// an array of strings to be explicitly matched or a regex / glob
ignore: [
/node_modules\/(?!react-leaflet|@babel\/runtime\/helpers\/esm|@digitransit-util)/,
],
});
global.fetch = require('node-fetch');
const proxy = require('express-http-proxy');
global.self = { fetch: global.fetch };
const devhost = '';
process.on('unhandledRejection', (reason, p) => {
console.log('Unhandled Rejection at:', p, 'reason:', reason);
});
/* ********* Server ********* */
const express = require('express');
const expressStaticGzip = require('express-static-gzip');
const cookieParser = require('cookie-parser');
const bodyParser = require('body-parser');
const logger = require('morgan');
const { CosmosClient } = require('@azure/cosmos');
const { getJson } = require('../app/util/xhrPromise');
const { retryFetch } = require('../app/util/fetchUtils');
const configTools = require('../app/config');
const config = configTools.getConfiguration();
const appRoot = `${process.cwd()}/`;
const configsDir = path.join(appRoot, 'app', 'configurations');
const configFiles = fs
.readdirSync(configsDir)
.filter(file => file.startsWith('config'));
let allZones;
/* ********* Global ********* */
const port = config.PORT || 8080;
const app = express();
const { indexPath, hostnames } = config;
/* Setup functions */
function setUpOpenId() {
const setUpOIDC = require('./passport-openid-connect/openidConnect').default;
if (process.env.DEBUGLOGGING) {
app.use(logger('dev'));
}
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(
require('helmet')({
contentSecurityPolicy: false,
referrerPolicy: false,
expectCt: false,
}),
);
setUpOIDC(app, port, indexPath, hostnames);
}
function setUpStaticFolders() {
// First set up a specific path for sw.js
if (process.env.ASSET_URL) {
const swText = fs.readFileSync(
path.join(process.cwd(), '_static', 'sw.js'),
{ encoding: 'utf8' },
);
const injectionPoint = swText.indexOf(';') + 2;
const swPreText = swText.substring(0, injectionPoint);
const swPostText = swText.substring(injectionPoint);
const swInjectionText = fs
.readFileSync(path.join(process.cwd(), 'server', 'swInjection.js'), {
encoding: 'utf8',
})
.replace(/ASSET_URL/g, process.env.ASSET_URL);
const swTextInjected = swPreText + swInjectionText + swPostText;
app.get('/sw.js', (req, res) => {
res.setHeader('Cache-Control', 'public, max-age=0');
res.setHeader('Content-type', 'application/javascript; charset=UTF-8');
res.send(swTextInjected);
});
}
const staticFolder = path.join(process.cwd(), '_static');
// Sert cache for 1 week
const oneDay = 86400000;
app.use(
'',
expressStaticGzip(staticFolder, {
enableBrotli: true,
index: false,
maxAge: 14 * oneDay,
setHeaders(res, reqPath) {
if (
reqPath.toLowerCase().includes('sw.js') ||
reqPath.toLowerCase().includes('appcache')
) {
res.setHeader('Cache-Control', 'public, max-age=0');
}
// Always set cors header
res.header('Access-Control-Allow-Origin', '*');
},
}),
);
}
function setUpMiddleware() {
app.use(cookieParser());
app.use(bodyParser.raw());
if (process.env.NODE_ENV === 'development') {
const hotloadPort = process.env.HOT_LOAD_PORT || 9000;
// proxy for dev-bundle
app.use('/proxy/', proxy(`http://localhost:${hotloadPort}/`));
}
}
function onError(err, req, res) {
res.statusCode = 500;
res.end(err.message + err.stack);
}
function setUpErrorHandling() {
app.use(onError);
}
function setUpRoutes() {
app.use(
['/', '/fi/', '/en/', '/sv/', '/ru/', '/slangi/'],
require('./reittiopasParameterMiddleware').default,
);
app.use(require('../app/server').default);
// Make sure req has the correct hostname extracted from the proxy info
app.enable('trust proxy');
}
function processTicketTypeResult(result) {
const resultData = result.data;
if (config.availableTickets) {
if (resultData && Array.isArray(resultData.ticketTypes)) {
resultData.ticketTypes.forEach(ticket => {
const ticketFeed = ticket.fareId.split(':')[0];
if (config.availableTickets[ticketFeed] === undefined) {
config.availableTickets[ticketFeed] = {};
}
config.availableTickets[ticketFeed][ticket.fareId] = {
price: ticket.price,
zones: ticket.zones,
};
});
console.log('availableTickets loaded');
} else {
console.log('could not load availableTickets, result was invalid');
}
} else {
console.log(
'availableTickets not loaded, missing availableTickets object from config-file',
);
}
}
function setUpAvailableTickets() {
return new Promise(resolve => {
const options = {
method: 'POST',
body: '{ ticketTypes { price fareId zones } }',
headers: { 'Content-Type': 'application/graphql' },
};
const queryParameters = config.hasAPISubscriptionQueryParameter
? `?${config.API_SUBSCRIPTION_QUERY_PARAMETER_NAME}=${config.API_SUBSCRIPTION_TOKEN}`
: '';
// try to fetch available ticketTypes every four seconds with 4 retries
retryFetch(`${config.URL.OTP}gtfs/v1${queryParameters}`, 4, 4000, options)
.then(res => res.json())
.then(
result => {
processTicketTypeResult(result);
resolve();
},
err => {
console.log(err);
if (process.env.BASE_CONFIG) {
// Patching of availableTickets into cached configs would not work with BASE_CONFIG
// if availableTickets are fetched after launch
console.log('failed to load availableTickets at launch, exiting');
process.exit(1);
} else {
// If after 5 tries no available ticketTypes are found, start server anyway
resolve();
console.log('failed to load availableTickets at launch, retrying');
// Continue attempts to fetch available ticketTypes in the background for one day once every minute
retryFetch(
`${config.URL.OTP}gtfs/v1${queryParameters}`,
1440,
60000,
options,
)
.then(res => res.json())
.then(
result => {
processTicketTypeResult(result);
},
error => {
console.log(error);
},
);
}
},
);
});
}
function getZoneUrl(json) {
const zoneLayer =
!json?.noZoneSharing &&
json?.layers.find(
layer => layer.name.fi === 'Vyöhykkeet' || layer.name.en === 'Zones',
);
if (zoneLayer && !allZones) {
// use a geoJson source to initialize combined zone data
allZones = zoneLayer;
}
return zoneLayer?.url;
}
async function fetchGeoJsonConfig(url) {
try {
const response = await getJson(url);
return response.geoJson || response.geojson;
} catch (error) {
console.error(error);
return null;
}
}
function collectGeoJsonZones() {
if (!process.env.ASSEMBLE_GEOJSON) {
return Promise.resolve();
}
return new Promise(mainResolve => {
const promises = [];
configFiles.forEach(file => {
// eslint-disable-next-line import/no-dynamic-require
const conf = require(`${configsDir}/${file}`);
const { geoJson } = conf.default;
if (geoJson) {
if (geoJson.layerConfigUrl) {
promises.push(
new Promise(resolve => {
fetchGeoJsonConfig(geoJson.layerConfigUrl).then(data => {
resolve(getZoneUrl(data));
});
}),
);
} else {
promises.push(
new Promise(resolve => {
resolve(getZoneUrl(geoJson));
}),
);
}
}
});
Promise.all(promises).then(urls => {
if (allZones) {
// valid zone data was found
allZones.url = urls.filter(url => !!url); // drop invalid
console.log(`Assembled ${allZones.url.length} geoJson zones`);
configTools.setAssembledZones(allZones);
}
mainResolve();
});
});
}
function startServer() {
const server = app.listen(port, () =>
console.log('Digitransit-ui available on port %d', server.address().port),
);
}
async function fetchCitybikeSeasons() {
const client = new CosmosClient(process.env.CITYBIKE_DB_CONN_STRING);
const database = client.database(process.env.CITYBIKE_DATABASE);
const container = database.container('schedules');
const query = {
query: 'SELECT * FROM c',
};
const { resources } = await container.items.query(query).fetchAll();
console.log('citybike season configurations fetched from the database');
return resources;
}
function buildCitybikeConfig(seasonDef, configName) {
const inSeason = seasonDef.inSeason.split('-');
return {
configName: seasonDef.configName,
networkName: seasonDef.networkName,
enabled: seasonDef.enabled,
season: {
preSeasonStart: seasonDef.preSeason,
start: inSeason[0],
end: inSeason[1],
},
};
}
function handleCitybikeSeasonConfigurations(schedules, configName) {
const seasonDefinitions = schedules.filter(
seasonDef => seasonDef.configName === configName,
);
const configurations = [];
seasonDefinitions.forEach(def =>
configurations.push(buildCitybikeConfig(def, configName)),
);
return configurations;
}
function fetchCitybikeConfigurations() {
if (!process.env.CITYBIKE_DB_CONN_STRING || !process.env.CITYBIKE_DATABASE) {
return Promise.resolve();
}
return new Promise(mainResolve => {
const promises = [];
fetchCitybikeSeasons()
.then(r => {
const schedules = [];
r.forEach(seasonDef => schedules.push(...seasonDef.schedules));
configFiles.forEach(file => {
// eslint-disable-next-line import/no-dynamic-require
const conf = require(`${configsDir}/${file}`);
const configName = conf.default.CONFIG;
const { vehicleRental } = conf.default;
if (vehicleRental && Object.keys(vehicleRental).length > 0) {
promises.push(
new Promise(resolve => {
resolve(
handleCitybikeSeasonConfigurations(schedules, configName),
);
}),
);
}
});
Promise.all(promises).then(definitions => {
// filter empty objects and duplicates
const seasonDefinitions = definitions
.filter(seasonDef => Object.keys(seasonDef).length > 0)
.flat()
.filter(
(v, i, a) =>
a.findIndex(v2 => v2.networkName === v.networkName) === i,
);
console.log(
`fetched: ${seasonDefinitions.length} citybike season configuration`,
);
console.log(seasonDefinitions);
configTools.setAvailableCitybikeConfigurations(seasonDefinitions);
mainResolve();
});
})
.catch(err => {
console.log('error fetching citybike season configurations', err);
mainResolve();
});
});
}
/* ********* Init ********* */
if (process.env.OIDC_CLIENT_ID) {
setUpOpenId();
}
setUpStaticFolders();
setUpMiddleware();
setUpRoutes();
setUpErrorHandling();
Promise.all([
setUpAvailableTickets(),
collectGeoJsonZones(),
fetchCitybikeConfigurations(),
]).then(startServer);
module.exports.app = app;