-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathauth.js
45 lines (34 loc) · 940 Bytes
/
auth.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
const fs = require('fs');
const jwt = require('jsonwebtoken');
const bcrypt = require('bcryptjs');
const path = require('path');
const crypto = require('crypto');
const usersFilePath = path.join(__dirname, 'data', 'users.json');
const SECRET_KEY = crypto.randomBytes(64).toString('hex');
const getUsers = () => {
const usersData = fs.readFileSync(usersFilePath);
return JSON.parse(usersData);
};
const fileAuth = (username, password) => {
const users = getUsers();
const user = users.find(user => user.username === username);
if (user && bcrypt.compareSync(password, user.password)) {
return user;
}
return null;
};
const generateJWT = (username) => {
return jwt.sign({ username }, SECRET_KEY, { expiresIn: '1h' });
};
const verifyJWT = (token) => {
try {
return jwt.verify(token, SECRET_KEY);
} catch (error) {
return null;
}
};
module.exports = {
fileAuth,
generateJWT,
verifyJWT
};