-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexpress_server.js
More file actions
258 lines (203 loc) · 6.21 KB
/
Copy pathexpress_server.js
File metadata and controls
258 lines (203 loc) · 6.21 KB
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
// Web framework
const express = require("express");
//Middleware
const bodyParser = require("body-parser");
const cookieSession = require("cookie-session");
// Hashing method for passwords
const bcrypt = require("bcryptjs");
// Helper functions
const { getUserByEmail, urlForUser, randomStr } = require("./helpers");
// // Database
// const dbParams = require('./server/lib/db');
// const Pool = require('pg').Pool;
// const db = new Pool(dbParams);
// db.connect();
const app = express();
const PORT = 8080; // default port 8080
// // Routes
// const { urlRoutes } = require('./server/routes');
// app.use('/api/urls', urlRoutes(db));
// Use Middlewares
app.use(bodyParser.urlencoded({extended: true}));
app.use(cookieSession({
name: "session",
keys: [ "key1", "key2"]
}));
// enable ejs
app.set("view engine", "ejs");
// === DATABASES ===
const urlDatabase = {
"b2xVn2": {
longURL: "http://www.lighthouselabs.ca",
userID: "userRandomID"
},
"9sm5xK": {
longURL: "http://www.google.com",
userID: "user2RandomID"
}
};
const users = {
"userRandomID": {
id: "userRandomID",
email: "user@example.com",
password: bcrypt.hashSync("purple-monkey-dinosaur")
},
"user2RandomID": {
id: "user2RandomID",
email: "user2@example.com",
password: bcrypt.hashSync("dishwasher-funk")
}
};
// === GET REQUESTS ===
// ROOT PAGE
app.get("/", (req, res) => {
res.redirect("/urls");
});
// JSON PAGE
app.get("/urls.json", (req, res) => {
res.json(urlDatabase);
});
// PAGE FOR NEW URL
app.get("/urls/new", (req, res) => {
const templateVars = {
users,
user_id: req.session.user_id,
};
if (!templateVars.user_id) {
res.redirect("/login");
} else {
res.render("urls_new", templateVars);
}
});
// PAGE FOR A SHORTURL INSTANCE
app.get("/urls/:id", (req, res) => {
const urlID = req.params.id;
const userID = req.session.user_id;
if (!urlDatabase[urlID]) { // If link does not exist send to error page
res.status(400).send(`<h1> the ShortURL: ${urlID} does not exist. Click <a href=\"/urls\">here</a> to return to the main page.</h1>`);
} else if (!urlForUser(userID, urlID, urlDatabase)) { // if user does not own the short URL, send to error page
res.status(400).send(`<h1>You cannot edit this url.</h1>\n<h2>Click <a href=\"/u/${urlID}\">here<\a> to access the designated url</h1>`);
} else {
const templateVars = {
users,
shortURL: urlID,
user_id: req.session.user_id,
longURL: urlDatabase[urlID].longURL,
};
res.render("urls_show", templateVars);
}
});
// PAGE FOR URL INDEX
app.get("/urls", (req, res) => {
const templateVars = {
users,
user_id: req.session.user_id,
urls: urlDatabase
};
res.render("urls_index", templateVars);
});
// GET REQUEST FOR REGISTER
app.get("/register", (req, res) => {
const templateVars = {
users,
user_id: req.session.user_id,
urls: urlDatabase
};
res.render("urls_reg",templateVars);
});
// GET REQUEST FOR LOGIN PAGE
app.get("/login", (req, res) => {
const templateVars = {
users,
user_id: req.session.user_id,
urls: urlDatabase
};
res.render("urls_login", templateVars);
});
// GET REQUEST FOR /u/:id TO SEND USER TO THE DESTINATION LINK
app.get("/u/:id", (req, res) => {
const urlID = req.params.id;
if (urlDatabase[urlID]) { // Case of valid url
const longURL = urlDatabase[urlID].longURL;
res.redirect(longURL);
} else {
res.status(400).send(`<h1>Link for ${urlID} does not exist. Click <a href=\"/urls\">here</a> to return to the main page.</h1>`);
}
});
// === POST REQUESTS ===
// POST FOR UPDATING EXISTING SHORTURL
app.post("/urls/:id", (req, res) => {
const urlID = req.params.id;
const userID = req.session.user_id;
if (urlForUser(userID, urlID, urlDatabase)) {
urlDatabase[urlID].longURL = req.body.longURL;
res.redirect(`/urls/${req.params.id}`);
} else {
res.status(400).send("<h1>Illegal command. Click <a href=\"/urls\">here</a> to return to the main page.</h1>");
}
});
// POST FOR ADDING NEW SHORT LINK
app.post("/urls", (req, res) => {
const shorten = randomStr(); // Create new url ID
urlDatabase[shorten] = {
longURL: req.body.longURL,
userID: req.session.user_id
};
res.redirect(`/urls/${shorten}`);
});
// POST FOR DELETING EXISTING SHORT LINK
app.post("/urls/:id/delete", (req, res) => {
const urlID = req.params.id;
if (urlForUser(req.session.user_id, urlID, urlDatabase)) {
delete urlDatabase[urlID];
res.redirect("/urls");
} else {
res.status(400).send("<h1>Illegal command. Click <a href=\"/urls\">here</a> to return to the main page.</h1>");
}
});
// POST FOR USER LOGIN
app.post("/login", (req, res) => {
const email = req.body.email;
const password = req.body.password;
const userID = getUserByEmail(email, users);
if (userID) { // check email
if (bcrypt.compareSync(password, users[userID].password)) { //check password
req.session.user_id = userID;
} else {
res.status(403).send("<h1>Incorrect email/password Click <a href=\"/login\">here</a> to return to the login page.</h1>");
}
} else { // no email match
res.status(403).send("<h1>Incorrect email/password Click <a href=\"/login\">here</a> to return to the login page.</h1>");
}
res.redirect("/urls");
});
// POST FOR USER LOGOUT
app.post("/logout", (req, res) => {
// res.clearCookie("user_id");
req.session = null;
res.redirect("/urls");
});
// POST FOR REGISTERING NEW ACCOUNT
app.post("/register", (req, res) => {
const id = randomStr(); // Create new User ID
const password = req.body.password;
const email = req.body.email;
if (!password || !email) { // Empty email or password
res.status(400).send("<h1>Bad Request Click <a href=\"/register\">here</a> to return to the registration page.</h1>");
} else if (getUserByEmail(email, users)) {
res.status(400).send("<h1>Account Already Exists Click <a href=\"/register\">here</a> to return to the registration page.</h1>");
} else {
// Create new User
users[id] = {
id,
email,
password: bcrypt.hashSync(password)
};
req.session.user_id = id;
res.redirect("/urls");
}
});
// Listen
app.listen(PORT, () => {
console.log(`Example app listening on port ${PORT}!`);
});