-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
114 lines (100 loc) · 2.61 KB
/
app.js
File metadata and controls
114 lines (100 loc) · 2.61 KB
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
const bodyParser = require('body-parser'),
methodOverride = require('method-override'),
expressSanitizer = require('express-sanitizer'),
mongoose = require('mongoose'),
express = require('express'),
app = express();
const port = process.env.PORT || 3000;
// APP CONFIG
mongoose.connect('mongodb://localhost/blog_app', { useNewUrlParser: true, useUnifiedTopology: true });
app.set('view engine', 'ejs');
app.use(express.static('public'));
app.use(bodyParser.urlencoded({ extended: true }));
app.use(expressSanitizer());
app.use(methodOverride('_method'));
// MONGOOSE/MODEL CONFIG
const blogSchema = mongoose.Schema({
title: String,
image: { type: String, default: 'defaultimg.jpg' },
body: String,
created: { type: Date, default: Date.now }
});
const Blog = mongoose.model('Blog', blogSchema);
// ------- ROUTES ------------
// INDEX ROUTE
app.get('/', (req, res) => {
res.redirect('/blogs');
})
app.get('/blogs', (req, res) => {
Blog.find({}, (err, blogs) => {
if (err) {
console.log("SOMETHING WENT WRONG!!!");
} else {
res.render('index', { blogs: blogs });
}
})
})
// NEW ROUTE
app.get('/blogs/new', (req, res) => {
res.render('new');
})
// CREATE ROUTE
app.post('/blogs', (req, res) => {
//sanitizing the code
req.body.blog.body = req.sanitize(req.body.blog.body);
//create a post
Blog.create(req.body.blog, (err, newBlog) => {
if (err) {
res.render('new');
} else {
// then redirect to index
res.redirect('/blogs');
}
})
})
// SHOW ROUTE
app.get('/blogs/:id', (req, res) => {
Blog.findById(req.params.id, (err, foundBlog) => {
if (err) {
res.redirect('/blogs')
} else {
res.render('show', { blog: foundBlog })
}
})
})
// EDIT ROUTES
app.get('/blogs/:id/edit', (req, res) => {
//redirect to edit page
Blog.findById(req.params.id, (err, foundBlog) => {
if (err) {
res.redirect('/blogs');
} else {
res.render('edit', { blog: foundBlog });
}
})
})
// UPDATE ROUTE
app.put('/blogs/:id', (req, res) => {
//sanitizing the code
req.body.blog.body = req.sanitize(req.body.blog.body);
//update the post
Blog.findByIdAndUpdate(req.params.id, req.body.blog, (err, updatedBlog) => {
if (err) {
res.redirect('edit');
} else {
res.redirect('/blogs/' + req.params.id);
}
})
})
// DELETE ROUTE
app.delete('/blogs/:id', (req, res) => {
Blog.findByIdAndDelete(req.params.id, err => {
if (err) {
res.redirect('/blogs')
} else {
res.redirect('/blogs')
}
})
})
// LISTENING TO PORT
app.listen(port, () => console.log(`server listening at https://localhost:${port}`));