-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
622 lines (590 loc) · 16.1 KB
/
Copy pathapp.js
File metadata and controls
622 lines (590 loc) · 16.1 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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
var express = require("express");
const cors = require("cors");
const { doubleCsrf } = require("csrf-csrf");
var bodyParser = require('body-parser');
const swaggerUI = require("swagger-ui-express");
const swaggerJsDoc = require("swagger-jsdoc");
var crypto = require('crypto');
var cookieParser = require("cookie-parser");
const port = process.env.PORT || 3001;
const { Sequelize } = require("sequelize");
const sequelize = new Sequelize("postgres://flex_user:w8EUofyBa0h6obRCmlFzlEW6xMjfgDFO@dpg-cead3qmn6mphc8t5t9ng-a/flex_db");
const doubleCsrfOptions = {
getSecret: () => "goddamnpiceofsafgafsfjkh", // A function that returns the secret from the request
cookieName: "flexy-psifi.x-csrf-token", // The name of the cookie to be used, recommend using Host prefix.
cookieOptions: {
httpOnly: false,
sameSite: "none", // Recommend you make this strict if posible
path: "/",
secure: false,
},
size: 64, // The size of the generated tokens in bits
ignoredMethods: ["GET", "HEAD", "OPTIONS"], // A list of request methods that will not be protected.
getTokenFromRequest: (req) => req.headers["X-XSRF-TOKEN"], // A function that returns the token from the request
};
const {
invalidCsrfTokenError, // This is just for convenience if you plan on making your own middleware.
generateToken, // Use this in your routes to provide a CSRF hash cookie and token.
validateRequest, // Also a convenience if you plan on making your own middleware.
doubleCsrfProtection, // This is the default CSRF protection middleware.
} = doubleCsrf(doubleCsrfOptions);
const options = {
definition: {
openapi: "3.0.0",
info: {
title: "Flex API",
version: "1.0.0",
description: "A simple Express API",
},
servers: [
{
url: "https://flex-api-45ah.onrender.com",
},
{
url: "http://localhost:3001",
},
],
},
apis: ["./app.js"],
};
const specs = swaggerJsDoc(options);
const app = express();
app.use(cors({
origin: [
"https://flex-app.onrender.com",
"https://app.systemintegration.tk",
"http://localhost:4200",
'http://127.0.0.1:4200',
"130.225.244.180",
'100.20.92.101',
'44.225.181.72',
'44.227.217.144'],
credentials: true
}));
app.use(express.json());
app.use(bodyParser.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
app.get("/", (req, res) => res.json({ message: "Hello World" }));
app.get("/csrf", (req, res) => {
const csrfToken = generateToken(res);
// You could also pass the token into the context of a HTML response.
return res.json({ csrfToken });
});
app.use("/docs", swaggerUI.serve, swaggerUI.setup(specs));
const User = sequelize.define(
"user",
{
// attributes
name: {
type: Sequelize.STRING,
allowNull: false
},
password: {
type: Sequelize.STRING,
allowNull: false,
},
salt: {
type: Sequelize.STRING,
allowNull: false
},
},
{
// options
}
);
const Fav = sequelize.define(
"favorites",
{
// attributes
user_id: {
type: Sequelize.INTEGER,
allowNull: false,
},
movie_id: {
type: Sequelize.INTEGER,
allowNull: false,
},
is_TV: {
type: Sequelize.BOOLEAN,
allowNull: false,
},
},
{
// options
}
);
sequelize.sync();
/**
* @swagger
* /user/{userId}:
* get:
* summary: Login with password
* tags: [Auth]
* parameters:
* - in: path
* name: userId
* schema:
* type: integer
* required: true
* description: Numeric ID of the user to get
* responses:
* 400:
* description: Please fill out all fields
* 401:
* description: authentication failed
* 500:
* description: Internal server error
* 200:
* description: Logged in successfully
* content:
* application/json:
* schema:
* type: object
* properties:
* user:
* type: object
* properties:
* id:
* type: integer
* description: User ID
* name:
* type: string
* description: Username
* example:
* id: 1
* name: JohnnyBoy
*/
app.get("/user/:userId", async (req, res) => {
const userId = req.params.userId;
try {
const authuser = await User.findOne({
where: {
id: userId,
},
});
if (!authuser) {
return res.status(401).send("user not found");
}
var user = {
id: authuser.id,
name: authuser.name
}
return res.json({ user });
} catch (error) {
console.error(error);
}
});
/**
* @swagger
* /signup:
* post:
* summary: Sign up with password
* tags: [Auth]
* requestBody:
* required: true
* content:
* application/json:
* schema:
* type: object
* properties:
* name:
* type: string
* description: Username
* password:
* type: string
* description: Password
* example:
* username: JohnnyBoy
* password: Password123
* responses:
* 400:
* description: Please fill out all fields
* 401:
* description: User already exists
* 500:
* description: Internal server error
* 200:
* description: signed up successfully
*/
app.post("/signup", async (req, res) => {
const { name, password } = req.body;
const t = await sequelize.transaction();
try {
const a = await User.findAll({
where: {
name: name
},
});
if (a.length > 0) {
return res.status(401).send("User already exists");
}
var salt = crypto.randomBytes(16).toString('base64');
const newuser = await User.create(
{
name: name,
password: crypto.createHash('RSA-SHA256').update(password).update(salt).digest('hex'),
salt: salt
},
{ transaction: t }
);
await t.commit();
if (!newuser) {
return res.status(401).send("something went wrong");
}
var user = {
id: newuser.id,
name: newuser.name
}
//res.cookie("user_id", user.id, { maxAge: 900000, httpOnly: true, SameSite: 'None', Secure: true });
return res.json({ user });
} catch (error) {
console.error(error);
await t.rollback();
return res.status(401).send("Wrong username or password");
}
});
/**
* @swagger
* /login:
* post:
* summary: Login with password
* tags: [Auth]
* requestBody:
* required: true
* content:
* application/json:
* schema:
* type: object
* properties:
* name:
* type: string
* description: Username
* password:
* type: string
* description: Password
* example:
* username: JohnnyBoy
* password: Password123
* responses:
* 400:
* description: Please fill out all fields
* 401:
* description: authentication failed
* 500:
* description: Internal server error
* 200:
* description: Logged in successfully
*/
app.post("/login", async (req, res) => {
const { name, password } = req.body;
try {
const authuser = await User.findOne({
where: {
name: name,
},
});
if (authuser === null) {
return res.status(401).send("Wrong username or password");
}
if (authuser.password !== crypto.createHash('RSA-SHA256').update(password).update(authuser.salt).digest('hex')) {
return res.status(401).send("Wrong username or password");
}
var user = {
id: authuser.id,
name: authuser.name
}
//res.cookie("user_id", user.id, { maxAge: 900000, httpOnly: true, SameSite: 'None', Secure: true })
return res.json({ user });
} catch (error) {
console.error(error);
return res.status(401).send("Wrong username or password");
}
});
/**
* @swagger
* /favorites/{userId}:
* get:
* summary: Get favorites of user
* tags: [Favorites]
* parameters:
* - in: path
* name: userId
* schema:
* type: integer
* required: true
* description: Numeric ID of the user to get
* responses:
* 400:
* description: Something went wrong
* 401:
* description: authentication failed
* 500:
* description: Internal server error
* 200:
* description: Favorites retrieved successfully
* content:
* application/json:
* schema:
* type: object
* properties:
* favs:
* type: array
* items:
* type: object
* properties:
* id:
* type: integer
* description: Favorite ID
* user_id:
* type: integer
* description: User ID
* movie_id:
* type: integer
* description: Movie ID
* is_TV:
* type: boolean
* description: Is a TV show
* example:
* - id: 1
* user_id: 1
* movie_id: 1
* is_TV: false
*/
app.get("/favorites/:userId", async (req, res) => {
const userId = req.params.userId;
try {
const favs = await Fav.findAll({
where: {
user_id: userId,
},
});
return res.json({ favs });
} catch (error) {
console.error(error);
return res.status(400).send("Something went wrong");
}
});
/**
* @swagger
* /favorites:
* post:
* summary: Add favorite
* tags: [Favorites]
* requestBody:
* required: true
* content:
* application/json:
* schema:
* type: object
* properties:
* user_id:
* type: integer
* description: User ID
* movie_id:
* type: integer
* description: Movie ID
* is_TV:
* type: boolean
* description: Is a TV show
* example:
* user_id: 1
* movie_id: 1
* is_TV: false
* responses:
* 400:
* description: Please fill out all fields
* 401:
* description: authentication failed
* 500:
* description: Internal server error
* 200:
* description: Logged in successfully
* content:
* application/json:
* schema:
* type: object
* properties:
* fav:
* type: object
* properties:
* id:
* type: integer
* description: Favorite ID
* user_id:
* type: integer
* description: User ID
* movie_id:
* type: integer
* description: Movie ID
* is_TV:
* type: boolean
* description: Is a TV show
* example:
* id: 1
* user_id: 1
* movie_id: 1
* is_TV: false
*/
app.post("/favorites", async (req, res) => {
const t = await sequelize.transaction();
const { user_id, movie_id, is_TV } = req.body;
try {
const isfav = await Fav.findAll(
{
where: {
user_id: user_id,
movie_id: movie_id,
is_TV: is_TV,
},
},
{ transaction: t }
);
if (isfav.length > 0) {
return res.status(401).send("Already favourited");
}
const fav = await Fav.create({
user_id: user_id,
movie_id: movie_id,
is_TV: is_TV,
});
await t.commit();
return res.json({ fav });
} catch (error) {
console.error(error);
await t.rollback();
return res.status(400).send("Something went wrong");
}
});
/**
* @swagger
* /favorites/{userId}/{movieId}:
* get:
* summary: Get favorites of user
* tags: [Favorites]
* parameters:
* - in: path
* name: userId
* schema:
* type: integer
* required: true
* description: Numeric ID of the user to get
* - in: path
* name: movieId
* schema:
* type: integer
* required: true
* description: Numeric ID of the movie to get
* responses:
* 400:
* description: Something went wrong
* 401:
* description: authentication failed
* 500:
* description: Internal server error
* 200:
* description: Favorites retrieved successfully
* content:
* application/json:
* schema:
* type: object
* properties:
* isfav:
* type: boolean
* description: Movie is favorited by user
* example: true
*/
app.get("/favorites/:userId/:movieId", async (req, res) => {
const userId = req.params.userId;
const movieId = req.params.movieId;
try {
const fav = await Fav.findAll({
where: {
user_id: userId,
movie_id: movieId,
},
});
const isfav = fav.length > 0;
return res.json({ isfav });
} catch (error) {
console.error(error);
return res.status(400).send("Something went wrong");
}
});
/**
* @swagger
* /favorites/{userId}/{movieId}:
* delete:
* summary: Delete favorite of user
* tags: [Favorites]
* parameters:
* - in: path
* name: userId
* schema:
* type: integer
* required: true
* description: Numeric ID of the user to get
* - in: path
* name: movieId
* schema:
* type: integer
* required: true
* description: Numeric ID of the movie to get
* responses:
* 400:
* description: Something went wrong
* 401:
* description: authentication failed
* 500:
* description: Internal server error
* 200:
* description: Favorites retrieved successfully
* content:
* application/json:
* schema:
* type: object
* properties:
* fav:
* type: object
* properties:
* id:
* type: integer
* description: Favorite ID
* user_id:
* type: integer
* description: User ID
* movie_id:
* type: integer
* description: Movie ID
* is_TV:
* type: boolean
* description: Is a TV show
* example:
* id: 1
* user_id: 1
* movie_id: 1
* is_TV: false
*/
app.delete("/favorites/:userId/:movieId", async (req, res) => {
const userId = req.params.userId;
const movieId = req.params.movieId;
const t = await sequelize.transaction();
try {
const fav = await Fav.destroy(
{
where: {
user_id: userId,
movie_id: movieId,
},
},
{ transaction: t }
);
await t.commit();
return res.json({ fav });
} catch (error) {
console.error(error);
await t.rollback();
return res.status(400).send("Something went wrong");
}
});
app.listen(port, () => console.log(`Flex-Api listening on port ${port}!`));