forked from kyutzalopez/Large_Project15
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
419 lines (357 loc) · 14 KB
/
server.js
File metadata and controls
419 lines (357 loc) · 14 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
const express = require('express');
const bodyParser = require('body-parser');
const cors = require('cors');
const bcrypt = require('bcrypt'); //"npm instal bcrypt" in root
const fs = require('fs'); //file system
const path = require('path');
const logFilePath = path.join(__dirname, 'log.txt');
const app = express();
app.use(express.json());
const MongoClient = require('mongodb').MongoClient;
require('dotenv').config(); // "npm install dotenv" in project root directory for line below to work
const url = process.env.MONGODB_URL; // protected database url
const client = new MongoClient(url);
client.connect();
// Test the connection to the database
client.connect()
.then(() => {
console.log('Successfully connected to MongoDB');
app.listen(5000, () => {
console.log("Server running at http://localhost:5000");
});
})
.catch((err) => {
console.error('Error connecting to MongoDB:', err);
});
app.use(cors());
app.use(bodyParser.json());
app.use((req, res, next) => {
res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader(
'Access-Control-Allow-Headers',
'Origin, X-Requested-With, Content-Type, Accept, Authorization'
);
res.setHeader(
'Access-Control-Allow-Methods',
'GET, POST, PATCH, DELETE, OPTIONS'
);
next();
});
//new version
app.post('/api/signup', async (req, res, next) => {
// incoming: email, login, password, repassword
// outgoing: id, email, username, error
const { email, login, password, repassword } = req.body;
//const newUser= {Email:email, Username:login, Password:password, UserId:"0" }; !!!!!!!
const passMatch = (password === repassword);
var id = -1;
var e ='';
var username = '';
var error = 'Passwords do not match';
if (passMatch) {
try {
const db = client.db();
const loginMatched = await db.collection('Users').find({ Username: login}).toArray();
if(loginMatched.length > 0) {
// Return JSON Error: Account already exists
res.status(418).json({
id: id,
email: '',
username: login,
error: 'An account with this login already exists'
});
} else {
const hashedPassword = await bcrypt.hash(password, 10);
const newUser= {Email:email, Username:login, Password:hashedPassword, UserId:"0" };
//const db = client.db();
const results = await db.collection('Users').insertOne(newUser);
const id = results.insertedId;
//Test Logs
//console.log(hashedPassword)
fs.appendFile(logFilePath, 'Sign up, Pass: ' + hashedPassword + '\n', (err) => {});
fs.appendFile(logFilePath, id + ' - ' + results.Username + '\n\n', (err) => {});
// Return a single JSON response
res.status(200).json({
id: id, // The user's unique ID
email: newUser.Email,
username: newUser.Username,
error: '', // No error
});
}
} catch (e) {
// Handle any errors that occur during the database operation
const error = e.toString();
res.status(500).json({ error }); // Send an error response
}
}else{
//Passwords do not match
var ret = { id: id, email: e, username: username, error: error};
res.status(400).json(ret);
}
});
app.post('/api/deleteUser', async (req, res, next) => {
// incoming: login, password
// outgoing: error
const {login, password} = req.body;
var error = '';
try {
const db = client.db();
const loginMatched = await db.collection('Users').find({ Username: login, Password: password}).toArray();
if(loginMatched.length <= 0) {
// Return JSON Error: Not a user
res.status(418).json({
error: 'User with that login and password does not exsist'
});
} else {
//const db = client.db();
await db.collection('Users').deleteOne(loginMatched);
// Return a single JSON response
res.status(200).json({
error: '', // No error
});
}
} catch (e) {
// Handle any errors that occur during the database operation
const error = e.toString();
res.status(500).json({ error }); // Send an error response
}
});
//add movie title to list of movies user has WATCHED
app.post('/api/addmovieWatched', async (req, res, next) => {
// incoming: userId, title, review, rating
// outgoing: error
const { userId, title, review, rating } = req.body;
const newMovie = { Title: title, UserId: userId, Review: review, Rating: rating };
var error = '';
try {
const db = client.db();
const result = db.collection('WatchedMovies').insertOne(newMovie);
}
catch (e) {
error = e.toString();
}
var ret = { error: error };
res.status(200).json(ret);
});
//edit a movie a user has WATCHED
app.post('/api/editmovieWatched', async (req, res, next) => {
// incoming: userId, title
// outgoing: error
const { userId, title, newTitle, newReview, newRating} = req.body;
const newMovie = { Title: newTitle, UserId: userId, Review: newReview, Rating: newRating };
var error = '';
try {
const db = client.db();
const movieToDelete = await db.collection('WatchedMovies').find({ Title: title, UserId: userId }).toArray();
if(movieToDelete.length <= 0) {
// Return JSON Error: Not a movie
res.status(418).json({
error: 'Movie does not exsist'
});
} else {
//movie can be deleted then inserted with the new info
await db.collection('WatchedMovies').deleteOne({ Title: title, UserId: userId });
const result = db.collection('WatchedMovies').insertOne(newMovie);
//return no error
var ret = { error: error };
res.status(200).json(ret);
}
}
catch (e) {
error = e.toString();
res.status(500).json({ error }); // Send an error response
}
});
//delete a movie a user has WATCHED
app.post('/api/deletemovieWatched', async (req, res, next) => {
// incoming: userId, title
// outgoing: error
const { userId, title} = req.body;
var error = '';
try {
const db = client.db();
const movieToDelete = await db.collection('WatchedMovies').find({ Title: title, UserId: userId }).toArray();
if(movieToDelete.length <= 0) {
// Return JSON Error: Not a movie
res.status(418).json({
error: 'Movie does not exist'
});
} else {
//movie can be deleted
await db.collection('WatchedMovies').deleteOne({ Title: title, UserId: userId });
//return no error
var ret = { error: error };
res.status(200).json(ret);
}
}
catch (e) {
error = e.toString();
res.status(500).json({ error: error });
}
});
//edit a movie a user has WATCHED
app.post('/api/editmovieWatched', async (req, res, next) => {
// incoming: userId, title
// outgoing: error
const { userId, title, newTitle, newReview, newRating} = req.body;
const newMovie = { Title: newTitle, UserId: userId, Review: newReview, Rating: newRating };
var error = '';
try {
const db = client.db();
const movieToDelete = await db.collection('WatchedMovies').find({ Title: title, UserId: userId }).toArray();
if(movieToDelete.length <= 0) {
// Return JSON Error: Not a movie
res.status(418).json({
error: 'Movie does not exsist'
});
} else {
//movie can be deleted then inserted with the new info
db.collection('WatchedMovies').deleteOne(movieToDelete);
const result = db.collection('WatchedMovies').insertOne(newMovie);
//return no error
var ret = { error: error };
res.status(200).json(ret);
}
}
catch (e) {
error = e.toString();
}
});
//add title to list of movies user WILL WATCH
app.post('/api/addmovieWatchlist', async (req, res, next) => {
// incoming: userId, title
// outgoing: error
const { userId, title, review, rating } = req.body;
const newMovie = { Title: title, UserId: userId, Review: review, Rating: rating };
var error = '';
try {
const db = client.db();
const result = db.collection('Watchlist').insertOne(newMovie);
}
catch (e) {
error = e.toString();
}
var ret = { error: error };
res.status(200).json(ret);
});
//remove title from the WATCH LIST
app.post('/api/deletemovieWatchList', async (req, res, next) => {
// incoming: userId, title
// outgoing: error
const { userId, title} = req.body;
var error = '';
try {
const db = client.db();
const movieToDelete = await db.collection('Watchlist').find({ Title: title, UserId: userId }).toArray();
if(movieToDelete.length <= 0) {
// Return JSON Error: Not a movie
res.status(418).json({
error: 'Movie does not exsist'
});
} else {
//movie can be deleted
db.collection('Watchlist').deleteOne(movieToDelete);
//return no error
var ret = { error: error };
res.status(200).json(ret);
}
}
catch (e) {
error = e.toString();
}
});
//search watchlist and return movies with partial matching
app.post('/api/searchWatchlist', async (req, res, next) => {
// incoming: userId, search
// outgoing: results[], error
var error = '';
const { userId, search } = req.body;
var _search = search.trim();
const db = client.db();
const results = await db.collection('Watchlist').find({ Title: { $regex: _search + '.*' }, UserId: userId }).toArray();
var _ret = [];
for (var i = 0; i < results.length; i++) {
_ret.push(results[i].Title);
}
var ret = { results: _ret, error: error };
res.status(200).json(ret);
});
//search watched movies and return movies with partial matching
app.post('/api/searchWatched', async (req, res, next) => {
// incoming: userId, search
// outgoing: results[], error
let error = '';
const { userId, search } = req.body;
const _search = search.trim();
try {
const db = client.db();
// Query the database for partial matches
const results = await db.collection('WatchedMovies')
.find({
Title: { $regex: _search + '.*', $options: 'i' }, // Case-insensitive matching
UserId: userId
})
.toArray();
// Map the results to include Title, Review, and Rating
const _ret = results.map(movie => ({
title: movie.Title,
review: movie.Review,
rating: movie.Rating
}));
// Return the results
res.status(200).json({ results: _ret, error });
} catch (e) {
error = e.message; // Handle errors gracefully
res.status(500).json({ results: [], error });
}
});
app.post('/api/searchcards', async (req, res, next) => {
// incoming: userId, search
// outgoing: results[], error
var error = '';
const { userId, search } = req.body;
var _search = search.trim();
const db = client.db();
const results = await db.collection('Cards').find({ "Card": { $regex: _search + '.*' } }).toArray();
var _ret = [];
for (var i = 0; i < results.length; i++) {
_ret.push(results[i].Card);
}
var ret = { results: _ret, error: error };
res.status(200).json(ret);
});
app.post('/api/login', async (req, res, next) => {
// incoming: login, password
// outgoing: id, firstName, lastName, error
const { login, password } = req.body;
const db = client.db();
const results = await db.collection('Users').find({ Username: login}).toArray();
var id = -1;
var e ='';
var username = '';
var error = 'No user found';
if (results.length <= 0) {
var ret = { id: id, email: e, username: username, error};
return res.status(400).json(ret);
}
try {
var storedPassword = results[0].Password;
if(await bcrypt.compare(password, storedPassword)){
id = results[0]._id;
e = results[0].Email;
username = results[0].Username;
error = '';
} else {
error = 'Password is incorrect';
var ret = { id: id, email: e, username: username, error};
return res.status(418).json(ret);
}
} catch (e) {
// Handle any errors that occur during password compare
const error = e.toString();
res.status(500).json({ error }); // Send an error response
}
var ret = { id: id, email: e, username: username, error};
return res.status(200).json(ret);
});
//app.listen(5000); // start Node + Express server on port 5000