-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
82 lines (67 loc) · 2.58 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
const express = require('express');
const session = require('express-session');
const mongoose = require('mongoose');
const MongoStore = require('connect-mongo')(session);
const path = require('path');
const cors = require('cors');
const bodyParser = require('body-parser');
const passport = require('passport');
const jwtStrategy = require('./handlers/passport');
const flash = require('connect-flash');
const expressValidator = require('express-validator');
const routes = require('./routes/main');
const helpers = require('./helpers');
const errorHandlers = require('./handlers/error-handlers');
// create Express APP
const app = express();
// view engine setup
// bunch of 'app.set' in here to refer to pug files on views folder
// Serves up static files from the public folder.
// Anything in public will be served up to the file it is.
app.use(express.static(path.join(__dirname, 'public')));
// Takes the raw requests and turns them into usable properties on req.body
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
app.use(cors()); // for CORS
// Exposes methods for validating data.
app.use(expressValidator());
// Sessions allow storing data on visitors from request to request
// This keeps users logged in and allows sending flash messages.
app.use(session({
secret: process.env.SECRET,
key: process.env.KEY,
resave: false,
saveUninitialized: false,
// this might need MODS
store: new MongoStore({ mongooseConnection: mongoose.connection }),
}));
// Passport JS will be used to handle user logins
app.use(passport.initialize());
// app.use(passport.session()); // may need to be omitted
passport.use(jwtStrategy);
// Flash middleware enables usage of req.flash('error', 'SHIT!'), which will then
// pass that message to the next page the user requests.
app.use(flash());
// Pass variables to templates + all requests
app.use((req, res, next) => {
res.locals.h = helpers;
res.locals.flashes = req.flash();
res.locals.user = req.user || null;
res.locals.currentPath = req.path;
next();
});
// Handle own routes now
app.use('/', routes);
// If routes dont work, send 404 and forward to error handler
app.use(errorHandlers.notFound);
// One of the error handlers will see if these errors are just validation errors.
app.use(errorHandlers.flashValidationErrors);
// Otherwise this was a bad error
if(app.get('env') === 'development') {
// development error handler - print stack trace
app.use(errorHandlers.developmentErrors);
}
// production errorhandler
app.use(errorHandlers.productionErrors);
// export it
module.exports = app;