-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJWT.js
73 lines (63 loc) · 1.5 KB
/
JWT.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
const express = require("express");
const jwt = require("jsonwebtoken");
const jwtPassword = "trecko";
const app = express();
app.use(express.json());
const ALL_USERS = [
{
username: "[email protected]",
password: "abc",
name: "Anjan Suman",
},
{
username: "[email protected]",
password: "tag",
name: "Abhishek Kumar",
},
{
username: "[email protected]",
password: "free",
name: "Praroop Anand",
},
];
function userExists(username, password) {
for(let i=0; i < ALL_USERS.length; i++) {
if(ALL_USERS[i].username == username && ALL_USERS[i].password == password) {
return true;
}
}
return false;
}
app.post("/sign-in", function (req, res) {
const username = req.body.username;
const password = req.body.password;
if (!userExists(username, password)) {
return res.status(403).json({
msg: "The user doesn't exist",
});
}
var token = jwt.sign({ username: username }, jwtPassword);
return res.json({
token,
});
});
app.get("/users", function (req, res) {
const token = req.headers.authorization;
try {
const decoded = jwt.verify(token, jwtPassword);
const username = decoded.username;
return res.json({
user: ALL_USERS.filter((value) => {
if(value.username == username) {
return false;
}
return true;
})
})
} catch (err) {
return res.status(403).json({
msg: "Invalid token",
});
}
});
app.listen(3000)