-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAuth_Assignment.js
81 lines (69 loc) · 1.71 KB
/
Auth_Assignment.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
const express = require("express");
const jwt = require("jsonwebtoken");
const jwtPassword = "123456";
const app = express();
//users array
const ALL_USERS = [
{
username: "[email protected]",
password: "123",
name: "Dev ",
},
{
username: "[email protected]",
password: "123321",
name: "Raman singh",
},
{
username: "[email protected]",
password: "123321",
name: "Priya kumari",
},
];
//this function will check for valid users if yes then it will register and if no then it wont register.
function userExists(username, password) {
// write logic to return true or false if this user exists
// in ALL_USERS array
// bydefault it is false
const userExists = false;
for (let i = 0; i < ALL_USERS.length; i++) {
if (
ALL_USERS[i].username == username &&
ALL_USERS[i].password == password
) {
userExists = true;
}
}
return userExists;
}
// post request
app.post("/signin", function (req, res) {
const username = req.body.username;
const password = req.body.password;
if (!userExists(username, password)) {
return res.status(403).json({
msg: "User doesnt exist in our in memory db",
});
}
// this "shhh" is long string for token
var token = jwt.sign({ username: username }, "jwtPassword");
return res.json({
token,
});
});
//post request
app.get("/users", function (req, res) {
const token = req.headers.authorization;
try {
const decoded = jwt.verify(token, jwtPassword);
const username = decoded.username;
// return a list of users other than this username
} catch (err) {
return res.status(403).json({
msg: "Invalid token",
});
}
res.json
});
app.listen(3000);
//continue after the break !