-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.js
61 lines (51 loc) · 1.86 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
var path = require("path"),
flash = require("connect-flash"),
express = require("express"),
app = express(),
mongoose = require("mongoose"),
request = require("request"),
passport = require("passport"),
LocalStrategy = require("passport-local"),
methodOverride = require("method-override"),
bodyParser = require("body-parser"),
Campground = require("./models/campground"),
Comment = require("./models/comment"),
User = require("./models/user"),
seedDB = require("./seeds");
// Requiring routes from other files.
var commentRoutes = require("./routes/comments"),
campgroundRoutes = require("./routes/campgrounds"),
indexRoutes = require("./routes/index");
mongoose.connect("mongodb://localhost:27017/yelp_camp_v", { useUnifiedTopology: true});
app.use(flash())
app.use(express.static("public"));
app.use(bodyParser.urlencoded({extended: true}));
app.set("view engine", "ejs");
app.use(express.static(__dirname + "/public"));
app.use(methodOverride("_method"))
app.use(require("express-session")({
secret: "this is a secret message!",
resave: false,
saveUninitialized: false
}))
app.use(passport.initialize())
app.use(passport.session())
passport.use(new LocalStrategy(User.authenticate()))
passport.serializeUser(User.serializeUser())
passport.deserializeUser(User.deserializeUser())
// Middleware to authenticate user on every page(ejs)
app.use(function(req, res, next){
res.locals.currentUser = req.user;
res.locals.error = req.flash("error");
res.locals.success = req.flash("success");
// Error and Success are just variables
next();
})
app.use("/", indexRoutes)
app.use("/campgrounds", campgroundRoutes)
app.use("/campgrounds/:id/comments", commentRoutes)
// We could use these also to shorten the urls of respective routes
// START THE LOCALHOST
app.listen(3500, function(){
console.log("Starting port 3500 - YelpCamp");
});