|
| 1 | +"use strict"; |
| 2 | + |
| 3 | +import express from 'express'; |
| 4 | +import path from 'path'; |
| 5 | +import favicon from 'serve-favicon'; |
| 6 | +import logger from 'morgan'; |
| 7 | +import cookieParser from 'cookie-parser'; |
| 8 | +import bodyParser from 'body-parser'; |
| 9 | + |
| 10 | +import { HttpError } from './models/http_error' |
| 11 | +import { index } from './routes/index'; |
| 12 | +import { users } from './routes/users'; |
| 13 | + |
| 14 | +export default class App { |
| 15 | + public app: express.Application; |
| 16 | + |
| 17 | + constructor() { |
| 18 | + this.app = express(); |
| 19 | + |
| 20 | + // uncomment after placing your favicon in /public |
| 21 | + //app.use(favicon(path.join(__dirname, 'public', 'favicon.ico'))); |
| 22 | + this.app.use(logger('dev')); |
| 23 | + this.app.use(bodyParser.json()); |
| 24 | + this.app.use(bodyParser.urlencoded({ extended: false })); |
| 25 | + this.app.use(cookieParser()); |
| 26 | + this.app.use(express.static(path.join(__dirname, 'public'))); |
| 27 | + |
| 28 | + this.app.use('/', index); |
| 29 | + this.app.use('/users', users); |
| 30 | + |
| 31 | + // catch 404 and forward to error handler |
| 32 | + this.app.use(function (req, res, next) { |
| 33 | + var err = new HttpError('Not Found', 404); |
| 34 | + next(err); |
| 35 | + }); |
| 36 | + |
| 37 | + // error handler |
| 38 | + this.app.use(function (err, req, res, next) { |
| 39 | + // set locals, only providing error in development |
| 40 | + res.locals.message = err.message; |
| 41 | + res.locals.error = req.app.get('env') === 'development' ? err : {}; |
| 42 | + |
| 43 | + // render the error page |
| 44 | + res.status(err.status || 500); |
| 45 | + res.sendFile('error.html', { |
| 46 | + root: (<any>global).appRoot + '/public/' |
| 47 | + }); |
| 48 | + }); |
| 49 | + } |
| 50 | +} |
0 commit comments