-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathapp.js
133 lines (114 loc) · 3.34 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
//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");
//imports for markdown
const createDomPurify = require("dompurify");
const marked = require("marked");
const { JSDOM } = require("jsdom");
const dompurify = createDomPurify(new JSDOM().window);
//rate limiting
const rateLimit = require("express-rate-limit");
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);
//----------------------------------------------------------------------------------------------------------------------------
//rate limit
const rateLimiters = (max) =>
rateLimit({
windowMs: 24 * 60 * 60 * 1000, // 24 hrs in milliseconds
max: max,
message: "You have exceeded the 50 requests in 24 hrs limit!",
standardHeaders: true,
legacyHeaders: false,
});
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: "No content here yet" });
});
app.get("/contact", (req, res) => {
res.render("contact", { contactContent: "No content here yet " });
});
app.get("/compose", (req, res) => {
const firebase_config = {
apiKey: process.env.apikey,
authDomain:
process.env.authDomain,
projectId: process.env.projectId,
storageBucket:
process.env.storageBucket,
messagingSenderId:
process.env.messagingSenderId,
appId: process.env.appId,
measurementId:
process.env.measurementId,
};
res.render("compose", {config : {...firebase_config}});
});
app.post("/compose", rateLimiters(25), (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: dompurify.sanitize(marked.parse(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");
});