-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.js
109 lines (95 loc) · 2.87 KB
/
app.js
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
/**
* @fileoverview Main app.
*/
'use strict'
const Firebase = require('firebase')
const bodyParser = require('body-parser')
const cookieParser = require('cookie-parser')
const express = require('express')
const ij = require('ij')
const logger = require('morgan')
const path = require('path')
const serveFavicon = require('serve-favicon')
const Controllers = require('./controllers')
const FirebaseClient = require('./firebase-client')
const ShortenerService = require('./shortener-service')
const config = require('./config')
const responses = require('./responses')
const app = express()
// Middleware setup
app.set('views', path.join(__dirname, 'views'))
app.set('view engine', 'jade')
// app.use(serveFavicon(`${__dirname}/public/favicon.ico`))
if (config.env != 'test') {
app.use(logger('dev'))
}
app.use(bodyParser.json())
app.use(bodyParser.urlencoded({extended: false}))
app.use(cookieParser())
app.use(express.static(path.join(__dirname, 'public')))
// Main handlers
app.route('/').get(getController('showHome'))
app.route('/').post(getController('shortenUrl'))
app.route('/:shortPath').get(getController('redirectShortPath'))
app.route('/:shortPath/stat').get(getController('statShortPath'))
// Catch 404 and forward to error handler
app.use((req, res, next) => {
const err = new Error('Not Found')
err.status = 404
next(err)
})
// Error handlers
// Development error handler - will print stacktrace
if (app.get('env') == 'development') {
app.use((err, req, res, next) => {
res.status(err.status || 500)
res.render('error', {
message: err.message,
error: err
})
})
}
// Production error handler - no stacktraces leaked to user
app.use((err, req, res, next) => {
res.status(err.status || 500)
res.render('error', {
message: err.message,
error: {}
})
})
/**
* @param {string} name
* @return {function(express.Request, express.Response)}
*/
function getController(name) {
return function expressHandler(req, res, next) {
// Setup injector
const registry = new ij.Registry()
.constant('config', config)
.constant('Promise', Promise)
.fn('firebase', (config) => new Firebase(config.firebaseUrl))
.ctor('db', FirebaseClient)
.fn('urlTable', (db) => db.child('urls'))
.ctor('controllers', Controllers)
.ctor('shortenerService', ShortenerService)
registry.build('controllers').then((controllers) => {
return controllers[name](req, res, next)
})
.then((result) => {
if (result instanceof responses.Response) {
return result.respond(res)
} else if (result) {
// Attempt to just send down an untyped result
console.error(`Received untyped response ${result}`)
res.send(result)
}
}, (err) => {
if (err instanceof responses.Response) {
return err.respond(res)
}
throw err
})
.catch(next)
}
}
module.exports = app