app.js 2.25 KB
Newer Older
Rosanny Sihombing's avatar
Rosanny Sihombing committed
1
2
3
4
5
6
7
8
9
const express = require('express');
const http = require('http');
const path = require('path');
const passport = require('passport');
const morgan = require('morgan');
const cookieParser = require('cookie-parser');
const bodyParser = require('body-parser');
const session = require('express-session');
const errorhandler = require('errorhandler');
Rosanny Sihombing's avatar
Rosanny Sihombing committed
10
const flash = require('express-flash-2');
11
const fileUpload = require('express-fileupload');
Rosanny Sihombing's avatar
Rosanny Sihombing committed
12
13
const helmet = require('helmet');
const compression = require('compression');
14

15
const i18n = require('i18n'); // internationalization
16
17
18
19
i18n.configure({
  locales:['de', 'en'],
  directory: './locales'
});
Rosanny Sihombing's avatar
Rosanny Sihombing committed
20

Rosanny Sihombing's avatar
Rosanny Sihombing committed
21
var env = process.env.NODE_ENV || 'testing';
Rosanny Sihombing's avatar
Rosanny Sihombing committed
22
23
24
25
26
27
28
const config = require('./config/config')[env];

var app = express();

app.set('port', config.app.port);
app.set('views', __dirname + '/views');
app.set('view engine', 'pug');
29
30
31
32
33
34
35
36
37

// enable files upload
app.use(fileUpload({
  createParentPath: true,
  limits: { 
    fileSize: 1000000 // 1 MB max. file size
  }
}));

Rosanny Sihombing's avatar
Rosanny Sihombing committed
38
39
app.use(helmet());
app.use(compression());
Rosanny Sihombing's avatar
Rosanny Sihombing committed
40
41
42
43
44
app.use(morgan('combined'));
app.use(cookieParser());
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended: false}));
app.use(express.static(path.join(__dirname, 'public')));
45
46
47
48
49
50
app.use(i18n.init);
app.use((req, res, next) => {
  res.setLocale('de');
  next();
});

Rosanny Sihombing's avatar
Rosanny Sihombing committed
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
app.use(session(
  {
    resave: true,
    saveUninitialized: true,
    secret: 'thisisasecret'
  }
));
app.use(flash());
app.use(passport.initialize());
app.use(passport.session());

// caching disabled for every route
// NOTE: Works in Firefox and Opera. Does not work in Edge
app.use(function(req, res, next) {
  res.set('Cache-Control', 'no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0');
  next();
});

69
require('./routes/routes-account')(app, config, passport, i18n);
Rosanny Sihombing's avatar
Rosanny Sihombing committed
70
71
require('./routes/api')(app, config, passport);

Rosanny Sihombing's avatar
Rosanny Sihombing committed
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// Handle 404
app.use(function (req, res, next) {
  //res.status(404).send('404: Page not Found', 404)
  res.status(404).render('./DE/404')
})

// Handle 500 - any server error
app.use(function (err, req, res, next) {
  console.error(err.stack)
  res.status(500).render('./DE/500', {
    error: err
  })
})

Rosanny Sihombing's avatar
Rosanny Sihombing committed
86
87
app.listen(app.get('port'), function () {
  console.log('Express server listening on port ' + app.get('port'));
88
});