-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
142 lines (119 loc) · 3.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
//accessing .env file
if (process.env.NODE_ENV != "production") {
require("dotenv").config();
}
// console.log(process.env.SECRET)
const express = require("express");
const app = express();
const mongoose = require("mongoose");
// const Listing = require("./models/listing.js");
const path = require("path");
const methodOverride = require("method-override");
const ejsMate = require("ejs-mate"); // Requiring ejs-mate
// const wrapAsync = require("./utils/wrapAsync.js");
const ExpressError = require("./utils/ExpressError.js");
// const { listingSchema, reviewSchema } = require("./schema.js");
// const Review = require("./models/review.js");
const session = require("express-session");
const MongoStore = require("connect-mongo"); // connect-mongo
const flash = require("connect-flash");
//for authentication
const passport = require("passport");
const LocalStrategy = require("passport-local");
const User = require("./models/user.js");
const listingRouter = require("./routes/listing.js");
const reviewRouter = require("./routes/review.js");
const userRouter = require("./routes/user.js");
// const MONGO_URL = "mongodb://127.0.0.1:27017/wanderlust"; DB link for localhost
const dbUrl = process.env.ATLASDB_URL; //connecting to cloud db
main()
.then(() => {
console.log("connected to DB");
})
.catch((err) => {
console.log(err);
});
async function main() {
await mongoose.connect(dbUrl);
}
app.set("view engine", "ejs");
app.set("views", path.join(__dirname, "views"));
app.use(express.urlencoded({ extended: true }));
app.use(methodOverride("_method"));
app.engine("ejs", ejsMate);
app.use(express.static(path.join(__dirname, "public")));
const store = MongoStore.create({
mongoUrl: dbUrl,
crypto: {
secret: process.env.SECRET,
},
touchAfter: 24 * 3600,
});
store.on("error", ()=> {
console.log("ERROR in MONGO SESSION STORE", err);
})
const sessionOptions = {
store, //mongoStore related info going into session
secret: process.env.SECRET,
resave: false,
saveUninitialized: true,
cookie: {
expires: Date.now() + 7 * 24 * 60 * 60 * 1000, //Days-Hrs-mins-secs-ms
maxAge: 7 * 24 * 60 * 60 * 1000,
httpOnly: true,
},
};
// app.get("/", (req, res) => {
// res.send("Hi, I am root");
// });
app.use(session(sessionOptions));
app.use(flash());
//for authentication
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) => {
res.locals.success = req.flash("success");
res.locals.error = req.flash("error");
res.locals.currUser = req.user;
next();
});
// app.get("/demouser", async (req, res) => {
// let fakeUser = new User({
// email: "[email protected]",
// username: "delta-student"
// });
// let registeredUser = await User.register(fakeUser, "helloworld");
// res.send(registeredUser);
// })
app.use("/listings", listingRouter);
app.use("/listings/:id/reviews", reviewRouter);
app.use("/", userRouter);
//If req doesn't matched with any of the above route then '*' route will work
app.all("*", (req, res, next) => {
next(new ExpressError(404, "Page not found!"));
});
//Error Handling Middleware
app.use((err, req, res, next) => {
let { statusCode = 500, message = "Something went wrong!" } = err;
res.status(statusCode).render("error.ejs", { message });
// res.status(statusCode).send(message);
});
app.listen(8080, () => {
console.log("server is listening on port 8080");
});
// testing route
// app.get("/testListing", async (req, res)=>{
// let sampleListing = new Listing({
// title: "My New Villa",
// description: "By the beach",
// price: 1200,
// location: "Calangute, Goa",
// country: "India",
// })
// await sampleListing.save();
// console.log("sample was saved");
// res.send("successful testing")
// })