fix: lint errors

This commit is contained in:
Robert Heim 2024-06-18 22:30:49 +02:00
parent eaa4b1ebaa
commit 34ae8e42f3
1 changed files with 27 additions and 27 deletions

View File

@ -37,6 +37,32 @@ const {
const requiresPassword = !!PASSWORD || !!PASSWORD_HASH;
/**
* Checks if `password` matches the PASSWORD_HASH.
*
* For backward compatibility it also allows `password` to match the clear text PASSWORD,
* but only if no PASSWORD_HASH is provided.
*
* If both enviornment variables are not set, the password is always invalid.
*
* @param {string} password String to test
* @returns {boolean} true if matching environment, otherwise false
*/
const isPasswordValid = (password) => {
if (typeof password !== 'string') {
return false;
}
if (PASSWORD_HASH) {
return bcrypt.compareSync(password, PASSWORD_HASH);
}
if (PASSWORD) {
return password === PASSWORD;
}
return false;
};
module.exports = class Server {
constructor() {
@ -101,7 +127,7 @@ module.exports = class Server {
status: 401,
message: 'Incorrect Password',
});
};
}
event.node.req.session.authenticated = true;
event.node.req.session.save();
@ -239,32 +265,6 @@ module.exports = class Server {
});
};
/**
* Checks if `password` matches the PASSWORD_HASH.
*
* For backward compatibility it also allows `password` to match the clear text PASSWORD,
* but only if no PASSWORD_HASH is provided.
*
* If both enviornment variables are not set, the password is always invalid.
*
* @param {string} password String to test
* @returns {boolean} true if matching environment, otherwise false
*/
const isPasswordValid = (password) => {
if (typeof password !== 'string') {
return false;
}
if (!!PASSWORD_HASH) {
return bcrypt.compareSync(password, PASSWORD_HASH);
}
if (!!PASSWORD) {
return password == PASSWORD;
}
return false;
}
// Static assets
const publicDir = '/app/www';
app.use(