-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
182 lines (159 loc) · 5.38 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
if (process.env.NODE_ENV !== "production") {
console.log("DEVELOPMENT MODE ENABLED", process.env.NODE_ENV);
require('dotenv').config();
}
const express = require('express');
const path = require('path');
const mongoose = require('mongoose');
const session = require('express-session');
const MongoStore = require('connect-mongo');
const flash = require('connect-flash');
const ejsMate = require('ejs-mate');
const ExpressError = require('./utils/ExpressError');
const methodOverride = require('method-override');
const mongoSanitize = require('express-mongo-sanitize');
const helmet = require('helmet');
// These are different from passportLocalMongoose package
const passport = require('passport');
const LocalStrategy = require('passport-local');
const User = require('./models/user');
// Campground Routes
const campgroundsRoutes = require('./routes/campgrounds');
// Review Routes
const reviewsRoutes = require('./routes/review');
// Register Routes
const userRoutes = require('./routes/users');
const MongoDbUrl = process.env.MONGODB_URL;
async function main() {
await mongoose.connect(MongoDbUrl);
console.log('Mongo connection opened ✓');
}
main().catch(err => console.log("Mongo Error happened:", err));
const app = express();
const port = 3000;
app.listen(port, () => {
console.log('Express App is listening on port: ', port, '...');
});
app.engine('ejs', ejsMate);
app.set('view engine', 'ejs');
app.set('views', path.join(__dirname, 'views'));
app.use(express.urlencoded({ extended: true }));
app.use(methodOverride('_method'));
app.use(express.static(path.join(__dirname, 'public')));
// Removes "$gt:" like queries for security purposes
app.use(mongoSanitize());
const secret = process.env.SECRET || 'developmentsecret';
const store = MongoStore.create({
mongoUrl: MongoDbUrl,
touchAfter: 24 * 60 * 60,
crypto: {
secret
}
});
store.on('error', function (e) {
console.log('Store Error! ', e);
})
// Config objects & setting up session
const sessionConfig = {
store,
name: 'session',
secret,
resave: false,
saveUninitialized: true,
// We can have fancy options for our cookie like expiration date
cookie: {
// To Aviod Cross Side Scripting CSS, extra security
httpOnly: true,
// secure: true, // cookies can only be configured only over https
// Date.now() is in miliseconds
// One week is "1000 * 60 * 60 * 24 * 7" milliseconds
expires: Date.now() + 1000 * 60 * 60 * 24 * 7,
maxAge: 1000 * 60 * 60 * 24 * 7
}
}
// This should be before "passport.session()"
app.use(session(sessionConfig));
app.use(flash()); // Flash messages
const scriptSrcUrls = [
"https://stackpath.bootstrapcdn.com",
"https://api.tiles.mapbox.com",
"https://api.mapbox.com",
"https://kit.fontawesome.com",
"https://cdnjs.cloudflare.com",
"https://cdn.jsdelivr.net",
];
const styleSrcUrls = [
"https://kit-free.fontawesome.com",
"https://stackpath.bootstrapcdn.com",
"https://api.mapbox.com",
"https://api.tiles.mapbox.com",
"https://fonts.googleapis.com",
"https://use.fontawesome.com",
];
const connectSrcUrls = [
"https://api.mapbox.com",
"https://*.tiles.mapbox.com",
"https://events.mapbox.com",
];
const fontSrcUrls = [];
app.use(
helmet.contentSecurityPolicy({
directives: {
defaultSrc: [],
connectSrc: ["'self'", ...connectSrcUrls],
scriptSrc: ["'unsafe-inline'", "'self'", ...scriptSrcUrls],
styleSrc: ["'self'", "'unsafe-inline'", ...styleSrcUrls],
workerSrc: ["'self'", "blob:"],
childSrc: ["blob:"],
objectSrc: [],
imgSrc: [
"'self'",
"blob:",
"data:",
"https://res.cloudinary.com/dplejuooh/", //SHOULD MATCH YOUR CLOUDINARY ACCOUNT!
"https://images.unsplash.com",
],
fontSrc: ["'self'", ...fontSrcUrls],
},
})
);
// This is required to initialized the passport package
app.use(passport.initialize());
// We need this for a persistent login session
// This should come after "app.use(session(sessionConfig));"
app.use(passport.session());
passport.use(new LocalStrategy(User.authenticate()));
// How to store and un-store the user in the session
passport.serializeUser(User.serializeUser());
passport.deserializeUser(User.deserializeUser());
// Flash middleware, to give access to "locals.success" in our templates/views
app.use((req, res, next) => {
// Views will have access to user info everywhere
res.locals.currentUser = req.user;
res.locals.success = req.flash('success');
res.locals.error = req.flash('error');
res.locals.info = req.flash('info');
next();
})
app.get('/fakeUser', async (req, res) => {
const user = new User({ email: 'melo@gmail.com', username: 'melo' });
const newUser = await User.register(user, 'eagle');
res.send(newUser);
})
// ROUTES
app.use('/', userRoutes);
app.use('/campgrounds', campgroundsRoutes);
app.use('/campgrounds/:id/reviews', reviewsRoutes);
app.get('/', (req, res) => {
res.render('home');
});
app.all('*', (req, res, next) => {
next(new ExpressError('Page Not Found', 404));
})
app.use((err, req, res, next) => {
const { statusCode = 500 } = err;
if (!err.message) {
err.message = 'Something went wrong!'
}
res.status(statusCode).render('error', { err });
})