-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
83 lines (62 loc) · 2.02 KB
/
app.js
File metadata and controls
83 lines (62 loc) · 2.02 KB
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
#!/usr/bin/nodejs
// INITIALIZATION STUFF
const express = require('express');
const app = express();
const hbs = require('hbs')
const path = require('path');
const mongoose = require('mongoose');
const passport = require('passport');
const flash = require('connect-flash');
const session = require('express-session');
//-----------------------------------------------------------oAuth work---------------------//
require('./config/passport')(passport);
const db = require('./config/keys').authURI;
// Connect to MongoDB
mongoose
.connect(
db,
{ useNewUrlParser: true, useUnifiedTopology: true }
)
.then(() => console.log('MongoDB Connected'))
.catch(err => console.log(err));
// Express body parser
app.use(express.urlencoded({ extended: true }));
// Express session
app.use(
session({
secret: 'secret',
resave: true,
saveUninitialized: true
})
);
// Passport middleware
app.use(passport.initialize());
app.use(passport.session());
// Connect flash
app.use(flash());
// Global variables
app.use(function(req, res, next) {
res.locals.success_msg = req.flash('success_msg');
res.locals.error_msg = req.flash('error_msg');
res.locals.error = req.flash('error');
next();
});
//-----------------------------------------------------------oAuth work---------------------//
app.use(express.static('public'));
app.use(express.static('files'));
app.set('view engine', 'hbs');
hbs.registerPartials(__dirname + '/views/partials')
// -------------- express initialization -------------- //
// PORT SETUP - NUMBER SPECIFIC TO THIS SYSTEM
app.set('port', process.env.PORT || 8080);
let routes = require('./routes');
routes.set(app);
const { ensureAuthenticated } = require('./config/auth');
app.get('*', ensureAuthenticated, function(req, res) {
res.status(404).render('notfound');
});
// -------------- listener -------------- //
// // The listener is what keeps node 'alive.'
let listener = app.listen(app.get('port'), () => {
console.log('Express server started on port: ' + listener.address().port);
});