-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.js
144 lines (128 loc) · 3.77 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
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 session = require('express-session');
const passport = require('passport');
const flash = require('connect-flash');
const Raven = require('raven');
const enforce = require('express-sslify');
const mongoose = require('mongoose');
require('dotenv').config();
require('./app_server/models/db');
require('./app_server/config/passport');
const Service = mongoose.model('Service');
const index = require('./app_server/routes/index');
const services = require('./app_server/routes/services');
const app = express();
if (process.env.NODE_ENV === 'production') {
app.use(enforce.HTTPS({ trustProtoHeader: true }));
}
// Must configure Raven before doing anything else with it
Raven.config(process.env.DSN).install();
// view engine setup
app.set('views', path.join(__dirname, 'app_server', 'views'));
app.set('view engine', 'pug');
// uncomment after placing your favicon in /public
// app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')));
app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));
if (process.env.NODE_ENV === 'production') {
app.use(session({
secret: process.env.secret,
resave: true,
saveUninitialized: false,
proxy: true, // Need to set this for heroku because it uses reverse proxies
cookie: {
secure: true, // TODO: set this to true once the website uses https
httpOnly: true,
maxAge: 3600000, // One hour
},
})); // SECRET SHOULD BE STORED IN ENVIRONMENT VARIABLES
} else {
app.use(session({
secret: 'randomsecret',
resave: true,
saveUninitialized: false,
cookie: {
secure: false, // TODO: set this to true once the website uses https
httpOnly: true,
maxAge: 3600000, // One hour
},
})); // SECRET SHOULD BE STORED IN ENVIRONMENT VARIABLES
}
app.use((req, res, next) => {
res.locals.session = req.session;
next();
});
app.use(passport.initialize());
app.use(passport.session()); // persistent login sessions
app.use(flash());
/**
* Custom middleware
*
* Reference for middlware in express:
* http://expressjs.com/en/api.html#app.use
*/
/**
* Adds data to the views using res.locals
*
* Reference:
* http://expressjs.com/en/api.html#res
*/
app.use((req, res, next) => {
res.locals.messages = req.flash();
res.locals.user = req.user;
if (req.user && req.user.role === 'service_provider') {
Service.find({
_id: {
$in: req.user.service
}
}, (err, userServices) => {
if (err) console.log(err);
res.locals.services = userServices;
next();
});
} else if (req.user && req.user.role === 'admin') {
Service.find({}, (err, result) => {
if (err) console.log(err);
res.locals.services = result;
next();
});
} else {
next();
}
});
/** End custom middleware */
/**
* Use our routes defined in /routes/index.js
*
* Namespaced under '/'
*/
app.use('/', index);
app.use('/service', services);
// Send the errors to sentry
app.use(Raven.requestHandler());
app.use(Raven.errorHandler());
// catch 404 and forward to error handler
app.use((req, res, next) => {
const err = new Error('Not Found');
err.status = 404;
next(err);
});
// error handler
app.use((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 : {};
// render the error page
res.status(err.status || 500);
res.render('error');
next();
});
module.exports = app;