-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
138 lines (116 loc) · 4.11 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
const express=require("express");
const mongoose=require("mongoose");
const path=require('path');
const bp = require("body-parser");
const methodOverride=require("method-override");
const ejsMate=require('ejs-mate');
const catchAsync=require('./utils/catchAsync');
const Joi=require('joi');
//setting up ejs engine
const Campground=require('./models/campground');
const { campgroundSchema, reviewSchema } = require('./schemas.js')
const ExpressError=require('./utils/ExpressError');
const { join } = require("path");
const Review=require('./models/review')
mongoose.connect("mongodb://localhost:27017/camp-easy",{
useNewUrlParser:true,
useCreateIndex: true,
useUnifiedTopology:true
});
const db=mongoose.connection;
db.on("error", console.error.bind(console, "connection error:"));
db.once("open",()=>{
console.log("Database Connected");
});
const app=express();
app.engine('ejs',ejsMate);
app.use(bp.json());
app.use(bp.urlencoded({ extended: true }));
app.set("view engine", 'ejs');
app.set('views', path.join(__dirname, 'views'));
app.use(methodOverride('_method'));
const validateCampground = (req, res, next) => {
const { error } = campgroundSchema.validate(req.body);
if (error) {
const msg = error.details.map(el => el.message).join(',')
throw new ExpressError(msg, 400)
} else {
next();
}
};
const validateReview = (req, res, next) => {
const { error } = reviewSchema.validate(req.body);
if (error) {
const msg = error.details.map(el => el.message).join(',')
throw new ExpressError(msg, 400)
} else {
next();
}
};
app.get('/', (req,res)=>{
res.send("Hello From CampEasy");
})
//hard coded for checking
app.get('/makecampground',catchAsync(async(req,res)=>{
const camp=new Campground({title:"Test Campground", description:"Cheap Camping"});
await camp.save();
res.send(camp);
}));
//tested and works connected database, works successfully
app.get('/campgrounds/new',catchAsync( async(req,res)=> {
res.render('campgrounds/new');
}));
app.get('/campgrounds/:id/edit', catchAsync(async(req,res)=>{
const campground= await Campground.findById(req.params.id);
res.render('campgrounds/edit', {campground});
}));
app.get('/campgrounds/:id',catchAsync( async(req,res)=>{
const campground= await Campground.findById(req.params.id).populate('reviews');
console.log('Campground');
res.render('campgrounds/show', {campground});
}));
app.get('/campgrounds', catchAsync( async (req, res) => {
const campgrounds = await Campground.find({});
res.render('campgrounds/index', { campgrounds })
}));
app.get('/campgrounds/new', catchAsync(async()=>{
res.render('campgrounds/new');
}));
app.put('/campgrounds/:id',catchAsync( async (req, res) => {
const { id } = req.params;
const campground = await Campground.findByIdAndUpdate(id, { ...req.body.campground });
res.redirect(`/campgrounds/${campground._id}`)
}));
app.delete('/campgrounds/:id', catchAsync (async (req, res) => {
const { id } = req.params;
await Campground.findByIdAndDelete(id);
res.redirect(`/campgrounds/`)
}));
app.post('/campgrounds', validateCampground, catchAsync(async (req, res, next)=>{
// if (!req.body.campground) throw (new ExpressError('Invalid Campground', 400));
const campground = new Campground(req.body.campground);
await campground.save();
res.redirect(`/campgrounds/${campground._id}`)
}));
app.post('/campgrounds/:id/reviews', validateReview, catchAsync(async(req,res, next)=>{
const campground=await(Campground.findById(req.params.id));
const review=new Review(req.body.review);
campground.reviews.push(review);
await review.save();
await campground.save();
res.redirect(`/campgrounds/${campground._id}`);
}));
app.all('*', (req,res,next)=>{
next(new ExpressError('Page not Found', 404));
})
app.use((err, req, res, next)=>{
const {statusCode=500, message}=err;
if (!err.message)
{
err.message="Something Went Wrong";
}
res.status(statusCode).render('error',{err});
})
app.listen(3000, ()=> {
console.log("Serving on Port:3000");
})