2019-01-01 11:26:51 -05:00
|
|
|
var ini = require('ini');
|
|
|
|
var fs = require('fs');
|
2019-02-09 15:37:36 -05:00
|
|
|
var common = require('../common');
|
2019-01-01 11:26:51 -05:00
|
|
|
const jwt = require("jsonwebtoken");
|
|
|
|
var upperCase = require('upper-case');
|
|
|
|
var atob = require('atob');
|
2019-01-13 17:55:25 -05:00
|
|
|
var logger = require('./logger');
|
2019-01-01 11:26:51 -05:00
|
|
|
|
|
|
|
exports.authenticateUser = (req, res, next) => {
|
|
|
|
password = atob(req.body.password);
|
2019-02-12 08:36:04 -05:00
|
|
|
if(+common.rtl_sso) {
|
|
|
|
if (common.cookie === password) {
|
|
|
|
const token = jwt.sign(
|
|
|
|
{ user: 'Custom_User', lndConfigPath: common.lnd_config_path, macaroonPath: common.macaroon_path },
|
|
|
|
'default_secret_key'
|
|
|
|
);
|
|
|
|
res.status(200).json({ token: token });
|
2019-01-01 11:26:51 -05:00
|
|
|
} else {
|
2019-02-12 08:36:04 -05:00
|
|
|
res.status(401).json({
|
|
|
|
message: "SSO Authentication Failed!",
|
|
|
|
error: "Please check app stack configurations!"
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
const RTLConfFilePath = common.rtl_conf_file_path + '/RTL.conf';
|
|
|
|
fs.readFile(RTLConfFilePath, 'utf8', function (err, data) {
|
|
|
|
if (err) {
|
|
|
|
logger.error('\r\nAuthenticate: 13: ' + JSON.stringify(Date.now()) + ': ERROR: RTL Config Reading Failed!');
|
|
|
|
res.status(500).json({
|
|
|
|
message: "RTL Config Reading Failed!",
|
|
|
|
error: err
|
|
|
|
});
|
2019-01-01 11:26:51 -05:00
|
|
|
} else {
|
2019-02-12 08:36:04 -05:00
|
|
|
if(upperCase(common.node_auth_type) === 'CUSTOM') {
|
|
|
|
const rtlPass = ini.parse(data).Authentication.rtlPass;
|
|
|
|
if (rtlPass === password) {
|
|
|
|
var rpcUser = 'Custom_User';
|
|
|
|
const token = jwt.sign(
|
|
|
|
{ user: rpcUser, lndConfigPath: common.lnd_config_path, macaroonPath: common.macaroon_path },
|
|
|
|
'default_secret_key'
|
|
|
|
);
|
|
|
|
res.status(200).json({ token: token });
|
2019-01-01 11:26:51 -05:00
|
|
|
} else {
|
2019-02-12 08:36:04 -05:00
|
|
|
res.status(401).json({
|
|
|
|
message: "Authentication Failed!",
|
|
|
|
error: "Password Validation Failed!"
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fs.readFile(common.lnd_config_path, 'utf8', function (err, data) {
|
|
|
|
if (err) {
|
|
|
|
logger.error('\r\nAuthenticate: 45: ' + JSON.stringify(Date.now()) + ': ERROR: RTL Config Reading Failed!');
|
|
|
|
res.status(500).json({
|
|
|
|
message: "LND Config Reading Failed!",
|
|
|
|
error: err
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
const jsonLNDConfig = ini.parse(data);
|
|
|
|
if (undefined !== jsonLNDConfig.Bitcoind && undefined !== jsonLNDConfig.Bitcoind['bitcoind.rpcpass']) {
|
|
|
|
if (jsonLNDConfig.Bitcoind['bitcoind.rpcpass'] === password) {
|
|
|
|
var rpcUser = (undefined !== jsonLNDConfig.Bitcoind['bitcoind.rpcuser']) ? jsonLNDConfig.Bitcoind['bitcoind.rpcuser'] : '';
|
|
|
|
const token = jwt.sign(
|
|
|
|
{ user: rpcUser, lndConfigPath: common.lnd_config_path, macaroonPath: common.macaroon_path },
|
|
|
|
'default_secret_key'
|
|
|
|
);
|
|
|
|
res.status(200).json({ token: token });
|
|
|
|
} else {
|
|
|
|
res.status(401).json({
|
|
|
|
message: "Authentication Failed!",
|
|
|
|
error: "Password Validation Failed!"
|
|
|
|
});
|
|
|
|
}
|
2019-01-01 11:26:51 -05:00
|
|
|
} else {
|
|
|
|
res.status(401).json({
|
|
|
|
message: "Authentication Failed!",
|
2019-02-12 08:36:04 -05:00
|
|
|
error: "Password Not Found In LND Config!"
|
2019-01-01 11:26:51 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2019-02-12 08:36:04 -05:00
|
|
|
});
|
|
|
|
}
|
2019-01-01 11:26:51 -05:00
|
|
|
}
|
2019-02-12 08:36:04 -05:00
|
|
|
})
|
|
|
|
}
|
2019-01-01 11:26:51 -05:00
|
|
|
};
|