-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
88 lines (78 loc) · 2.56 KB
/
index.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
const express = require('express')
const path = require('path')
const ejsMate = require('ejs-mate')
const override = require('method-override')
const Campground = require('./models/campground')
const mongoose = require('mongoose')
mongoose.connect('mongodb://localhost:27017/yelp-camp', {
useNewUrlParser: 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.set('view engine', 'ejs')
app.set('views', path.join(__dirname, 'views'))
app.use(express.urlencoded({ extended: true }))
app.use(override('_method'))
// =====================
// LANDING PAGE ROUTE
// =====================
app.get('/', (req, res) => {
res.render('home')
})
// =====================
// INDEX ROUTE
// =====================
app.get('/campgrounds', async (req, res) => {
const campgrounds = await Campground.find({})
res.render('campgrounds/index', { title: 'YelpCamp | Campgrounds', campgrounds })
})
// =====================
// CREATE ROUTE
// =====================
app.get('/campgrounds/new', (req, res) => {
res.render('campgrounds/new', { title: 'YelpCamp | New Campground' })
})
app.post('/campgrounds', async (req, res) => {
const campground = new Campground(req.body.campground)
await campground.save()
res.redirect(`/campgrounds/${campground._id}`)
})
// =====================
// DETAILS ROUTE
// =====================
app.get('/campgrounds/:id', async (req, res) => {
const { id } = req.params
const campground = await Campground.findById(id)
res.render('campgrounds/details', { title: `YelpCamp | ${campground.title}`, campground })
})
// =====================
// EDIT ROUTE
// =====================
app.get('/campgrounds/:id/edit', async (req, res) => {
const { id } = req.params
const campground = await Campground.findById(id)
res.render('campgrounds/edit', { title: `YelpCamp | Edit ${campground.title}`, campground })
})
app.put('/campgrounds/:id', async (req, res) => {
const { id } = req.params
const campground = await Campground.findByIdAndUpdate(id, { ...req.body.campground })
res.redirect(`/campgrounds/${campground._id}`)
})
// =====================
// EDIT ROUTE
// =====================
app.delete('/campgrounds/:id', async (req, res) => {
const { id } = req.params
const campground = await Campground.findByIdAndDelete(id)
res.redirect('/campgrounds')
})
/////////// Server Start
app.listen(3000, () => {
console.log('Server running at port 3000.');
})