Commit | Line | Data |
---|---|---|
c5c47010 BA |
1 | const createError = require('http-errors'); |
2 | const express = require('express'); | |
3 | const path = require('path'); | |
4 | const cookieParser = require('cookie-parser'); | |
5 | const logger = require('morgan'); | |
6 | const favicon = require('serve-favicon'); | |
7 | const params = require('./config/parameters'); | |
625022fd | 8 | |
c5c47010 | 9 | let app = express(); |
625022fd | 10 | |
98db2082 | 11 | app.use(favicon(path.join(__dirname, "static", "favicon.ico"))); |
625022fd BA |
12 | |
13 | if (app.get('env') === 'development') | |
14 | { | |
dac39588 BA |
15 | // Full logging in development mode |
16 | app.use(logger('dev')); | |
625022fd BA |
17 | } |
18 | else | |
19 | { | |
dac39588 BA |
20 | // http://dev.rdybarra.com/2016/06/23/Production-Logging-With-Morgan-In-Express/ |
21 | app.set('trust proxy', true); | |
22 | // In prod, only log error responses (https://github.com/expressjs/morgan) | |
23 | app.use(logger('combined', { | |
24 | skip: function (req, res) { return res.statusCode < 400 } | |
25 | })); | |
625022fd BA |
26 | } |
27 | ||
28 | app.use(express.json()); | |
29 | app.use(express.urlencoded({ extended: false })); | |
30 | app.use(cookieParser()); | |
98db2082 | 31 | app.use(express.static(path.join(__dirname, 'static'))); //client "prod" files |
625022fd BA |
32 | |
33 | // In development stage the client side has its own server | |
98db2082 | 34 | if (params.cors.enable) |
625022fd | 35 | { |
dac39588 BA |
36 | app.use(function(req, res, next) { |
37 | res.header("Access-Control-Allow-Origin", params.cors.allowedOrigin); | |
38 | res.header("Access-Control-Allow-Credentials", true); //for cookies | |
1aeed627 | 39 | res.header("Access-Control-Allow-Headers", |
77fd7298 | 40 | "Origin, X-Requested-With, Content-Type, Accept"); |
dac39588 | 41 | res.header("Access-Control-Allow-Methods", "GET, POST, OPTIONS, PUT, DELETE"); |
77fd7298 | 42 | next(); |
dac39588 | 43 | }); |
625022fd BA |
44 | } |
45 | ||
46 | // Routing (AJAX-only) | |
47 | const routes = require(path.join(__dirname, "routes", "all")); | |
48 | app.use('/', routes); | |
49 | ||
50 | // catch 404 and forward to error handler | |
51 | app.use(function(req, res, next) { | |
52 | next(createError(404)); | |
53 | }); | |
54 | ||
55 | // error handler | |
56 | app.use(function(err, req, res, next) { | |
625022fd | 57 | res.status(err.status || 500); |
0da7d5b8 BA |
58 | if (app.get('env') === 'development') |
59 | console.log(err.stack); | |
866842c3 BA |
60 | res.send( |
61 | "<h1>" + err.message + "</h1>" + | |
0da7d5b8 | 62 | "<h2>" + err.status + "</h2>" |
866842c3 | 63 | ); |
625022fd BA |
64 | }); |
65 | ||
66 | module.exports = app; |