-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
154 lines (103 loc) · 3.13 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
var express = require("express");
var methodOverride = require("method-override");
var app = express();
var bodyParser = require("body-parser");
var mongoose = require("mongoose");
var expressSanitizer = require("express-sanitizer");
mongoose.set('useNewUrlParser', true);
mongoose.set('useUnifiedTopology', true);
app.use(methodOverride("_method"));
app.use(express.static("public"));
app.use(bodyParser.urlencoded({ extended: true }));
app.use(expressSanitizer());
app.set("view engine", "ejs");
mongoose.connect("mongodb://localhost/blogApp");
//Creating DB schema
var blogSchema = new mongoose.Schema({
title: String,
image: String,
body: String,
created: { type: Date, default: Date.now }
});
var Blog = mongoose.model("Blog", blogSchema);
//Creating DB
// Blog.create({
// title: "Tiger",
// image: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSzPUxK1cIux9AgqXR_bWKfcP_hLoaVmgOuV8PyLsOXXS3AH5foBQ&s",
// body: "The Great Dane is a German breed of domestic dog known for its giant size."
// });
// Home page ROUTE
app.get("/", function(req, res) {
res.redirect("/blogs");
});
// Route to display all blogs as well as Home page
app.get("/blogs", function(req, res) {
Blog.find({}, function(err, blogs) {
if (err) {
console.log(err);
} else {
res.render("index", { blogs: blogs });
}
});
});
// Route to get form to create new blog
app.get("/blogs/new", function(req, res) {
res.render("new");
});
// route for POST request to submit data from form
app.post("/blogs", function(req, res) {
req.body.blog.body = req.sanitize(req.body.blog.body);
// collect data from from
Blog.create(req.body.blog, function(err, newBlog) {
if (err) {
console.log("ERRROORRR!!");
} else {
res.redirect("/blogs");
}
});
});
// Creating route to SHOW particular blog with ID
app.get("/blogs/:id", function(req, res) {
// res.render("show");
Blog.findById(req.params.id, function(err, blog) {
if (err) {
console.log(err);
} else {
res.render("show", { blog: blog });
}
});
});
// Creating route to edit blog and update
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 });
}
});
});
// Updating Route
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);
}
});
});
// Delete Route
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(3000, function() {
console.log("Blog server is running");
});