-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
71 lines (55 loc) · 1.67 KB
/
server.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
const express = require('express');
const path = require('path');
const cookieSession = require('cookie-session');
const createError = require('http-errors');
const bodyParser = require('body-parser');
const FeedbackService = require('./services/FeedbackService');
const SpeakersService = require('./services/SpeakerService');
const feedbackService = new FeedbackService('./data/feedback.json');
const speakersService = new SpeakersService('./data/speakers.json');
const routes = require('./routes');
const app = express();
app.set('trust proxy', 1); //trust cookeis that pass through your reverse proxy
app.use(
cookieSession({
name: 'session',
keys: ['mI£$%£^987%L', 'B-M<)P^U%YT£A!@'],
})
);
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
app.set('view engine', 'ejs');
app.set('views', path.join(__dirname, './views'));
app.locals.siteName = 'ROUX Meetups';
app.use(express.static(path.join(__dirname, './static')));
app.use(async (req, res, next) => {
try {
const names = await speakersService.getNames();
res.locals.speakerNames = names;
return next();
} catch (error) {
return next(error);
}
});
app.use(
'/',
routes({
feedbackService,
speakersService, /// speakerService:speakerService
})
);
app.use((req, res, next) => {
return next(createError(404, 'file not found'));
});
app.use((err, req, res, next) => {
res.locals.message = err.message;
console.error(err);
const status = err.status || 500;
res.locals.status = status;
res.status(status);
res.render('error');
});
const PORT = process.env.PORT || 3000;
app.listen(PORT, () => {
console.log(`app is running on port ${PORT}`);
});