This repository has been archived by the owner on Jul 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
105 lines (78 loc) · 2.26 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
const express = require("express");
const ejs = require("ejs");
const _ = require("lodash");
require('dotenv').config({path:__dirname+"/.env"})
const mongoose = require("mongoose")
mongoose.connect(process.env.MONGO_URL, { useNewUrlParser: true, useUnifiedTopology: true })
postSchema = {
postTitle: String,
postContent: String
}
const Post = mongoose.model("Post", postSchema)
const homeStartingContent = "A text-only blog about random things, perhaps about projects."
const aboutContent = "Hi there! This is a simple blog setup made with Node.JS, Heroku, and MongoDB. I'm Mueez Khan and I learned how to develop full stack applications, this blog being my proof of learning."
const app = express();
app.set('view engine', 'ejs');
app.use(express.urlencoded({extended: true}));
app.use(express.static("public"));
let posts = [];
Post.find({}, (err, allPosts) => {
allPosts.forEach((post) => {
const diffPost = {
title: post.postTitle,
content: post.postContent
};
posts.push(diffPost)
})
})
app.get("/", function(req, res){
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");
});
app.get("/login", function(req, res){
res.render("login", {
password: process.env.PASSWORD
});
});
app.post("/login", function(req, res){
const password = process.env.PASSWORD
if (req.body.passInput === password) {
res.render("compose")
}
})
app.post("/compose", (req, res) => {
const post = {
title: req.body.postTitle,
content: req.body.postBody
};
const newPost = new Post ({
postTitle: post.title,
postContent: post.content
})
newPost.save()
posts.push(post);
res.redirect("/");
})
app.get("/posts/:postName", function(req, res){
const requestedTitle = _.lowerCase(req.params.postName)
posts.forEach(function(post){
const storedTitle = _.lowerCase(post.title)
if (storedTitle === requestedTitle) {
res.render("post", {
title: post.title,
content: post.content
})
}
})
})
app.listen(process.env.PORT || 3000, function() {
console.log("Server started on port 3000");
})