-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
77 lines (63 loc) · 2.29 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
const express = require('express');
const path = require('path');
const favicon = require('serve-favicon');
const logger = require('morgan');
const cookieParser = require('cookie-parser');
const bodyParser = require('body-parser');
const cors = require('cors');
const passport = require('passport');
const mongoose = require('mongoose');
/*
* This file is ignored for security. You have to create your own config file
* that contains secretKey and mongoUrl.
* Example: https://github.com/juanpa097/NodeJsCourse/blob/master/rest-resver-passport/config.js
*/
const config = require('./config/config');
const authenticate = require('./controllers/authController');
// Connects to database
mongoose.connect(config.mongoUrl, {useMongoClient: true});
const db = mongoose.connection;
db.on('error',console.error.bind(console, 'connection error:'));
db.once('open', () => { console.log("Connected correctly to database"); });
const index = require('./routes/index');
const users = require('./routes/users');
const ChatController = require('./controllers/chatController');
const app = express();
const http = require('http').Server(app);
const io = require('socket.io')(http);
app.io = io;
ChatController.iochat(app.io)
// uncomment after placing your favicon in /public
//app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')));
// parse body params and attache them to req.body
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')));
// Passport configuration
app.use(passport.initialize());
// enable CORS - Cross Origin Resource Sharing
app.use(cors());
// mount all routes on /api path
app.use('/api', index);
// catch 404 and forward to error handler
app.use(function(req, res, next) {
let err = new Error('Not Found');
err.status = 404;
next(err);
});
// error handler
app.use(function(err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get('env') === 'development' ? err : {};
// return error message.
res.status(err.status || 500);
res.json({
error: 'There has been an error in the server.',
errorMessage: err.message,
errorStatus: err.status
});
});
module.exports = app;