-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
105 lines (93 loc) · 3.2 KB
/
index.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
const express = require('express');
const {tabletojson} = require ('tabletojson');
const json2xls = require ('json2xls');
const app = express();
async function readSecoexpo (back,queryURL) {
try {
const newData = await tabletojson.convertUrl(queryURL,(tables)=>{
return tables[0].map(
(element) => {
const primerObjeto = element;
const keys = Object.keys(primerObjeto)
const primeraPropiedad = keys[0];
primerObjeto['Destinacion'] = primerObjeto[primeraPropiedad];
delete primerObjeto[primeraPropiedad];
return primerObjeto;
}
);
});
if(!newData){
return null;
}
//Convert data to xls
let xls = json2xls(newData);
switch (back.toLowerCase().trim()){
case 'json':
return newData;
case 'xls':
return xls;
default:
return null;
}
}
catch(e) {
console.log (e);
}
}
async function mainController(req,res){
const back = req.query.back;
// Inicializo los paramentros para la URL
let cuit = req.query.cuit;
let fechaInicio = decodeURIComponent(req.query.fechai);
let fechaFin = decodeURIComponent(req.query.fechaf);
// Creo un objeto Date con la fecha actual
var fechaActual = new Date();
// el cuit
if (!(cuit && cuit.match(/\d{11}/g))){
res.status(500).json('[{"error":"Specify cuit ?cuit=00000000000}]');
return;
}
// la fecha de inicio
if (!(fechaInicio && fechaInicio.match(/\d\d[-]\d\d[-]\d{4}/))) {
fechaInicio = "01/01/" + fechaActual.getFullYear();
}
fechaInicio = encodeURIComponent(fechaInicio);
// la fecha de finalizacion
if (!(fechaFin && fechaFin.match(/\d\d[-]\d\d[-]\d{4}/))) {
fechaFin = "31/12/" + fechaActual.getFullYear();
}
fechaFin = encodeURIComponent(fechaFin);
const queryURL = `https://www.bcra.gob.ar/BCRAyVos/exportaciones-bcra-certificados-cumplidos-secoexpo.asp?cuit=${cuit}&desde=${fechaInicio}&hasta=${fechaFin}&Tipo_Respuesta=1&B1=Enviar`;
// ---- fin confeccion URL -----
if (!back || (back != 'json' && back != 'xls') ){
res.status(500).json('[{"error":"Specify return type as ?back=json or ?back=xls"}]');
return;
}
const data = await readSecoexpo(back,queryURL);
if (data){
switch (back){
case 'json':
res.status(200).json(data);
break;
case 'xls':
// Establece las cabeceras adecuadas para indicar que se trata de una descarga de archivo
res.setHeader('Content-Type', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
res.setHeader('Content-Disposition', 'attachment; filename=BCRA_Secoexpo.xlsx');
// Envía los datos binarios al navegador
// Envía los datos XLS al navegador
res.write(data, 'binary');
res.end();
break;
default:
res.status(500).json([{"error":"No arguments received."}]);
}
} else {
res.status(500).json([{"error":"No data returned."}]);
}
}
console.log("START")
console.time("measure");
app.get("/", mainController);
app.listen(process.env.PORT || 3000, () => console.log(`Server running at http://localhost:${process.env.PORT || 3000}`));
console.log("END");
console.timeEnd("measure");