-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
446 lines (424 loc) · 12 KB
/
server.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
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
444
445
446
if(process.env.NODE_ENV !== 'production'){
require('dotenv').config();
}
const express = require('express');
const jwt = require('jsonwebtoken');
const bcrypt = require('bcrypt');
const crypto = require('crypto');
const prisma = require('./prismaClient');
const swaggerJsDoc = require("swagger-jsdoc");
const swaggerUi = require("swagger-ui-express");
const { check, validationResult } = require('express-validator');
const app = express();
app.use(express.json());
// Swagger options
const swaggerOptions = {
swaggerDefinition: {
info: {
title: "Movie Vault API",
version: "2.1.3",
description: "API for accessing and managing a collection of movies. \n Created by ARC-Solutions \n Authorization: Bearer <YOUR_ACCESS_TOKEN>",
},
securityDefinitions: {
BearerAuth: {
type: 'apiKey',
name: 'Authorization',
in: 'header',
scheme: 'bearer',
bearerFormat: 'JWT',
}
}
},
apis: ["server.js"],
};
// Initialize Swagger
const swaggerDocs = swaggerJsDoc(swaggerOptions);
app.use("/api-docs", swaggerUi.serve, swaggerUi.setup(swaggerDocs));
/**
* @swagger
* paths:
* /:
* get:
* tags:
* - General
* summary: 'Welcome endpoint'
* description: 'Returns a welcome message.'
* responses:
* 200:
* description: 'Welcome to the Movies API!'
*/
app.get('/', (req, res) => {
res.send('Welcome to the Movies API!')
});
/**
* @swagger
* paths:
* /register:
* post:
* tags:
* - Authentication
* summary: 'Register a new user'
* description: 'This endpoint registers a new user with the provided username and password.'
* operationId: 'registerUser'
* consumes:
* - 'application/json'
* produces:
* - 'application/json'
* parameters:
* - in: 'body'
* name: 'body'
* description: 'User details for registration'
* required: true
* schema:
* type: 'object'
* properties:
* username:
* type: 'string'
* description: 'Username for the new user'
* password:
* type: 'string'
* description: 'Password for the new user'
* example:
* username: 'newUser'
* password: 'newPassword'
* responses:
* 201:
* description: 'User registered successfully'
* 400:
* description: 'Invalid input, object invalid'
*/
app.post('/register', [
check('username').isString().notEmpty(),
check('password').isString().notEmpty()
], async (req, res) => {
const errors = validationResult(req);
if(!errors.isEmpty()){
return res.status(400).json({ errors: errors.array() });
}
const { username, password } = req.body;
// Hash the password
const hashedPassword = bcrypt.hashSync(password, 10);
try {
// Add user to the database
const newUser = await prisma.user.create({
data: {
username: username,
password: hashedPassword,
},
});
res.status(201).json(newUser);
} catch (error) {
console.log(`Error in /register: ${error}`);
res.status(400).json("Error creating user");
}
});
/**
* @swagger
* paths:
* /login:
* post:
* tags:
* - Authentication
* summary: 'User login'
* description: 'This endpoint allows a user to login.'
* consumes:
* - 'application/json'
* produces:
* - 'application/json'
* parameters:
* - in: 'body'
* name: 'body'
* required: true
* schema:
* type: 'object'
* properties:
* username:
* type: 'string'
* password:
* type: 'string'
* responses:
* 200:
* description: 'Successful login'
* 403:
* description: 'Invalid credentials'
*/
const secretKey = crypto.randomBytes(64).toString('hex');
console.log(secretKey);
app.post('/login', async (req, res) => {
const { username, password } = req.body;
const user = await isValidUser(username, password);
if(user){
const payload = { id: user.id, username: user.username };
const accessToken = jwt.sign(payload, secretKey, { expiresIn: '1h' });
res.json({ accessToken });
} else {
res.status(403).send('Invalid credentials!');
}
});
async function isValidUser(username, password) {
try{
const user = await prisma.user.findUnique({
where: {
username: username
},
});
if(user && bcrypt.compareSync(password, user.password)) {
return user;
}
return false;
} catch (error) {
console.log(`Error in isValidUser: ${error}`);
return false;
}
}
const authenticateJWT = (req, res, next) => {
const authHeader = req.headers.authorization;
if (authHeader) {
const token = authHeader.split(' ')[1];
jwt.verify(token, secretKey, (err, user) => {
if (err) {
return res.sendStatus(403);
}
req.user = user;
next();
});
} else {
res.sendStatus(401);
}
};
/**
* @swagger
* paths:
* /movies:
* get:
* security:
* - BearerAuth: []
* tags:
* - Movies
* summary: 'List all movies'
* description: 'This endpoint returns a list of all movies. Requires authentication.'
* responses:
* 200:
* description: 'List of movies'
* 401:
* description: 'Unauthorized'
*/
app.get('/movies', authenticateJWT, async (req, res) => {
const movies = await prisma.movie.findMany();
res.json(movies);
});
/**
* @swagger
* paths:
* /movies/{id}:
* get:
* security:
* - BearerAuth: []
* tags:
* - Movies
* summary: 'Get a movie by ID'
* description: 'This endpoint returns a movie by its ID.'
* parameters:
* - in: 'path'
* name: 'id'
* required: true
* type: 'integer'
* responses:
* 200:
* description: 'Movie data'
*/
app.get("/movies/:id", authenticateJWT, async (req, res) => {
const { id } = req.params;
const movie = await prisma.movie.findUnique({
where: { id: Number(id) },
});
res.json(movie);
});
/**
* @swagger
* paths:
* /movies:
* post:
* security:
* - BearerAuth: []
* tags:
* - Movies
* summary: 'Create a new movie'
* description: 'This endpoint creates a new movie. Requires authentication.'
* consumes:
* - 'application/json'
* produces:
* - 'application/json'
* parameters:
* - in: 'body'
* name: 'body'
* required: true
* schema:
* type: 'object'
* properties:
* title:
* type: 'string'
* description: 'Title of the movie'
* director:
* type: 'string'
* description: 'Director of the movie'
* rating:
* type: 'number'
* description: 'Rating of the movie (between 0 and 10)'
* responses:
* 200:
* description: 'Movie created'
* 401:
* description: 'Unauthorized'
* 400:
* description: 'Invalid input'
*/
app.post("/movies", [
check('title').isString().notEmpty(),
check('director').isString().notEmpty(),
check('rating').isFloat({ min: 0, max: 10 }).notEmpty(),
], authenticateJWT, async (req, res) => {
const errors = validationResult(req);
if (!errors.isEmpty()) {
return res.status(400).json({ errors: errors.array() });
}
const { title, director, rating } = req.body;
const userId = req.user.id;
try {
const movie = await prisma.movie.create({
data: {
title,
director,
rating,
createdBy: { connect: { id: userId } },
},
});
res.json(movie);
} catch (error) {
console.log(`Error creating movie: ${error}`);
res.status(500).json("Error creating movie");
}
});
/**
* @swagger
* paths:
* /movies/{id}:
* put:
* security:
* - BearerAuth: []
* tags:
* - Movies
* summary: 'Update a movie by ID'
* description: 'This endpoint updates a movie by its ID. Requires authentication.'
* parameters:
* - in: 'path'
* name: 'id'
* required: true
* type: 'integer'
* - in: 'body'
* name: 'body'
* required: true
* schema:
* type: 'object'
* properties:
* title:
* type: 'string'
* director:
* type: 'string'
* rating:
* type: 'number'
* responses:
* 200:
* description: 'Movie updated'
* 401:
* description: 'Unauthorized'
* 400:
* description: 'Invalid input'
*/
app.put("/movies/:id", [
check('title').isString().notEmpty(),
check('director').isString().notEmpty(),
check('rating').isFloat({ min: 0, max: 10}).notEmpty(),
], authenticateJWT, async (req, res) => {
const errors = validationResult(req);
if(!errors.isEmpty()){
return res.status(400).json({ errors: errors.array() });
}
const { id } = req.params;
const { title, director, rating } = req.body;
const userId = req.user.id;
try {
const movie = await prisma.movie.update({
where: { id: Number(id) },
data: {
title,
director,
rating,
updatedBy: { connect: { id: userId } },
},
});
res.json(movie);
} catch (error){
console.log(`Error updating movie: ${error}`);
res.status(500).json("Error updating movie");
}
});
/**
* @swagger
* paths:
* /movies/{id}:
* delete:
* security:
* - BearerAuth: []
* tags:
* - Movies
* summary: 'Delete a movie by ID'
* description: 'This endpoint deletes a movie by its ID. Requires authentication.'
* parameters:
* - in: 'path'
* name: 'id'
* required: true
* type: 'integer'
* responses:
* 200:
* description: 'Movie deleted'
* 401:
* description: 'Unauthorized'
*/
app.delete("/movies/:id", authenticateJWT, async (req, res) => {
const { id } = req.params;
const userId = req.user.id;
try {
// Check if the movie exists and was created by the authenticated user
const existingMovie = await prisma.movie.findFirst({
where: {
id: Number(id),
createdBy: { id: userId },
},
});
if (!existingMovie) {
return res.status(404).json("Movie not found or unauthorized");
}
const deletedMovie = await prisma.movie.delete({
where: {
id: Number(id),
},
});
res.json(deletedMovie);
} catch (error) {
console.log(`Error deleting movie: ${error}`);
res.status(500).json("Error deleting movie");
}
});
// Central error handler for middleware
app.use((err, req, res, next) => {
console.error(err.stack);
res.status(500).send('Something broke!');
});
// Start server
const port = process.env.PORT || 3000;
app.listen(port, () => {
console.log(`Server is running on http://localhost:${port}`);
});
// Debug DB URL
console.log("Debugging DATABASE_URL:", process.env.DATABASE_URL);