-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
159 lines (107 loc) · 3.18 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
155
156
157
158
159
//===INITIALIZING SETUPS===//
var express = require("express");
app = express();
mongoose = require("mongoose");
var bodyParser = require("body-parser");
mongoose.connect("mongodb://localhost/restful_blog_app");
methodOverride = require("method-override");
expressSanitizer = require("express-sanitizer");
app.set("view engine", "ejs");
app.use(express.static("public"));
app.use(bodyParser.urlencoded({ extended: true }));
app.use(expressSanitizer());
app.use(methodOverride("_method"));
//sending static html files
// app.use(express.static(path.join(__dirname, "public")));
// var path = require("path");
//===MONGOOSE MODEL CONFIGURATIONS===//
var blogSchema = new mongoose.Schema({
title: String,
image: String,
body: String,
created: { type: Date, default: Date.now }
});
var Blog = mongoose.
model("Blog", blogSchema);
//creating a blog
// Blog.create({
// title: "dog",
// image: "https://images.unsplash.com/photo-1518155317743-a8ff43ea6a5f?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80",
// body: "HELLO THIS IS A BLOG POST"
// });
//===RESTFUL ROUTES===//
app.get("/", function(req, res) {
res.redirect("/blogs");
});
app.get("/blogs", function(req, res) {
Blog.find({}, function(err, blogs) {
if (err) {
console.log(err);
} else {
res.render("index", { blogs: blogs });
}
});
});
app.get("/blogs/new", function(req, res) {
res.render("new");
});
///////////////////////////////////////////////////////////////////////changes
app.post("/blogs", function(req, res) {
//create blog
// console.log(req.body);
req.body.blog.body = req.sanitize(req.body.blog.body);
// console.log("===============================");
Blog.create(req.body.blog, function(err, newBlog) {
if (err) {
res.render("new");
} else {
//then redirect to blogs
res.redirect("/blogs");
}
})
});
// show route
app.get("/blogs/:id", function(req, res) {
Blog.findById(req.params.id, function(err, foundBlog) {
if (err) {
res.redirect("/blogs");
} else {
res.render("show", { blog: foundBlog });
}
})
});
//edit route
app.get("/blogs/:id/edit", function(req, res) {
Blog.findById(req.params.id, function(err, foundBlog) {
if (err) {
res.redirect("/blogs");
} else {
res.render("edit", { blog: foundBlog });
}
});
});
app.put("/blogs/:id/", function(req, res) {
Blog.findByIdAndUpdate(req.params.id, req.body.blog, function(err, updatedBlog) {
if (err) {
re.redirect("/blogs");
} 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.get("/MyPortfoilo/index.html", function(req, res) {
// res.sendFile(path.join(__dirname, "public", "index.html"));
// });
app.listen(9000, function(req, res) {
console.log("i am on");
});