forked from tusharkhatriofficial/Blogify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
105 lines (80 loc) · 2.35 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
//jshint esversion:6
const express = require("express");
const bodyParser = require("body-parser");
const ejs = require("ejs");
const _ = require("lodash");
const mongoose = require("mongoose");
const dotenv = require("dotenv");
dotenv.config();
const app = express();
app.set('view engine', 'ejs');
app.use(bodyParser.urlencoded({extended: true}));
app.use(express.static("public"));
//---------------------------------------------------------------------------------------------------------------------------
//connecting to the database
mongoose.connect(process.env.MONGO_URI, {useNewUrlParser: true, useUnifiedTopology: true});
//creating a schema for the database
const postSchema = {
title: String,
postFeaturedImage: String,
content: String,
}
//creating a model for the schema
const Post = mongoose.model("Post", postSchema);
//----------------------------------------------------------------------------------------------------------------------------
app.get("/", (req, res) => {
Post.find({}, (err, foundPosts) => {
if(!err){
posts = foundPosts;
res.render("home", {
posts: posts
});
}
});
});
app.get("/register",(req,res)=>{
res.render("register")
})
app.get("/login",(req,res)=>{
res.render("login")
})
app.get("/about", (req, res) => {
res.render("about", {aboutContent: aboutContent});
});
app.get("/contact", (req, res) => {
res.render("contact", {contactContent: contactContent});
});
app.get("/compose", (req, res) => {
res.render("compose");
});
app.post("/compose", (req, res) => {
//creating a new post
const addPost = new Post({
title: req.body.postTitle,
postFeaturedImage: req.body.postFeaturedImage,
content: req.body.postBody
});
addPost.save(
(err) => {
if(!err){
res.redirect("/");
}
}
);
});
app.get("/posts/:optional", (req, res) => {
posts.forEach((element)=>{
var optionalRoute = _.lowerCase(req.params.optional);
if(_.lowerCase(element.title) === optionalRoute){
res.render("post", {postTitle: element.title, postContent: element.content, postFeaturedImage: element.postFeaturedImage});
}else{
console.log("No such route found");
}
});
});
app.get("*", (req, res) => {
res.send("The page you are looking for does not exists!");
});
app.listen(3000, function() {
console.log("Server started on port 3000");
});