-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtools.js
45 lines (38 loc) · 1.46 KB
/
tools.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
const uuid = require('uuid');
const dateFormat = require('dateformat');
const certs = require('./certs')
const crypto = require('crypto');
const md5 = require('md5');
const axios = require('axios');
const https = require('https');
module.exports = {
generateUUID: function () {
return uuid.v4();
},
generateDateTime: function () {
const now = new Date().toLocaleString("en-US", {timeZone: "Europe/Podgorica"});
return dateFormat(now, 'yyyy-mm-dd"T"HH:MM:ssp');
},
generateIIC: function (taxpayerID, currentDateTime, invoiceOrd, businessUnit, enuCode, softwareCode, totalPrice) {
const dataElement = `${taxpayerID}|${currentDateTime}|${invoiceOrd}|${businessUnit}|${enuCode}|${softwareCode}|${totalPrice}`;
const iicSignature = crypto.sign('sha256', Buffer.from(dataElement), {
key: certs.privateKey(),
padding: crypto.constants.RSA_PKCS1_PADDING
});
const iic = md5(iicSignature)
return {
iic, iicSignature: iicSignature.toString('hex')
};
},
sendToPU: async function (xmlData) {
const agent = new https.Agent({rejectUnauthorized: false});
return await axios.post('https://efitest.tax.gov.me:443/fs-v1', xmlData,
{
headers: {'Content-Type': 'text/xml'},
httpsAgent: agent
});
},
roundNo: function (x) {
return Math.round((x + Number.EPSILON) * 100) / 100;
}
};