-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
117 lines (105 loc) · 2.46 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
var express = require("express"),
app = express(),
methodOverride = require("method-override"),
bodyParser = require("body-parser"),
expressSanitizer = require("express-sanitizer"),
mongoose = require("mongoose")
app.use(bodyParser.urlencoded({extended: true}))
app.set('view engine', 'ejs')
app.use(express.static('public'))
app.use(methodOverride("_method"))
app.use(expressSanitizer())
// MONGOOSE
mongoose.connect('mongodb://localhost:27017/restful_blog', {
useNewUrlParser: true,
useUnifiedTopology: true
})
.then(function() {console.log('Connected to DB!')})
.catch(function(error) {console.log(error.message)});
var BlogSchema = new mongoose.Schema({
name: String,
image: String,
body: String,
created: {type: Date, default:Date.now}
})
var Blog = new mongoose.model("Blog", BlogSchema)
// ROUTES...
app.get('/', function(req, res) {
res.redirect('/blogs')
})
// INDEX
app.get('/blogs', function(req, res) {
Blog.find({}, function(err, blogs) {
if (err) {
console.log(err)
} else {
res.render('index', {blogs: blogs})
}
})
})
// NEW
app.get('/blogs/new', function(req, res) {
res.render('newBlog')
})
// CREATE
app.post('/blogs', function(req, res) {
var blog = req.body.blog
blog.body = req.sanitize(blog.body)
Blog.create(blog, function(err, blogs) {
if (err) {
console.log('Error creating blog!')
}
else {
res.redirect('/blogs')
}
})
})
// SHOW
app.get('/blogs/:id', function(req, res) {
//res.render('show', {id: id})
Blog.findById(req.params.id, function(err, blog) {
if (err) {
console.log(err)
} else {
res.render('show', {blog: blog})
}
})
//res.send("HERE YOU GO!")
})
// EDIT
app.get('/blogs/:id/edit', function(req, res) {
Blog.findById(req.params.id, function(err, blog) {
if (err) {
console.log(err)
} else {
blog.body = req.sanitize(blog.body)
res.render('edit', {blog: blog})
}
})
})
// UPDATE
app.put('/blogs/:id', function(req, res) {
//res.send("Update Route")
req.body.blog.body = req.sanitize(req.body.blog.body)
Blog.findByIdAndUpdate(req.params.id, req.body.blog, function(err, updatedBlog) {
if (err) {
console.log(err)
} else {
res.redirect('/blogs/'+req.params.id)
}
})
})
// DELETE
app.delete('/blogs/:id', function(req, res) {
Blog.findByIdAndDelete(req.params.id, function(err, deleted) {
if (err) {
console.log(err)
} else {
res.redirect('/blogs')
}
})
})
// LISTEN...
app.listen(process.env.PORT || 3000, function() {
console.log("Welcome to Shyamala's blog")
})