-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
114 lines (92 loc) · 4.72 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
//jshint esversion:6
const express = require("express");
const bodyParser = require("body-parser");
const ejs = require("ejs");
// Load the full build
const _ = require('lodash');
const mongoose = require('mongoose');
const homeStartingContent = "Lacus vel facilisis volutpat est velit egestas dui id ornare. Semper auctor neque vitae tempus quam. Sit amet cursus sit amet dictum sit amet justo. Viverra tellus in hac habitasse. Imperdiet proin fermentum leo vel orci porta. Donec ultrices tincidunt arcu non sodales neque sodales ut. Mattis molestie a iaculis at erat pellentesque adipiscing. Magnis dis parturient montes nascetur ridiculus mus mauris vitae ultricies. Adipiscing elit ut aliquam purus sit amet luctus venenatis lectus. Ultrices vitae auctor eu augue ut lectus arcu bibendum at. Odio euismod lacinia at quis risus sed vulputate odio ut. Cursus mattis molestie a iaculis at erat pellentesque adipiscing.";
const aboutContent = "Hac habitasse platea dictumst vestibulum rhoncus est pellentesque. Dictumst vestibulum rhoncus est pellentesque elit ullamcorper. Non diam phasellus vestibulum lorem sed. Platea dictumst quisque sagittis purus sit. Egestas sed sed risus pretium quam vulputate dignissim suspendisse. Mauris in aliquam sem fringilla. Semper risus in hendrerit gravida rutrum quisque non tellus orci. Amet massa vitae tortor condimentum lacinia quis vel eros. Enim ut tellus elementum sagittis vitae. Mauris ultrices eros in cursus turpis massa tincidunt dui.";
const contactContent = "Scelerisque eleifend donec pretium vulputate sapien. Rhoncus urna neque viverra justo nec ultrices. Arcu dui vivamus arcu felis bibendum. Consectetur adipiscing elit duis tristique. Risus viverra adipiscing at in tellus integer feugiat. Sapien nec sagittis aliquam malesuada bibendum arcu vitae. Consequat interdum varius sit amet mattis. Iaculis nunc sed augue lacus. Interdum posuere lorem ipsum dolor sit amet consectetur adipiscing elit. Pulvinar elementum integer enim neque. Ultrices gravida dictum fusce ut placerat orci nulla. Mauris in aliquam sem fringilla ut morbi tincidunt. Tortor posuere ac ut consequat semper viverra nam libero.";
const app = express();
app.set('view engine', 'ejs');
// app.set('views',(__dirname, 'views'));
app.use(bodyParser.urlencoded({extended: true}));
app.use(express.static("public"));
mongoose.connect("mongodb://localhost:27017/blogDB", {
useUnifiedTopology: true,
useNewUrlParser: true,
});
const postSchema = {
title: String,
content: String
};
const Post = mongoose.model("Post", postSchema);
//posts array for compose page (posts is an array of obejcts)
// let posts = [];
//render ejs page
//show new posts in home page
app.get("/", (req,res)=> {
//Get the Home Page to Render the Posts
//find all the posts in the posts collection and render that in the home.ejs file.
Post.find({}, function(err, posts){
res.render("home", {
startingContent: homeStartingContent,
posts: posts
});
});
// console.log(posts);
});
app.get("/compose", (req,res)=>{
res.render("compose");
});
app.post("/compose", (req,res)=>{
//when post route is triggered, title and content are passed over
//create a new Post document
const post = new Post ({
title : req.body.postTitle,
content : req.body.postBody
});
//push to posts array
// posts.push(post);
//Add a callback to the save method to only redirect to the home page once save is complete with no errors.
post.save(function(err){
if(!err){
res.redirect('/')
}
});
// go back to home route
// res.redirect("/");
});
// Express route parameters to dynamically create new pages
// app.get("/news/:topic", function(req, res){
// console.log(req.params.topic);
// });
// localhost:3000/news/politics // topic parameter can change
// use lodash(lowercase) to use lowercase paths in localhost
// transfrom user's format to lowercase
app.get("/posts/:postId" , (req, res) => {
// const requestedTitle = _.lowerCase(req.params.blog) ;
const requestedPostId = req.params.postId;
//loop through the array to get dynamic information for each individual post
Post.findOne({_id: requestedPostId}, function(err, post){
// posts.forEach(function(post){
// const storedTitle = _.lowerCase(post.title);
// if (storedTitle === requestedTitle){
// console.log("Match found!");
//this will render every blog post in its own page
res.render("post", {
title : post.title,
content : post.content
});
});
});
app.get("/about", (req,res)=>{
res.render("about" , { aboutContent : aboutContent });
});
app.get("/contact", (req,res)=>{
res.render("contact" , { contactContent : contactContent });
});
app.listen(3000, function() {
console.log("Server started on port 3000");
});