2019-03-02 17:55:19 +00:00
|
|
|
var fs = require('fs');
|
2019-02-24 13:16:41 +00:00
|
|
|
var crypto = require('crypto');
|
2019-09-17 01:17:28 +00:00
|
|
|
var path = require('path');
|
2018-10-10 00:08:05 +00:00
|
|
|
var common = {};
|
|
|
|
|
2019-04-06 02:52:00 +00:00
|
|
|
common.multi_node_setup = false;
|
2019-02-09 20:37:36 +00:00
|
|
|
common.rtl_conf_file_path = '';
|
2019-02-12 13:36:04 +00:00
|
|
|
common.node_auth_type = 'DEFAULT';
|
2019-02-16 22:43:12 +00:00
|
|
|
common.rtl_pass = '';
|
2019-02-12 13:36:04 +00:00
|
|
|
common.rtl_sso = 0;
|
2019-04-06 22:42:09 +00:00
|
|
|
common.port = 3000;
|
2019-11-14 04:09:14 +00:00
|
|
|
common.currency_unit = 'USD';
|
2019-02-12 23:13:09 +00:00
|
|
|
common.rtl_cookie_path = '';
|
2019-02-12 13:36:04 +00:00
|
|
|
common.logout_redirect_link = '/login';
|
|
|
|
common.cookie = '';
|
2019-02-24 17:00:39 +00:00
|
|
|
common.secret_key = crypto.randomBytes(64).toString('hex');
|
2019-04-06 02:52:00 +00:00
|
|
|
common.nodes = [];
|
2019-04-07 00:20:40 +00:00
|
|
|
common.selectedNode = {};
|
2019-03-02 17:55:19 +00:00
|
|
|
|
2019-09-02 04:11:37 +00:00
|
|
|
common.getSelLNServerUrl = () => {
|
2019-09-07 21:31:32 +00:00
|
|
|
return common.selectedNode.ln_server_url;
|
2019-04-07 00:20:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
common.getOptions = () => {
|
2019-09-07 21:31:32 +00:00
|
|
|
return common.selectedNode.options;
|
2019-04-06 02:52:00 +00:00
|
|
|
};
|
|
|
|
|
2019-11-06 21:37:04 +00:00
|
|
|
common.updateSelectedNodeOptions = () => {
|
2019-12-12 00:58:20 +00:00
|
|
|
if (!common.selectedNode) {
|
|
|
|
common.selectedNode = {};
|
|
|
|
}
|
2019-11-06 21:37:04 +00:00
|
|
|
common.selectedNode.options = {
|
|
|
|
url: '',
|
|
|
|
rejectUnauthorized: false,
|
|
|
|
json: true,
|
|
|
|
form: ''
|
|
|
|
};
|
|
|
|
try {
|
|
|
|
if (common.selectedNode && common.selectedNode.ln_implementation && common.selectedNode.ln_implementation.toUpperCase() === 'CLT') {
|
|
|
|
common.selectedNode.options.headers = { 'macaroon': Buffer.from(fs.readFileSync(path.join(common.selectedNode.macaroon_path, 'access.macaroon'))).toString("base64") };
|
|
|
|
} else {
|
|
|
|
common.selectedNode.options.headers = { 'Grpc-Metadata-macaroon': fs.readFileSync(path.join(common.selectedNode.macaroon_path, 'admin.macaroon')).toString('hex') };
|
|
|
|
}
|
|
|
|
return { status: 200, message: 'Updated Successfully!' };
|
|
|
|
} catch(err) {
|
|
|
|
common.selectedNode.options = {
|
|
|
|
url: '',
|
|
|
|
rejectUnauthorized: false,
|
|
|
|
json: true,
|
|
|
|
form: ''
|
|
|
|
};
|
|
|
|
console.error('Common Update Selected Node Options Error:' + JSON.stringify(err));
|
|
|
|
return { status: 502, message: err };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-06 22:42:09 +00:00
|
|
|
common.setOptions = () => {
|
2019-09-07 21:31:32 +00:00
|
|
|
if (undefined !== common.nodes[0].options && undefined !== common.nodes[0].options.headers) { return; }
|
2019-11-06 00:26:40 +00:00
|
|
|
if (common.nodes && common.nodes.length > 0) {
|
|
|
|
common.nodes.forEach(node => {
|
|
|
|
node.options = {
|
|
|
|
url: '',
|
|
|
|
rejectUnauthorized: false,
|
|
|
|
json: true,
|
|
|
|
form: ''
|
|
|
|
};
|
|
|
|
try {
|
2019-10-27 20:39:40 +00:00
|
|
|
if (node.ln_implementation && node.ln_implementation.toUpperCase() === 'CLT') {
|
|
|
|
node.options.headers = { 'macaroon': Buffer.from(fs.readFileSync(path.join(node.macaroon_path, 'access.macaroon'))).toString("base64") };
|
|
|
|
} else {
|
|
|
|
node.options.headers = { 'Grpc-Metadata-macaroon': fs.readFileSync(path.join(node.macaroon_path, 'admin.macaroon')).toString('hex') };
|
|
|
|
}
|
2019-11-06 00:26:40 +00:00
|
|
|
} catch (err) {
|
|
|
|
console.error('Common Set Options Error:' + JSON.stringify(err));
|
2019-10-27 20:39:40 +00:00
|
|
|
node.options = {
|
|
|
|
url: '',
|
|
|
|
rejectUnauthorized: false,
|
|
|
|
json: true,
|
|
|
|
form: ''
|
|
|
|
};
|
2019-11-06 00:26:40 +00:00
|
|
|
}
|
|
|
|
});
|
2019-11-06 21:37:04 +00:00
|
|
|
common.updateSelectedNodeOptions();
|
2019-09-07 21:31:32 +00:00
|
|
|
}
|
2019-03-02 17:55:19 +00:00
|
|
|
}
|
|
|
|
|
2019-04-06 02:52:00 +00:00
|
|
|
common.findNode = (selNodeIndex) => {
|
2019-09-07 21:31:32 +00:00
|
|
|
return common.nodes.find(node => node.index == selNodeIndex);
|
2019-04-06 02:52:00 +00:00
|
|
|
}
|
2018-10-10 00:08:05 +00:00
|
|
|
|
|
|
|
common.convertToBTC = (num) => {
|
2019-09-07 21:31:32 +00:00
|
|
|
return (num / 100000000).toFixed(6);
|
2018-10-10 00:08:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
common.convertTimestampToDate = (num) => {
|
2019-11-16 03:34:05 +00:00
|
|
|
return new Date(+num * 1000).toUTCString().substring(5, 22).replace(' ', '/').replace(' ', '/').toUpperCase();
|
2018-10-10 00:08:05 +00:00
|
|
|
};
|
|
|
|
|
2019-01-19 23:47:56 +00:00
|
|
|
common.sortAscByKey = (array, key) => {
|
2019-09-07 21:31:32 +00:00
|
|
|
return array.sort(function (a, b) {
|
2019-12-05 20:16:41 +00:00
|
|
|
var x = +a[key]; var y = +b[key];
|
2019-09-07 21:31:32 +00:00
|
|
|
return ((x < y) ? -1 : ((x > y) ? 1 : 0));
|
|
|
|
});
|
2019-01-19 23:47:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
common.sortDescByKey = (array, key) => {
|
2019-09-07 21:31:32 +00:00
|
|
|
const temp = array.sort(function (a, b) {
|
2019-12-05 20:16:41 +00:00
|
|
|
var x = +a[key]; var y = +b[key];
|
2019-09-07 21:31:32 +00:00
|
|
|
return ((x > y) ? -1 : ((x < y) ? 1 : 0));
|
|
|
|
});
|
|
|
|
return temp;
|
2019-01-19 23:47:56 +00:00
|
|
|
}
|
|
|
|
|
2019-02-04 23:49:19 +00:00
|
|
|
common.newestOnTop = (array, key, value) => {
|
2019-09-07 21:31:32 +00:00
|
|
|
var index = array.findIndex(function (item) {
|
|
|
|
return item[key] === value
|
|
|
|
});
|
|
|
|
var newlyAddedRecord = array.splice(index, 1);
|
|
|
|
array.unshift(newlyAddedRecord[0]);
|
|
|
|
return array;
|
2019-02-04 23:49:19 +00:00
|
|
|
}
|
|
|
|
|
2019-02-24 17:00:39 +00:00
|
|
|
module.exports = common;
|