-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
executable file
·96 lines (80 loc) · 2.78 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
const express = require('express');
const path = require('path');
const exphbs = require('express-handlebars');
const flash = require('connect-flash');
const session = require('express-session');
const bodyParser = require('body-parser');
const passport = require('passport');
const mongoose = require('mongoose');
//const methodOverride = require('method-override');
// Load Express application
const app = express();
// Load routes
const index = require('./routes/index');
const users = require('./routes/users');
const costsOther = require('./routes/costsOther');
const costsMonthly = require('./routes/costsMonthly');
const themes = require('./routes/themes');
const initialize = require('./routes/initialize');
// Passport Config
require('./config/passport')(passport);
// Map global promise - get rid of warning - Using global promise instead of mongoose promise which is deprecated
mongoose.Promise = global.Promise;
// Connect to mongoose
mongoose.connect("mongodb+srv://ayodlo:[email protected]/surplus_db?retryWrites=true&w=majority", { useNewUrlParser: true })
.then(() => {
console.log('Connected to database!')
})
.catch((error) => {
console.log(error);
});
// Handlebars Middleware
app.engine('handlebars', exphbs({
defaultLayout: 'main'
}));
app.set('view engine', 'handlebars');
// Body parser middleware
app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());
// Static folder
app.use(express.static(path.join(__dirname, 'public')));
// Method override middleware
/*
In order to use this we have to add the ?_method=DELETE to the form and also need to add a hidden input value declaring the type of request.
<form method="POST" action="/resource?_method=DELETE">
<input type="hidden" name="_method" value="DELETE">
<button type="submit">Delete Resource</button>
</form>
*/
//app.use(methodOverride('_method'));
// Express session midleware
app.use(session({
secret: 'secret',
resave: true,
saveUninitialized: true
}));
// Passport middleware
app.use(passport.initialize());
app.use(passport.session());
// Flash Middleware
app.use(flash());
// Global variables
app.use(function(req, res, next){
res.locals.theme = '';
res.locals.success_msg = req.flash('success_msg');
res.locals.error_msg = req.flash('error_msg');
res.locals.error = req.flash('error');
res.locals.user = req.user || null;
next();
});
// Get Surplus Route
app.use('/', index)
app.use('/themes', themes);
app.use('/users', users);
app.use('/costsOther', costsOther);
app.use('/costsMonthly', costsMonthly);
app.use('/initialize', initialize);
const port = process.env.PORT || 5000;
app.listen(port, () =>{
console.log(`Server started on port ${port}`);
});