fix: check if password is not null on login req
This commit is contained in:
@@ -14,7 +14,8 @@ async function login(req, res) {
|
|||||||
const currentTime = new Date().toISOString();
|
const currentTime = new Date().toISOString();
|
||||||
try {
|
try {
|
||||||
const user = await authService.validateUser(customerNo, password);
|
const user = await authService.validateUser(customerNo, password);
|
||||||
if (!user) return res.status(401).json({ error: 'invalid credentials' });
|
if (!user || !password)
|
||||||
|
return res.status(401).json({ error: 'invalid credentials' });
|
||||||
const token = generateToken(user.customer_no, '1d');
|
const token = generateToken(user.customer_no, '1d');
|
||||||
const FirstTimeLogin = await authService.CheckFirstTimeLogin(customerNo);
|
const FirstTimeLogin = await authService.CheckFirstTimeLogin(customerNo);
|
||||||
await db.query('UPDATE users SET last_login = $1 WHERE customer_no = $2', [
|
await db.query('UPDATE users SET last_login = $1 WHERE customer_no = $2', [
|
||||||
@@ -34,7 +35,6 @@ async function fetchUserDetails(req, res) {
|
|||||||
const user = await authService.findUserByCustomerNo(customerNo);
|
const user = await authService.findUserByCustomerNo(customerNo);
|
||||||
if (!user) return res.status(404).json({ message: 'USER_NOT_FOUND' });
|
if (!user) return res.status(404).json({ message: 'USER_NOT_FOUND' });
|
||||||
return res.json(user);
|
return res.json(user);
|
||||||
|
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
logger.error(err, 'error occured while fetching user details');
|
logger.error(err, 'error occured while fetching user details');
|
||||||
res.status(500).json({ error: 'something went wrong' });
|
res.status(500).json({ error: 'something went wrong' });
|
||||||
@@ -102,4 +102,11 @@ async function setTransactionPassword(req, res) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = { login, tpin, setTpin, setLoginPassword, setTransactionPassword,fetchUserDetails };
|
module.exports = {
|
||||||
|
login,
|
||||||
|
tpin,
|
||||||
|
setTpin,
|
||||||
|
setLoginPassword,
|
||||||
|
setTransactionPassword,
|
||||||
|
fetchUserDetails,
|
||||||
|
};
|
||||||
|
Reference in New Issue
Block a user