Update authenticate.js

pull/62/head v0.2.9
ShahanaFarooqui 5 years ago committed by GitHub
parent 81a6a36fba
commit 6ed9bafc73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -26,9 +26,10 @@ exports.authenticateUserWithCookie = (req, res, next) => {
};
exports.authenticateUser = (req, res, next) => {
password = atob(req.body.password);
if(+common.rtl_sso) {
if (common.cookie === password) {
const access_key = req.cookies['access-key'];
res.clearCookie("access-key");
if (common.cookie === access_key) {
const token = jwt.sign(
{ user: 'Custom_User', lndConfigPath: common.lnd_config_path, macaroonPath: common.macaroon_path },
'default_secret_key'
@ -41,6 +42,7 @@ exports.authenticateUser = (req, res, next) => {
});
}
} else {
password = atob(req.body.password);
if(upperCase(common.node_auth_type) === 'CUSTOM') {
if (common.rtl_pass === password) {
var rpcUser = 'Custom_User';
@ -89,4 +91,4 @@ exports.authenticateUser = (req, res, next) => {
});
}
}
};
};

Loading…
Cancel
Save