Merge branch 'fixes'

This commit is contained in:
Vladislav Hristov 2018-05-31 09:05:13 +03:00
commit 162c16362d
2 changed files with 4 additions and 13 deletions

View File

@ -40,7 +40,7 @@ module.exports = class BankLetter {
});
handlebars.registerHelper("sha256", (k) => {
const digest = Buffer(k.publicDigest(), 'base64').toString('HEX');
const digest = Buffer.from(k.publicDigest(), 'base64').toString('HEX');
return digest.toUpperCase().match(/.{1,2}/g).join(' ');
});

View File

@ -7,7 +7,7 @@ const $request = require("request");
const BN = require('bn.js');
const xpath = require("xpath");
const NodeRSA = require("node-rsa");
const DOMParser = require("xmldom").DOMParser;
const Key = require('./Key');
const XMLSign = require('./middleware/XMLSign');
@ -97,9 +97,7 @@ module.exports = class Client {
try {
fs.writeFileSync(path, letter.generate());
console.log("Data written to file");
} catch (error) {
console.log(error);
throw error;
}
};
@ -113,9 +111,7 @@ module.exports = class Client {
try {
fs.writeFileSync(path, JSON.stringify(data));
console.log("Data written to file");
} catch(error) {
console.log(error);
throw error;
}
};
@ -154,16 +150,11 @@ module.exports = class Client {
ebicsRequest(order) {
return new Promise((resolve, reject) => {
const bbb = XMLSign.go(this, order);
$request.post({
url : this.url,
body : bbb,
headers: { 'Content-Type': 'text/xml' }
body : XMLSign.go(this, order),
headers: { 'content-type': 'text/xml;charset=UTF-8' }
}, (err, res, data) => {
const b = data; // keep this for debugging purposes
const r = ParseResponse.go(this, data); // keep this for debugging purposes
const rXML = r.toXML(); // keep this for debugging purposes
return err ? reject(err): resolve(ParseResponse.go(this, data));
});
});