-
Notifications
You must be signed in to change notification settings - Fork 3
/
server.js
104 lines (83 loc) · 3.09 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
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
// require necessary NPM packages
const express = require('express')
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')
// require middleware
const errorHandler = require('./lib/error_handler')
const replaceToken = require('./lib/replace_token')
const requestLogger = require('./lib/request_logger')
// 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')
// define server and client ports
// used for cors and local port declaration
const serverDevPort = 4741
const clientDevPort = 7165
// establish database connection
// use new version of URL parser
// use createIndex instead of deprecated ensureIndex
// use unifiedTopology to avoid deprecation warning
mongoose.connect(db, {
useNewUrlParser: true,
useCreateIndex: true,
useUnifiedTopology: 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:${clientDevPort}` }))
// define port for API to run on
const port = process.env.PORT || serverDevPort
// 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(replaceToken)
// register passport authentication middleware
app.use(auth)
// add `express.json` 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(express.json())
// this parses requests sent by `$.ajax`, which use a different content type
app.use(express.urlencoded({ extended: true }))
// log each request as it comes in for debugging
app.use(requestLogger)
// register route files
app.use(exampleRoutes)
app.use(userRoutes)
// 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)
// set up the socket.io stuff
// followed tutorial on this website for initial setup
// https://www.valentinog.com/blog/socket-react/
const http = require('http').createServer(app)
const io = require('socket.io')(http, {
cors: {
origin: process.env.CLIENT_ORIGIN || `http://localhost:${clientDevPort}`,
methods: ["GET", 'POST'],
credentials: true
}
})
io.on('connection', socket => {
// console.log('New client connected')
socket.on('chat message', msg => {
io.emit('chat message', msg)
})
// socket.on('disconnect', () => {
// console.log('Client disconnected')
// })
})
// run API on designated port (4741 in this case)
http.listen(port, () => {
console.log('listening on port ' + port)
})
// needed for testing
module.exports = app