forked from Note-Vault/Note-Vault
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
443 lines (399 loc) · 15 KB
/
server.js
File metadata and controls
443 lines (399 loc) · 15 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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
import express from "express";
import mongoose from "mongoose";
import bcrypt from "bcrypt";
import jwt from "jsonwebtoken";
import cookieParser from "cookie-parser";
import bodyParser from "body-parser";
import { config as configDotenv } from "dotenv"; // Use config method from dotenv
configDotenv();
// creating a global variable for success message
var noteMessage = false;
mongoose
.connect(process.env.MONGODB)
.then(() => {
console.log("Connected to MongoDB");
})
.catch((error) => {
console.error("Error connecting to MongoDB:", error);
});
const app = express();
const port = 3000; // Change this to the desired port number
// Middleware to read the body data in json format
app.use(express.json());
// Middleware to parse cookies
app.use(cookieParser());
// Using EJS as viewEngine
app.set("view engine", "ejs");
// Parse URL-encoded bodies
app.use(bodyParser.urlencoded({ extended: false }));
// Serve static files from the 'public' folder
app.use(express.static("public"));
// -------------------------------------USER-----------------------------------------------
// --------------------------------USER SCHEMA AND MODEL ----------------------------------
const userSchema = new mongoose.Schema({
name: {
type: String,
required: true,
},
email: {
type: String,
required: true,
unique: true,
},
password: {
type: String,
required: true,
},
});
const User = mongoose.model("User", userSchema);
// --------------------------------USER SCHEMA AND MODEL ----------------------------------
// --------------------------------NOTEBOOK SCHEMA AND MODEL-------------------------------
const notebookSchema = new mongoose.Schema({
tag: {
type: String,
required: true,
},
description: {
type: String,
required: true,
},
user: {
type: mongoose.Schema.Types.ObjectId,
ref: "User",
required: true,
},
});
const Notebook = mongoose.model("Notebook", notebookSchema);
// --------------------------------NOTEBOOK SCHEMA AND MODEL-------------------------------
// ---------------------------------------MIDDLEWARES--------------------------------------
const JWT_SECRET_KEY = process.env.JWTSECRETKEY;
const isAuthenticated = (req, res, next) => {
const token = req.cookies.token;
if (token) {
// Verify and decode the token
console.log(token);
const decoded = jwt.verify(token, JWT_SECRET_KEY);
// Access the decrypted data from the token
const { userId } = decoded;
// Verifying the user ID with the database
User.findOne({ _id: userId })
.then((curr_user) => {
if (curr_user) {
console.log("User is Authorzied");
// setting the userID so that any authrized connection can use it
req.userID = userId;
req.userNAME = curr_user.name;
console.log(req.userNAME);
next();
} else {
// res.send("Internal server error")
const errorMessage = "Internal server error";
res.render("error_template", { errorMessage });
}
})
.catch((error) => {
console.error("Server down", error);
// res.status(500).json({ message: 'An error occurred while token verification' });
const errorMessage = "An error occurred while token verification";
res.render("error_template", { errorMessage });
});
} else {
// Cookie does not exist
console.log("Cookie not found");
res.status(401).redirect("/");
}
};
const isAuthenticatedlogin = (req, res, next) => {
const token = req.cookies.token;
if (token) {
// Verify and decode the token
console.log(token);
const decoded = jwt.verify(token, JWT_SECRET_KEY);
// Access the decrypted data from the token
const { userId } = decoded;
// Verifying the user ID with the database
User.findOne({ _id: userId })
.then((curr_user) => {
if (curr_user) {
console.log("User is Authorzied");
// setting the userID so that any authrized connection can use it
req.userID = userId;
req.userNAME = curr_user.name;
console.log(req.userNAME);
res.status(200).redirect("/note/show");
} else {
// res.send("Internal server error")
const errorMessage = "Internal server error";
res.render("error_template", { errorMessage });
}
})
.catch((error) => {
console.error("Server down", error);
// res.status(500).json({ message: 'An error occurred while token verification' });
const errorMessage = "An error occurred while token verification";
res.render("error_template", { errorMessage });
});
} else {
// Cookie does not exist
console.log("Cookie not found");
next();
}
};
// ---------------------------------------MIDDLEWARES--------------------------------------
// -----------------------------------USER APIS--------------------------------------------
// GET Register Page
app.get("/user/register", (req, res) => {
// res.send("Welcome to the registration page");
res.render("register", { errorMessage: false });
});
// POST -Registering User in the database
app.post("/user/register", (req, res) => {
console.log(req.body);
const { name, email, password } = req.body;
// Check if user with the same email already exists
User.findOne({ email })
.then((existingUser) => {
if (existingUser) {
// return res.status(400).json({ message: 'Email already registered' });
return res.render("register", {
errorMessage: "Email already registered.Login Directly",
});
}
// Hash the password
bcrypt
.hash(password, 10)
.then((hashedPassword) => {
// Create a new user with hashed password
const user = new User({
name,
email,
password: hashedPassword,
});
// Save the user to the database
user
.save()
.then(() => {
// Generate JWT token with user ID
const token = jwt.sign({ userId: user._id }, JWT_SECRET_KEY);
// Set the token as a cookie
res.cookie("token", token, { httpOnly: true });
// res.status(201).json({ message: 'User registered successfully' });
res.render("success");
})
.catch((error) => {
console.error("Error registering user:", error);
// res.status(500).json({ message: 'An error occurred while registering user' });
res.render("register", {
errorMessage: "An error occurred while registering user",
});
});
})
.catch((error) => {
console.error("Error hashing password:", error);
// res.status(500).json({ message: 'An error occurred while hashing password' });
res.render("register", {
errorMessage: "An error occurred while hashing password",
});
});
})
.catch((error) => {
console.error("Error checking existing user:", error);
// res.status(500).json({ message: 'An error occurred while registering user' });
res.render("register", {
errorMessage: "An error occurred while checking existing user",
});
});
});
// GET -> Login Page
app.get("/user/login", isAuthenticatedlogin, (req, res) => {
// res.send("Welcome to the login page")
res.render("login", { errorMessage: false });
});
// POST ->Login Page
app.post("/user/login", (req, res) => {
const { email, password } = req.body;
// Find the user by email
User.findOne({ email })
.then((user) => {
if (!user) {
// return res.status(404).json({ message: 'User not found' });
return res.render("login", {
errorMessage: "User Not Exist.Register first",
});
}
// Compare the provided password with the hashed password in the database
bcrypt
.compare(password, user.password)
.then((isMatch) => {
if (!isMatch) {
// return res.status(401).json({ message: 'Invalid password' });
return res.render("login", { errorMessage: "Invalid Password" });
}
// Generate JWT token
const token = jwt.sign({ userId: user._id }, JWT_SECRET_KEY);
// Set the token as a cookie
res.cookie("token", token, { httpOnly: true });
res.status(200).redirect("/note/show");
})
.catch((error) => {
console.error("Error comparing passwords:", error);
// res.status(500).json({ message: 'An error occurred while comparing passwords' });
// return res.render('login', { errorMessage: "Internal Server Error" });
const errorMessage = "Internal Server Error";
res.render("error_template", { errorMessage });
});
})
.catch((error) => {
console.error("Error finding user:", error);
// res.status(500).json({ message: 'An error occurred while finding user' });
// return res.render('login', { errorMessage: "Internal Server Error" });
const errorMessage = "Internal Server Error";
res.render("error_template", { errorMessage });
});
});
// Logout API endpoint
app.get("/user/logout", (req, res) => {
// Clear the "token" cookie by providing the cookie name
res.clearCookie("token");
// res.json({ message: 'Logout successful' });
// redirecting to the Home route
res.redirect("/");
});
// -----------------------------------USER APIS--------------------------------------------
// ----------------------------------Notebook APIS -----------------------------------------
// GET - Show all notes from the DB
app.get("/note/show", isAuthenticated, (req, res) => {
const userId = req.userID; // Assuming the authenticated user ID is available in req.user._id
console.log(userId);
// Find all notes with the user ID
Notebook.find({ user: userId })
.then((notes) => {
// res.status(200).json(notes);
console.log(notes);
res.render("note", {
notes: notes,
userNAME: req.userNAME,
successMessage: noteMessage,
});
noteMessage = false;
})
.catch((error) => {
console.error("Error fetching notes:", error);
// res.status(500).json({ message: 'An error occurred while fetching the notes' });
const errorMessage = "An error occurred while fetching the notes";
res.render("error_template", { errorMessage });
});
});
// GET - ADD the node
app.get("/note/add", (req, res) => {
// res.send("Enter the tag and description in the modal")
res.render("addNote");
});
// POST - Add the note in the DB of the current user
app.post("/note/add", isAuthenticated, (req, res) => {
const { tag, description } = req.body;
const userId = req.userID; // Assuming you have set the user object in req.user during authentication
// Create a new notebook document
const notebook = new Notebook({
tag,
description,
user: userId,
});
// Save the notebook to the database
notebook
.save()
.then(() => {
// res.status(201).json({ message: 'Note added successfully' });
noteMessage = "Note added successfully";
res.redirect("/note/show");
})
.catch((error) => {
console.error("Error adding note:", error);
// res.status(500).json({ message: 'An error occurred while adding the note' });
const errorMessage = "An error occurred while adding the notes";
res.render("error_template", { errorMessage });
});
});
// DELETE - Delete a note
app.post("/note/delete/:noteId", isAuthenticated, (req, res) => {
const userId = req.userID; // Assuming the authenticated user ID is available in req.userID
const noteId = req.params.noteId; // Get the note ID from the request parameters
// Find the note by ID and user ID
Notebook.findOneAndDelete({ _id: noteId, user: userId })
.then((deletedNote) => {
if (!deletedNote) {
// Note not found or not authorized to delete
// return res.status(404).json({ message: 'Note not found or unauthorized' });
const errorMessage = "Note not found or unauthorized";
return res.render("error_template", { errorMessage });
}
// res.status(200).json({ message: 'Note deleted successfully' });
noteMessage = "Note deleted successfully";
res.redirect("/note/show");
})
.catch((error) => {
console.error("Error deleting note:", error);
// res.status(500).json({ message: 'An error occurred while deleting the note' });
const errorMessage = "An error occurred while deleting the note";
res.render("error_template", { errorMessage });
});
});
// PUT - Update a note
app.post("/note/update/:noteId", isAuthenticated, (req, res) => {
const userId = req.userID; // Assuming the authenticated user ID is available in req.userID
const noteId = req.params.noteId; // Get the note ID from the request parameters
const { tag, description } = req.body; // Get the updated tag and description from the request body
// Find the note by ID and user ID
Notebook.findOneAndUpdate(
{ _id: noteId, user: userId },
{ tag, description },
{ new: true }
)
.then((updatedNote) => {
if (!updatedNote) {
// Note not found or not authorized to update
// return res.status(404).json({ message: 'Note not found or unauthorized' });
const errorMessage = "Note not found or unauthorized";
return res.render("error_template", { errorMessage });
}
// res.status(200).json({ message: 'Note updated successfully', note: updatedNote });
noteMessage = "Note updated successfully";
res.redirect("/note/show");
})
.catch((error) => {
console.error("Error updating note:", error);
// res.status(500).json({ message: 'An error occurred while updating the note' });
const errorMessage = "An error occurred while updating the note";
res.render("error_template", { errorMessage });
});
});
// Search Functionality by the tag name
// searching the the URL using query params
// localhost:3000/note/search?tag=searching
// it returns only the result of array if the tag name is exactly matched with the query
app.get("/note/search", isAuthenticated, (req, res) => {
const userId = req.userID;
const { tag } = req.query;
// Find notes with the specified tag and user ID
Notebook.find({ tag, user: userId })
.then((notes) => {
// res.status(200).json(notes);
res.render("search", { tag, notes });
})
.catch((error) => {
console.error("Error searching notes:", error);
// res.status(500).json({ message: 'An error occurred while searching notes' });
const errorMessage = "An error occurred while searching notes";
res.render("error_template", { errorMessage });
});
});
// ----------------------------------Notebook APIS -----------------------------------------
// GET - ROOT API
app.get("/", isAuthenticatedlogin, (req, res) => {
// res.send('Welcome to the NoteVault');
res.render("home");
});
// Start the server
app.listen(port, () => {
console.log(`Server running on port ${port}`);
});