-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
122 lines (74 loc) · 1.99 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
const express = require("express");
const bodyParser = require("body-parser");
const ejs = require("ejs");
const mongoose = require('mongoose');
const Intro = "Hello All , feel free to share you thoughts and anything knowledgeable that could be helpful to your friends, juniors as well as seniors."
const app = express();
app.set('view engine', 'ejs');
app.use(bodyParser.urlencoded({extended: true}));
app.use(express.static("public"));
mongoose.connect("mongodb://localhost:27017/BlogsDB");
// creating schema for blogs
const blogsSchema = {
blogTitle: String,
blogContent: String
};
const Blog = mongoose.model("Blog", blogsSchema);
// creating schema for query
const querySchema = {
clientName: String,
clientEmail: String,
querySubject: String,
query: String
}
const Query = mongoose.model("Query",querySchema);
app.get("/", function(req, res) {
Blog.find({}, function(err, blogs) {
res.render("home", {
Intro: Intro,
blogs: blogs
});
});
});
app.get("/compose", function(req, res) {
res.render("compose");
});
app.post("/compose", function(req, res) {
const newBlog = new Blog ({
blogTitle: req.body.blog,
blogContent: req.body.blogContent
})
newBlog.save(function(err){
if (!err){
res.redirect("/");
}
});
});
app.get("/contact", function(req, res) {
res.render("contact");
});
app.post("/contact",function(req,res){
const newQuery = new Query ({
clientName: req.body.name,
clientEmail: req.body.email,
querySubject: req.body.subject,
query: req.body.message
})
newQuery.save(function(err){
if (!err){
res.redirect("/");
}
});
});
app.get("/blog/:blogId", function(req, res){
const requestedBlogId = req.params.blogId;
Blog.findOne({_id: requestedBlogId}, function(err, blog){
res.render("blog", {
storedTitle: blog.blogTitle,
storedContent: blog.blogContent
});
});
});
app.listen(3000, function() {
console.log("Server started on port 3000");
});