-
Notifications
You must be signed in to change notification settings - Fork 1
/
server.js
executable file
·77 lines (62 loc) · 2.45 KB
/
server.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
// require necessary NPM packages
const express = require('express')
const bodyParser = require('body-parser')
const mongoose = require('mongoose')
const cors = require('cors')
// require route files
const exampleRoutes = require('./app/routes/example_routes')
const userRoutes = require('./app/routes/user_routes')
const bucketRoutes = require('./app/routes/bucket_routes')
// require error handling middleware
const errorHandler = require('./lib/error_handler')
// require database configuration logic
// `db` will be the actual Mongo URI as a string
const db = require('./config/db')
// require configured passport authentication middleware
const auth = require('./lib/auth')
// establish database connection
mongoose.Promise = global.Promise
mongoose.connect(db, {
useMongoClient: true
})
// instantiate express application object
const app = express()
// set CORS headers on response from this API using the `cors` NPM package
// `CLIENT_ORIGIN` is an environment variable that will be set on Heroku
app.use(cors({ origin: process.env.CLIENT_ORIGIN || 'http://localhost:4741' }))
// define port for API to run on
const port = process.env.PORT || 7165
// this middleware makes it so the client can use the Rails convention
// of `Authorization: Token token=<token>` OR the Express convention of
// `Authorization: Bearer <token>`
app.use((req, res, next) => {
if (req.headers.authorization) {
const auth = req.headers.authorization
// if we find the Rails pattern in the header, replace it with the Express
// one before `passport` gets a look at the headers
req.headers.authorization = auth.replace('Token token=', 'Bearer ')
}
next()
})
// register passport authentication middleware
app.use(auth)
// add `bodyParser` middleware which will parse JSON requests into
// JS objects before they reach the route files.
// The method `.use` sets up middleware for the Express application
app.use(bodyParser.json())
// this parses requests sent by `$.ajax`, which use a different content type
app.use(bodyParser.urlencoded({ extended: true }))
// register route files
app.use(exampleRoutes)
app.use(userRoutes)
app.use(bucketRoutes)
// register error handling middleware
// note that this comes after the route middlewares, because it needs to be
// passed any error messages from them
app.use(errorHandler)
// run API on designated port (7165 in this case)
app.listen(port, () => {
console.log('listening on port ' + port)
})
// needed for testing
module.exports = app