-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
91 lines (62 loc) · 2.36 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
//jshint esversion:6
const express = require("express");
const bodyParser = require("body-parser");
const ejs = require("ejs");
const _ = require("lodash");
const mongoose = require("mongoose")
const homeStartingContent = "This blog contains tech related posts. This will mainly focus on topics such as full stack development , python development and devops";
const aboutContent = "Hi , My name is Mrigesh Patni. I am a full stack WEB developer and a DevOps enthusiast. I love Exploring different technologies. Currently I am learning AWS and studiying for cloud practitioner exam. This is a blog website where i will be writing blogs about whatever i will be learning. This can act as a notes app for me and to gain quick knowledge about any topic for some others in the internet.";
const contactContent = "You can reach to me at [email protected] or see the code at my github profile: https://github.com/Mrigesh901";
const app = express();
mongoose.connect("mongodb+srv://mrigesh:<password>@cluster0.ehrrtxz.mongodb.net/blogdb", {useNewUrlParser:true});
app.set('view engine', 'ejs');
app.use(bodyParser.urlencoded({extended: true}));
app.use(express.static("public"));
const postSchema = {
title: String,
content: String
}
const Post = mongoose.model("Post", postSchema)
app.get("/", function(req, res){
Post.find({}, function(err, posts){
res.render("home", {
startingContent: homeStartingContent,
posts: posts
});
})
});
app.get("/about", function(req, res){
res.render("about", {aboutContent: aboutContent});
});
app.get("/contact", function(req, res){
res.render("contact", {contactContent: contactContent});
});
app.get("/compose", function(req, res){
res.render("compose");
});
app.post("/compose", function(req, res){
const post = new Post({
title: req.body.postTitle,
content: req.body.postBody
});
post.save();
// posts.push(post);
res.redirect("/");
});
app.get("/posts/:postId", function(req, res){
// const requestedTitle = _.lowerCase(req.params.postName);
const requestedPostId = req.params.postId;
Post.findOne({_id:requestedPostId},function(err,post){
res.render("post", {
title: post.title,
content: post.content
})
})
});
let port = process.env.PORT;
if (port == null || port == "") {
port = 3000;
}
app.listen(port,function(){
console.log("server is running");
})