-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
102 lines (84 loc) · 2.21 KB
/
server.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
const express = require('express')
const mongoose = require('mongoose')
const app = express()
mongoose.connect("mongodb://localhost/MyBlog")
app.set('view engine', 'ejs')
app.use(express.static(__dirname + "/public"))
app.use(express.urlencoded({ extended: true }))
app.use(express.json())
let myBlogSchema = mongoose.Schema({
title: String,
image: String, //url
body: String,
created: {
type: Date,
default: Date.now
}//defauly date is set
})
let Blog = mongoose.model("Blog", myBlogSchema);
//REST ROUTES
app.get('/', (req, res) => {
res.redirect('/blogs')
})
app.get('/blogs', (req, res) => {
Blog.find({}, (err, blogs) => {
if (err)
throw err
else {
res.render('index', {
blogs: blogs
})
}
})
})
app.get('/blogs/new', (req, res) => {
res.render('new')
})
app.post('/blogs', (req, res) => {
Blog.create(req.body.blog, (err) => {
if (err)
res.redirect('new')
else
res.redirect('/blogs')
})
})
app.get("/blogs/:id", function (req, res) {
Blog.findById(req.params.id, function (err, foundBlog) {
if (err) {
res.redirect("/");
} else {
res.render("show", { blog: foundBlog });
}
});
});
app.get("/blogs/:id/edit", function (req, res) {
Blog.findById(req.params.id, function (err, foundBlog) {
if (err) {
res.redirect("/");
} else {
res.render("edit", { blog: foundBlog });
}
});
});
app.put("/blogs/:id", function (req, res) {
req.body.blog.body = req.sanitize(req.body.blog.body);
Blog.findByIdAndUpdate(req.params.id, req.body.blog, function (err, updatedBlog) {
if (err) {
res.redirect("/");
} else {
res.redirect("/blogs/" + req.params.id);
}
})//id, newdata, callback
});
app.delete("/blogs/:id", function (req, res) {
Blog.findByIdAndRemove(req.params.id, function (err) {
if (err) {
res.redirect("/blogs");
} else {
res.redirect("/blogs");
}
})
})
app.listen(6543, () => {
console.log("running on http://localhost:6543")
})