-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthenticationController.js
48 lines (40 loc) · 1.13 KB
/
authenticationController.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
const crypto = require('crypto');
const { db } = require('./dbConnection');
const hashPassword = password => {
const hash = crypto.createHash("sha256");
hash.update(password);
return hash.digest("hex");
}
const areCredentialsValid = async (username, password) => {
const user = await db
.select()
.from('users')
.where({ username })
.first();
if (!user) return false;
return hashPassword(password) === user.passwordHash;
}
const authenticationMiddleware = async (req, res, next) => {
try {
const authHeader = req.headers.authorization;
const credentials = Buffer.from(
authHeader.slice("basic".length + 1),
"base64"
).toString();
const [username, password] = credentials.split(':');
const validCredentialsSent = await areCredentialsValid(username, password);
if(!validCredentialsSent) {
throw new Error('Invalid credentials');
}
} catch (e) {
res.error = { message: 'Please provide valid credentials' };
res.status = 401;
return res;
}
await next();
}
module.exports = {
hashPassword,
areCredentialsValid,
authenticationMiddleware
};