mirror of
https://github.com/catdevnull/transicion-desordenada-diablo
synced 2024-11-26 11:26:18 +00:00
Compare commits
10 commits
afa54ee644
...
16a2b6252a
Author | SHA1 | Date | |
---|---|---|---|
16a2b6252a | |||
3dd7366c88 | |||
3327fb53c7 | |||
54f7ae086a | |||
a955cb2c3a | |||
b717af8ce9 | |||
94b909abfa | |||
e1e851f797 | |||
fb67c517f3 | |||
0c86f0e3e3 |
5 changed files with 177 additions and 103 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,3 +1,5 @@
|
||||||
node_modules/
|
node_modules/
|
||||||
dataJsons/
|
dataJsons/
|
||||||
log
|
log
|
||||||
|
prueba
|
||||||
|
datos.gob.ar*
|
234
download_json.js
234
download_json.js
|
@ -1,28 +1,17 @@
|
||||||
// @ts-check
|
// @ts-check
|
||||||
import { mkdir, open } from "node:fs/promises";
|
import { mkdir, open, writeFile } from "node:fs/promises";
|
||||||
import { Agent, fetch } from "undici";
|
import { Agent, fetch, request, setGlobalDispatcher } from "undici";
|
||||||
import { join, normalize } from "node:path";
|
import { join, normalize } from "node:path";
|
||||||
import { pipeline } from "node:stream/promises";
|
import { pipeline } from "node:stream/promises";
|
||||||
|
|
||||||
// lista de dominios que permitimos usar http: porque tienen HTTPS roto..
|
|
||||||
const brokenHttps = [
|
|
||||||
"datos.mindef.gov.ar", // cert para otro dominio
|
|
||||||
"datos.energia.gob.ar", // cert para otro dominio
|
|
||||||
"datos.minem.gob.ar", // vencido 2022-17-06
|
|
||||||
"datos.agroindustria.gob.ar", // vencido 2022-03-10
|
|
||||||
"andino.siu.edu.ar", // self signed, igual parece que todo tira 404 en este..
|
|
||||||
"datos.salud.gob.ar", // timeout en HTTPS
|
|
||||||
"datos.jus.gob.ar", // HTTPS redirige incorrectamente a URLs inexistentes
|
|
||||||
"www.hidro.gob.ar", // no HTTPS
|
|
||||||
];
|
|
||||||
|
|
||||||
// FYI: al menos los siguientes dominios no tienen la cadena completa de certificados en HTTPS. tenemos que usar un hack (node_extra_ca_certs_mozilla_bundle) para conectarnos a estos sitios. (se puede ver con ssllabs.com) ojalá lxs administradorxs de estos servidores lo arreglen.
|
// FYI: al menos los siguientes dominios no tienen la cadena completa de certificados en HTTPS. tenemos que usar un hack (node_extra_ca_certs_mozilla_bundle) para conectarnos a estos sitios. (se puede ver con ssllabs.com) ojalá lxs administradorxs de estos servidores lo arreglen.
|
||||||
// www.enargas.gov.ar, transparencia.enargas.gov.ar, www.energia.gob.ar, www.economia.gob.ar, datos.yvera.gob.ar
|
// www.enargas.gov.ar, transparencia.enargas.gov.ar, www.energia.gob.ar, www.economia.gob.ar, datos.yvera.gob.ar
|
||||||
|
|
||||||
const dispatcher = new Agent({
|
setGlobalDispatcher(
|
||||||
pipelining: 10,
|
new Agent({
|
||||||
maxRedirections: 20,
|
pipelining: 0,
|
||||||
});
|
})
|
||||||
|
);
|
||||||
|
|
||||||
class StatusCodeError extends Error {
|
class StatusCodeError extends Error {
|
||||||
/**
|
/**
|
||||||
|
@ -33,107 +22,142 @@ class StatusCodeError extends Error {
|
||||||
this.code = code;
|
this.code = code;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
class TooManyRedirectsError extends Error {}
|
||||||
|
|
||||||
const outputPath = process.argv[2];
|
let jsonUrlString = process.argv[2];
|
||||||
if (!outputPath) {
|
if (!jsonUrlString) {
|
||||||
console.error("Especificamente el output porfa");
|
console.error("Especificamente el url al json porfa");
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
const jsonUrl = new URL(jsonUrlString);
|
||||||
|
const outputPath = jsonUrl.host;
|
||||||
await mkdir(outputPath, { recursive: true });
|
await mkdir(outputPath, { recursive: true });
|
||||||
|
const errorFile = await open(join(outputPath, "errors.jsonl"), "w");
|
||||||
|
|
||||||
// Leer JSON de stdin
|
const jsonRes = await fetch(jsonUrl);
|
||||||
const json = await process.stdin.toArray();
|
// prettier-ignore
|
||||||
const jsonString = json.join("");
|
const parsed = /** @type {{ dataset: Dataset[] }} */(await jsonRes.json())
|
||||||
/** @type {{ dataset: Dataset[] }} */
|
await writeFile(join(outputPath, "data.json"), JSON.stringify(parsed));
|
||||||
const parsed = JSON.parse(jsonString);
|
|
||||||
|
|
||||||
const jobs = parsed.dataset.flatMap((dataset) =>
|
const jobs = parsed.dataset.flatMap((dataset) =>
|
||||||
dataset.distribution.map((dist) => ({ dataset, dist })),
|
dataset.distribution.map((dist) => ({
|
||||||
|
dataset,
|
||||||
|
dist,
|
||||||
|
url: patchUrl(new URL(dist.downloadURL)),
|
||||||
|
}))
|
||||||
);
|
);
|
||||||
// forma barrani de distribuir carga entre servidores
|
|
||||||
shuffleArray(jobs);
|
|
||||||
const totalJobs = jobs.length;
|
const totalJobs = jobs.length;
|
||||||
let nFinished = 0;
|
let nFinished = 0;
|
||||||
|
let nErrors = 0;
|
||||||
|
|
||||||
const duplicated = hasDuplicates(
|
// por las dudas verificar que no hayan archivos duplicados
|
||||||
jobs.map((j) => `${j.dataset.identifier}/${j.dist.identifier}`),
|
chequearIdsDuplicados();
|
||||||
);
|
|
||||||
if (duplicated) {
|
/** @type {Map< string, DownloadJob[] >} */
|
||||||
console.error(
|
let jobsPerHost = new Map();
|
||||||
"ADVERTENCIA: ¡encontré duplicados! es posible que se pisen archivos entre si",
|
for (const job of jobs) {
|
||||||
);
|
jobsPerHost.set(job.url.host, [
|
||||||
|
...(jobsPerHost.get(job.url.host) || []),
|
||||||
|
job,
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
const greens = Array(128)
|
const greens = [...jobsPerHost.entries()].flatMap(([host, jobs]) => {
|
||||||
|
const nThreads = 8;
|
||||||
|
return Array(nThreads)
|
||||||
.fill(0)
|
.fill(0)
|
||||||
.map(() =>
|
.map(() =>
|
||||||
(async () => {
|
(async () => {
|
||||||
let job;
|
let job;
|
||||||
while ((job = jobs.pop())) {
|
while ((job = jobs.pop())) {
|
||||||
const { dataset, dist } = job;
|
|
||||||
request: do {
|
|
||||||
try {
|
try {
|
||||||
await downloadDist(dataset, dist);
|
await downloadDistWithRetries(job);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
if (error instanceof StatusCodeError) {
|
await errorFile.write(
|
||||||
// algunos servidores usan 403 como coso para decir "calmate"
|
JSON.stringify({
|
||||||
if (error.code === 403) {
|
url: job.url.toString(),
|
||||||
console.debug(
|
...encodeError(error),
|
||||||
`debug: reintentando ${dist.downloadURL} porque tiró 403`,
|
}) + "\n"
|
||||||
);
|
);
|
||||||
await wait(15000);
|
nErrors++;
|
||||||
continue request;
|
|
||||||
}
|
|
||||||
error = error.toString();
|
|
||||||
}
|
|
||||||
console.error(
|
|
||||||
`error: Failed to download URL ${dist.downloadURL} (${dataset.identifier}/${dist.identifier}):`,
|
|
||||||
error,
|
|
||||||
);
|
|
||||||
if (!(error instanceof StatusCodeError)) continue request;
|
|
||||||
} finally {
|
} finally {
|
||||||
nFinished++;
|
nFinished++;
|
||||||
}
|
}
|
||||||
} while (0);
|
|
||||||
}
|
}
|
||||||
})(),
|
})()
|
||||||
);
|
);
|
||||||
|
});
|
||||||
|
process.stderr.write(`greens: ${greens.length}\n`);
|
||||||
|
|
||||||
const interval = setInterval(() => {
|
const interval = setInterval(() => {
|
||||||
console.info(`info: ${nFinished}/${totalJobs} done`);
|
process.stderr.write(`info: ${nFinished}/${totalJobs} done\n`);
|
||||||
}, 15000);
|
}, 30000);
|
||||||
await Promise.all(greens);
|
await Promise.all(greens);
|
||||||
clearInterval(interval);
|
clearInterval(interval);
|
||||||
|
if (nErrors > 0) console.error(`Finished with ${nErrors} errors`);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @argument {Dataset} dataset
|
* @argument {DownloadJob} job
|
||||||
* @argument {Distribution} dist
|
* @argument {number} tries
|
||||||
*/
|
*/
|
||||||
async function downloadDist(dataset, dist) {
|
async function downloadDistWithRetries(job, tries = 0) {
|
||||||
const url = new URL(dist.downloadURL);
|
const { url } = job;
|
||||||
|
try {
|
||||||
|
await downloadDist(job);
|
||||||
|
} catch (error) {
|
||||||
|
// algunos servidores usan 403 como coso para decir "calmate"
|
||||||
|
// intentar hasta 15 veces con 15 segundos de por medio
|
||||||
|
if (
|
||||||
|
error instanceof StatusCodeError &&
|
||||||
|
error.code === 403 &&
|
||||||
|
url.host === "minsegar-my.sharepoint.com" &&
|
||||||
|
tries < 15
|
||||||
|
) {
|
||||||
|
await wait(15000);
|
||||||
|
return await downloadDistWithRetries(job, tries + 1);
|
||||||
|
}
|
||||||
|
// si no fue un error de http, reintentar hasta 5 veces con 5 segundos de por medio
|
||||||
|
else if (
|
||||||
|
!(error instanceof StatusCodeError) &&
|
||||||
|
!(error instanceof TooManyRedirectsError) &&
|
||||||
|
tries < 5
|
||||||
|
) {
|
||||||
|
await wait(5000);
|
||||||
|
return await downloadDistWithRetries(job, tries + 1);
|
||||||
|
} else throw error;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Siempre usar HTTPS excepto cuando está roto
|
/**
|
||||||
if (brokenHttps.includes(url.host)) {
|
* @argument {DownloadJob} job
|
||||||
url.protocol = "http:";
|
*/
|
||||||
// console.debug(url);
|
async function downloadDist({ dist, dataset, url }) {
|
||||||
} else url.protocol = "https:";
|
// sharepoint no le gusta compartir a bots lol
|
||||||
|
const spoofUserAgent = url.host.endsWith("sharepoint.com");
|
||||||
|
|
||||||
const res = await fetch(url.toString(), {
|
const res = await request(url.toString(), {
|
||||||
dispatcher,
|
maxRedirections: 20,
|
||||||
|
headers: {
|
||||||
|
"User-Agent": spoofUserAgent
|
||||||
|
? "Mozilla/5.0 (X11; Linux x86_64; rv:120.0) Gecko/20100101 Firefox/120.0"
|
||||||
|
: "transicion-desordenada (https://nulo.ar)",
|
||||||
|
},
|
||||||
});
|
});
|
||||||
if (res.status >= 400) {
|
if (res.statusCode >= 300 && res.statusCode <= 399)
|
||||||
throw new StatusCodeError(res.status);
|
throw new TooManyRedirectsError();
|
||||||
|
if (res.statusCode < 200 || res.statusCode > 299) {
|
||||||
|
throw new StatusCodeError(res.statusCode);
|
||||||
}
|
}
|
||||||
|
|
||||||
const fileDirPath = join(
|
const fileDirPath = join(
|
||||||
outputPath,
|
outputPath,
|
||||||
sanitizeSuffix(dataset.identifier),
|
sanitizeSuffix(dataset.identifier),
|
||||||
sanitizeSuffix(dist.identifier),
|
sanitizeSuffix(dist.identifier)
|
||||||
);
|
);
|
||||||
await mkdir(fileDirPath, { recursive: true });
|
await mkdir(fileDirPath, { recursive: true });
|
||||||
const filePath = join(
|
const filePath = join(
|
||||||
fileDirPath,
|
fileDirPath,
|
||||||
sanitizeSuffix(dist.fileName || dist.identifier),
|
sanitizeSuffix(dist.fileName || dist.identifier)
|
||||||
);
|
);
|
||||||
const outputFile = await open(filePath, "w");
|
const outputFile = await open(filePath, "w");
|
||||||
|
|
||||||
|
@ -141,11 +165,16 @@ async function downloadDist(dataset, dist) {
|
||||||
await pipeline(res.body, outputFile.createWriteStream());
|
await pipeline(res.body, outputFile.createWriteStream());
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @typedef {object} Dataset
|
/** @typedef DownloadJob
|
||||||
|
* @prop {Dataset} dataset
|
||||||
|
* @prop {Distribution} dist
|
||||||
|
* @prop {URL} url
|
||||||
|
*/
|
||||||
|
/** @typedef Dataset
|
||||||
* @prop {string} identifier
|
* @prop {string} identifier
|
||||||
* @prop {Distribution[]} distribution
|
* @prop {Distribution[]} distribution
|
||||||
*/
|
*/
|
||||||
/** @typedef {object} Distribution
|
/** @typedef Distribution
|
||||||
* @prop {string} identifier
|
* @prop {string} identifier
|
||||||
* @prop {string} fileName
|
* @prop {string} fileName
|
||||||
* @prop {string} downloadURL
|
* @prop {string} downloadURL
|
||||||
|
@ -159,31 +188,46 @@ function sanitizeSuffix(path) {
|
||||||
return normalize(path).replace(/^(\.\.(\/|\\|$))+/, "");
|
return normalize(path).replace(/^(\.\.(\/|\\|$))+/, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function chequearIdsDuplicados() {
|
||||||
|
const duplicated = hasDuplicates(
|
||||||
|
jobs.map((j) => `${j.dataset.identifier}/${j.dist.identifier}`)
|
||||||
|
);
|
||||||
|
if (duplicated) {
|
||||||
|
console.error(
|
||||||
|
"ADVERTENCIA: ¡encontré duplicados! es posible que se pisen archivos entre si"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
// https://stackoverflow.com/a/7376645
|
// https://stackoverflow.com/a/7376645
|
||||||
/**
|
/** @argument {any[]} array */
|
||||||
* @argument {any[]} array
|
|
||||||
*/
|
|
||||||
function hasDuplicates(array) {
|
function hasDuplicates(array) {
|
||||||
return new Set(array).size !== array.length;
|
return new Set(array).size !== array.length;
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://stackoverflow.com/a/12646864
|
/** @argument {number} ms */
|
||||||
/**
|
|
||||||
* @argument {any[]} array
|
|
||||||
*/
|
|
||||||
function shuffleArray(array) {
|
|
||||||
for (var i = array.length - 1; i > 0; i--) {
|
|
||||||
var j = Math.floor(Math.random() * (i + 1));
|
|
||||||
var temp = array[i];
|
|
||||||
array[i] = array[j];
|
|
||||||
array[j] = temp;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @argument {number} ms
|
|
||||||
*/
|
|
||||||
function wait(ms) {
|
function wait(ms) {
|
||||||
if (ms < 0) return Promise.resolve();
|
if (ms < 0) return Promise.resolve();
|
||||||
return new Promise((resolve) => setTimeout(resolve, ms));
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function encodeError(error) {
|
||||||
|
if (error instanceof StatusCodeError)
|
||||||
|
return { kind: "http_error", status_code: error.code };
|
||||||
|
else if (error instanceof TooManyRedirectsError)
|
||||||
|
return { kind: "infinite_redirect" };
|
||||||
|
else {
|
||||||
|
return { kind: "generic_error", error: error.code || error.message };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* parchea URLs que se rompen solas
|
||||||
|
* @param {URL} url
|
||||||
|
*/
|
||||||
|
function patchUrl(url) {
|
||||||
|
if (url.host === "www.ign.gob.ar") {
|
||||||
|
// por defecto, 'http://www.ign.gob.ar' redirige a 'https://ign.gob.ar' pero su certificado solo aplica para '*.ign.gob.ar'. se sirve todo el contenido correctamente en 'https://www.ign.gob.ar', así que vamos para ahí.
|
||||||
|
url.protocol = "https:";
|
||||||
|
}
|
||||||
|
return url;
|
||||||
|
}
|
||||||
|
|
|
@ -13,5 +13,8 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"node_extra_ca_certs_mozilla_bundle": "^1.0.5",
|
"node_extra_ca_certs_mozilla_bundle": "^1.0.5",
|
||||||
"undici": "^5.28.0"
|
"undici": "^5.28.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/node": "^20.10.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,6 +12,11 @@ dependencies:
|
||||||
specifier: ^5.28.0
|
specifier: ^5.28.0
|
||||||
version: 5.28.0
|
version: 5.28.0
|
||||||
|
|
||||||
|
devDependencies:
|
||||||
|
'@types/node':
|
||||||
|
specifier: ^20.10.0
|
||||||
|
version: 20.10.0
|
||||||
|
|
||||||
packages:
|
packages:
|
||||||
|
|
||||||
/@fastify/busboy@2.1.0:
|
/@fastify/busboy@2.1.0:
|
||||||
|
@ -19,6 +24,12 @@ packages:
|
||||||
engines: {node: '>=14'}
|
engines: {node: '>=14'}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/@types/node@20.10.0:
|
||||||
|
resolution: {integrity: sha512-D0WfRmU9TQ8I9PFx9Yc+EBHw+vSpIub4IDvQivcp26PtPrdMGAq5SDcpXEo/epqa/DXotVpekHiLNTg3iaKXBQ==}
|
||||||
|
dependencies:
|
||||||
|
undici-types: 5.26.5
|
||||||
|
dev: true
|
||||||
|
|
||||||
/asynckit@0.4.0:
|
/asynckit@0.4.0:
|
||||||
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
|
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
|
||||||
dev: false
|
dev: false
|
||||||
|
@ -153,6 +164,10 @@ packages:
|
||||||
is-utf8: 0.2.1
|
is-utf8: 0.2.1
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/undici-types@5.26.5:
|
||||||
|
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/undici@5.28.0:
|
/undici@5.28.0:
|
||||||
resolution: {integrity: sha512-gM12DkXhlAc5+/TPe60iy9P6ETgVfqTuRJ6aQ4w8RYu0MqKuXhaq3/b86GfzDQnNA3NUO6aUNdvevrKH59D0Nw==}
|
resolution: {integrity: sha512-gM12DkXhlAc5+/TPe60iy9P6ETgVfqTuRJ6aQ4w8RYu0MqKuXhaq3/b86GfzDQnNA3NUO6aUNdvevrKH59D0Nw==}
|
||||||
engines: {node: '>=14.0'}
|
engines: {node: '>=14.0'}
|
||||||
|
|
12
readme.md
12
readme.md
|
@ -9,5 +9,15 @@ pnpm install
|
||||||
## correr
|
## correr
|
||||||
|
|
||||||
```
|
```
|
||||||
pnpm run run download_json.js carpeta_output < dataJsons/datos.gob.ar.data.json
|
pnpm run run download_json.js https://datos.gob.ar/data.json
|
||||||
|
# guarda en ./datos.gob.ar
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## formato de repo guardado
|
||||||
|
|
||||||
|
- `{dominio de repo}`
|
||||||
|
- `data.json`
|
||||||
|
- `errors.jsonl`
|
||||||
|
- `{identifier de dataset}`
|
||||||
|
- `{identifier de distribution}`
|
||||||
|
- `{fileName (o, si no existe, identifier de distribution)}`
|
||||||
|
|
Loading…
Reference in a new issue