-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
74 lines (60 loc) · 2.71 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
const
express = require("express"),
app = express(),
bodyParser = require("body-parser"),
mongoose = require("mongoose"),
passport = require("passport"),
LocalStrategy = require("passport-local"),
methodOverride = require("method-override"),
seedDB = require("./seeds"),
flash = require("connect-flash"),
cloudinary = require('cloudinary'),
Post = require("./models/trips"),
Comment = require("./models/comment"),
User = require("./models/user"),
Tags = require("./models/tags");
// requiring routes
const
indexRoutes = require("./routes/index"),
commentRoutes = require("./routes/comments"),
triproutes = require("./routes/trips");
cloudinary.config({
cloud_name: 'civilizador',
api_key: '135275663643615',
api_secret: 'uXYt4Vscn4tyEHzKaJ83wgyMP8A'
});
// Connecting to DB yelpcamp
mongoose.connect("mongodb://civilizador:[email protected]:63918/camp");
// Moment.js config
app.locals.moment = require("moment");
// Passport configuration
app.use(require("express-session")({
secret: "when travel is in your dna",
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());
app.use(bodyParser.urlencoded({extended: true}));
app.use(bodyParser.json());
app.set("view engine", "ejs");
app.use(express.static(__dirname + "/public"));
// using method ovverride to be able to make put request
app.use(methodOverride("_method"));
// flash messages about errors or successfull login/register etc. SHOULD ALWAYS BE AFTER PASSPORT config
app.use(flash());
// Creating a function that will check if there is a username/i.e is user loged in or not.
app.use(function(req, res, next){
res.locals.currentUser = req.user;// req.user will either be empty or contain information about user from the request
res.locals.error = req.flash("error");
res.locals.success = req.flash("success");
next()
});
// shorting down route length by defining prefixes for coment campground and auth routes.
app.use("/", indexRoutes);
app.use("/index", triproutes);
app.use("/index/:id/comments", commentRoutes);
app.listen(process.env.PORT,process.env.IP,function(){console.log("Server had been started on port", process.env.PORT)});