-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
129 lines (114 loc) · 2.84 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
// Constant Declaration
const express = require("express");
const mongoose = require("mongoose");
const bodyParser = require("body-parser");
const methodOverride = require("method-override");
const expressSanitizer = require("express-sanitizer");
//Initialization
const app = express();
app.use(express.static("public"));
app.set("view engine", "ejs");
app.use(bodyParser.urlencoded({
extended: true
}));
app.use(expressSanitizer()); //Important to place it after the body-parser use statement
app.use(methodOverride("_method"));
// DB CONNECTION SETUP
var DATABASE_URL = process.env.MONGODB_DATABASE_URL;
mongoose.Promise = global.Promise;
mongoose.connect(DATABASE_URL, {
useNewUrlParser: true,
useUnifiedTopology: true
});
var db = mongoose.connection;
db.on('error', console.error.bind(console, 'connection error:'));
db.once('open', function () {
console.log("We are connected to the database!!");
});
//SCHEMA SETUP
var blogSchema = mongoose.Schema({
title: String,
image: String,
body: String,
created: {
type: Date,
default: Date.now()
}
});
// Mongoose Model setup
var Blog = mongoose.model('Blog', blogSchema);
// APP RESTFUL ROUTES
app.get("/", (req, res) => {
res.redirect("/blogs");
});
app.get("/blogs", (req, res) => {
Blog.find({}, (err, blogs) => {
if (err) {
console.log(err);
res.render("new");
} else {
res.render("index", {
blogs: blogs
});
}
});
});
app.get("/blogs/new", (req, res) => {
res.render("new");
});
app.post("/blogs", (req, res) => {
req.body.blog.body = req.sanitize(req.body.blog.body);
Blog.create(req.body.blog, (err, blog) => {
if (err) {
console.log(err);
} else {
res.redirect("/blogs");
}
});
});
app.get("/blogs/:id", (req, res) => {
Blog.findById(req.params.id, (err, blog) => {
if (err) {
console.log('An error has occured: ', err);
} else {
res.render("show", {
blog: blog
});
}
});
});
app.get("/blogs/:id/edit", (req, res) => {
Blog.findById(req.params.id, (err, foundBlog) => {
if (err) {
console.log('An Error occured: ', err)
} else {
res.render("edit", {
blog: foundBlog
});
}
});
});
app.put("/blogs/:id", (req, res) => {
req.body.blog.body = req.sanitize(req.body.blog.body);
Blog.findByIdAndUpdate(req.params.id, req.body.blog, (err, updatedBlog) => {
if (err) {
console.log("An error was thrown");
res.redirect("/blogs/req.params.id/edit");
} else {
res.redirect("/blogs");
}
});
});
app.delete("/blogs/:id", (req, res) =>{
Blog.findOneAndDelete(req.params.id,(err) =>{
if(err){
res.redirect("/blogs/req.params.id");
}
else{
res.redirect("/blogs");
}
});
});
// RUN APP SERVER
const port = process.env.PORT || 5000;
app.listen(port, () => `Server running on port ${port} 🔥`);