-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
214 lines (185 loc) · 6.24 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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
if (process.env.NODE_ENV != "production{") {
require("dotenv").config();
}
const express = require("express"); // v
const path = require("path"); // v
const mongoose = require("mongoose"); // v
const ejsMate = require("ejs-mate"); // v
const session = require("express-session"); // v
const ExpressError = require("./utilities/ExpressError");
const flash = require("connect-flash"); // v
const methodOverride = require("method-override"); // override http verb // v
const passport = require("passport");
const LocalStrategy = require("passport-local");
const User = require("./models/user");
const helmet = require("helmet");
const mongoSanitize = require("express-mongo-sanitize");
// requiring our router
const campgroundsRoutes = require("./routes/campgrounds");
const reviewsRoutes = require("./routes/reviews");
const userRoutes = require("./routes/users");
const MongoDBStore = require("connect-mongo");
const dbUrl = process.env.DB_URL || "mongodb://localhost:27017/yelp-camp";
//
// console.log( );
// process.env.DB_URL ||
// 'mongodb://localhost:27017/yelp-camp';
// connecting mongoose
mongoose.connect(dbUrl, {
useNewUrlParser: true,
useCreateIndex: true,
useUnifiedTopology: true,
useFindAndModify: false,
});
const db = mongoose.connection;
db.on("error", console.error.bind(console, "connection error :")); // testing db connected or not
db.once("open", () => {
console.log("---------------DataBase Connected -------------- ");
});
const app = express();
// middle-ware
app.engine("ejs", ejsMate); // tell express instead of default one use this one
app.set("view engine", "ejs"); // changing view engine to ejs
app.set("views", path.join(__dirname, "views")); // to void conflict if we call it from some other dir (mean views dir available from every where )
app.use(express.urlencoded({ extended: true }));
app.use(methodOverride("_method"));
app.use(express.static(path.join(__dirname, "public")));
app.use(
mongoSanitize({
replaceWith: "_",
})
);
const secret = process.env.SECRET || "thisshouldbeabettersecret!";
const store = new MongoDBStore({
mongoUrl: dbUrl,
secret,
touchAfter: 24 * 60 * 60,
});
store.on("error", function (e) {
console.log(
"-----------------------SESSION STORE ERROR...............................",
e
);
});
const sessionConfig = {
secret,
store,
// store: MongoStore.create({
// mongoUrl: dbUrl ,
// touchAfter:24*3600,
// secret,
// }),
name: "session",
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));
app.use(flash());
app.use(helmet());
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://use.fontawesome.com/",
];
const styleSrcUrls = [
"https://kit-free.fontawesome.com",
"https://stackpath.bootstrapcdn.com",
"https://api.mapbox.com",
"https://api.tiles.mapbox.com",
"https://fonts.googleapis.com/css2",
"https://use.fontawesome.com",
"https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css",
"https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css",
"https://use.fontawesome.com/",
];
const connectSrcUrls = [
"https://fonts.gstatic.com",
"https://api.mapbox.com",
"https://*.tiles.mapbox.com",
"https://events.mapbox.com",
];
const fontSrcUrls = [
"https://fonts.googleapis.com",
"https://fonts.googleapis.com/css2",
"https://use.fontawesome.com/releases/v5.15.3/webfonts/",
"https://fonts.gstatic.com/s/roboto/v30/",
];
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/abhi97/", //SHOULD MATCH YOUR CLOUDINARY ACCOUNT!
"https://images.unsplash.com",
"https://unsplash.com/photos",
],
fontSrc: ["'self'", ...fontSrcUrls],
},
})
);
// this to be before passport.session
app.use(passport.initialize());
app.use(passport.session());
passport.use(new LocalStrategy(User.authenticate()));
passport.serializeUser(User.serializeUser());
passport.deserializeUser(User.deserializeUser());
app.use((req, res, next) => {
console.log("Session Details ............... ");
console.log(req.user);
console.log(req.body);
res.locals.currentUser = req.user;
res.locals.success = req.flash("success");
res.locals.error = req.flash("error");
res.locals.reviewflash = req.flash("reviewflash");
next();
});
// prefixing our path
app.use("/", userRoutes);
app.use("/campgrounds", campgroundsRoutes);
app.use("/campgrounds/:id/reviews", reviewsRoutes); // by default we donot have access to id in our reviews model so we need mergeprams so we pass new arguement
// mergePrams in router to get id as well in reviews router
app.get("/", (req, res) => {
res.render("home");
});
app.all("*", (req, res, next) => {
// for any path this will run (mean for any type request will run if above will not return )
// res.send('404 !!!! ')
next(new ExpressError("Page Not Found ", 404));
});
//defining our error if something went wrong
app.use((err, req, res, next) => {
const { statusCode = 500 } = err; // eefault code and default message
// res.status(statusCode).send(message+" ***** Error Thrown *****");
// res.send('Ohhh Boy Something Went Wrong!!! ');
// we can also decide on the basis of error what to show
if (!err.message) {
err.statusCode = 500;
err.message = "Something Went Wrong Please again try later";
}
// we are editing our message what ever coming as message
// because user not intrested in understanding error
res.status(statusCode).render("error", { err }); // passing entire error to templet
});
const port = process.env.PORT || 8000;
app.listen(port, () => {
console.log(`Serving on port ${port}`);
});