-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
169 lines (152 loc) · 4.89 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
// requiring .env file incase at development
if (process.env.NODE_ENV !== 'production') {
require('dotenv').config();
}
// import packages
const express = require("express");
const path = require("path");
const ejsMate = require("ejs-mate");
const session = require("express-session");
const methodOverride = require("method-override");
const mongoose = require("mongoose");
const flash = require("connect-flash");
const passport = require("passport");
const LocalStrategy = require("passport-local");
const User = require("./models/user");
const helmet = require('helmet');
// import custom error class
const ExpressError = require("./utilities/ExpressError");
// import routes
const campgroundRoutes = require("./Routes/campgrounds");
const reviewRoutes = require("./Routes/reviews");
const userRoutes = require("./Routes/users");
// import express-mongo-sanitize
const mongoSanitize = require("express-mongo-sanitize");
// connect to mongoose
mongoose
.connect("mongodb://localhost:27017/yelp-camp")
.then(() => {
console.log("CONNECTED TO MONGO!");
})
.catch((err) => {
console.log("COULDN'T CONNECT TO MONGO! ERROR!!");
console.log(err);
});
// run express and configure
const app = express();
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")));
// mongo sanitize config
app.use(
mongoSanitize({
replaceWith: "_",
})
);
// using helmet and config content security policy
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",
"https://api.mapbox.com/mapbox-gl-js/v2.6.1/mapbox-gl.js",
];
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",
"https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css",
"https://api.mapbox.com/mapbox-gl-js/v2.6.1/mapbox-gl.css",
];
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/aniketpathak/", //SHOULD MATCH YOUR CLOUDINARY ACCOUNT!
"https://images.unsplash.com",
],
fontSrc: ["'self'", ...fontSrcUrls],
},
})
);
// express-session
const sessionConfig = {
name: "session",
secret: "yelpcamp",
resave: false,
saveUninitialized: true,
cookie: {
httpOnly: true,
// secure: true,
expires: Date.now() + 1000 * 60 * 60 * 24 * 7,
maxAge: 1000 * 60 * 60 * 24 * 7,
},
};
app.use(session(sessionConfig));
// middlewares for passport
app.use(passport.initialize()); // initializes passport in the app
app.use(passport.session()); //always use it after using sessions in the app
passport.use(new LocalStrategy(User.authenticate()));
passport.serializeUser(User.serializeUser()); // for serializing in session (ie. adding to the session)
passport.deserializeUser(User.deserializeUser()); // for deserializing from session
// flash
app.use(flash());
// flash middleware to make messages locally available to views for rendering
app.use((req, res, next) => {
if (!['/login', '/'].includes(req.originalUrl)) {
req.session.redirectTo = req.originalUrl;
}
res.locals.currentUser = req.user; // making currentUser available to all templates
res.locals.success = req.flash("success");
res.locals.error = req.flash("error");
next();
});
// routes
app.get("/", (req, res) => {
res.render("home");
});
app.use("/campgrounds", campgroundRoutes);
app.use("/campgrounds/:id/reviews", reviewRoutes);
app.use("/", userRoutes);
// if no routes are matched, the req lands here
app.all("*", (req, res, next) => {
next(new ExpressError("Page Not Found", 404));
});
// Error handling middleware function - Catches all the errors thrown anywhere in the app
app.use((err, req, res, next) => {
const { statusCode = 500 } = err; // setting a default status code
if (!err.message) err.message = "Something Went Wrong!"; // setting a default error message
res.status(statusCode).render("error", { err }); // render the error template with the status code and err message
});
// start server
app.listen(3000, () => {
console.log("Serving on port 3000");
});