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

var env = process.env.NODE_ENV || 'development'
const config = require('./config/config')[env]

var app = express()

app.set('port', config.app.port)
app.set('views', __dirname + '/views')
18
app.set('view engine', 'pug')  
Rosanny Sihombing's avatar
Rosanny Sihombing committed
19
20
21
22
23
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')))
24

Rosanny Sihombing's avatar
Rosanny Sihombing committed
25
26
27
28
29
30
31
32
app.use(session(
    {
        resave: true,
        saveUninitialized: true,
        secret: 'thisisasecret-thisisasecret-thisisasecret'
    }
))

33
34
35
app.use(passport.initialize())
app.use(passport.session())

Rosanny Sihombing's avatar
Rosanny Sihombing committed
36
37
38
39
40
41
app.use(flash())
app.use((req, res, next) => {
    res.locals.errors = req.flash("error")
    res.locals.successes = req.flash("success")
    next()
})
42
43
44
45
46
47
48
// enable files upload
app.use(fileUpload({
    createParentPath: true,
    limits: { 
      fileSize: 1000000 // 1 MB max. file size
    }
}))
Rosanny Sihombing's avatar
Rosanny Sihombing committed
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
  
// 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()
})
  
//require('./routes/routes-account')(app, config, passport, i18n);
require('./routes/routes-project')(app, config, passport)
  
// 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
    })
})
  
app.listen(app.get('port'), function () {
    console.log('Project Page listening on port ' + app.get('port'))
    console.log(__dirname)
})