-
Notifications
You must be signed in to change notification settings - Fork 16
/
app.js
86 lines (73 loc) · 2.22 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
//jshint esversion:6
//require modules
const express = require('express');
const bodyParser = require('body-parser');
const engine = require('ejs-locals');
const mongoose = require('mongoose');
//created an express app which is required above
const app = express();
//using ejs for ease
app.set('view engine', 'ejs');
app.engine('ejs', engine);
//taking input from HTML, setting paths to files to app.js
app.use(bodyParser.urlencoded({ extended: true }));
app.use(express.static('public'));
//connecting the blog post to a mongoDB, remember 27017 is a default port for mongoDB
mongoose.connect('mongodb://localhost:27017/blogDB', {
useNewUrlParser: true,
useUnifiedTopology: true,
});
//schema for blog post
const postSchema = {
title: String,
content: String,
};
//model for mongoose
const Post = mongoose.model('Post', postSchema);
//setting the webpage funtionality this is for homepage
app.get('/', function (req, res) {
Post.find({}, function (err, posts) {
res.render('home', {
posts: posts,
});
});
});
//where the users are posting (we create a different page for it)
app.get('/compose', function (req, res) {
res.render('compose');
});
//what after user is done writing the post? we use .post to give response to the user and redirect the user to our / (homepage)
app.post('/compose', function (req, res) {
const post = new Post({
//use of body-parser
title: req.body.postTitle,
content: req.body.postBody,
});
//save the post to mongoDB
post.save(function (err) {
if (!err) {
res.redirect('/');
}
});
});
// Dynamically make new URL's when Blog is to viewed on a separate webPage.
app.get("/posts/:postId", function(req, res){
const requestedPostId = req.params.postId;
Post.findOne({_id: requestedPostId}, function(err, post){
res.render("post", {
title: post.title,
content: post.content
});
});
});
//other pages of the blog website
app.get('/about', function (req, res) {
res.render('about');
});
app.get('/contact', function (req, res) {
res.render('contact');
});
//listening on local server | use a dynamic port when hosting on web.
app.listen(process.env.PORT || 3000, function () {
console.log('Server started on port : http://localhost:3000');
});