-
Notifications
You must be signed in to change notification settings - Fork 8
/
request-validate-status.js
76 lines (66 loc) · 2.26 KB
/
request-validate-status.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
const https = require('https');
const fs = require('fs');
function fetchJson(url) {
console.log("Baixando JSON");
return new Promise((resolve, reject) => {
https.get(url, (res) => {
let data = '';
res.on('data', (chunk) => {
data += chunk;
});
res.on('end', () => {
try {
const json = JSON.parse(data);
console.log(`Found ${json.length} urls`)
resolve(json);
} catch (error) {
reject(`Erro ao parsear JSON: ${error}`);
}
});
}).on('error', (error) => {
reject(`Erro na requisição para ${url}: ${error.message}`);
});
});
}
function checkUrlStatus(item) {
return new Promise((resolve) => {
console.log(`Checando URL: ${item.url}`);
https.get(item.url, (res) => {
if (res.statusCode >= 300 && res.statusCode < 400) {
resolve({ status: 'redirect', filePath: item.filePath, url: item.url });
} else {
resolve({ status: 'ok', filePath: item.filePath, url: item.url });
}
}).on('error', () => resolve({ status: 'error', filePath: item.filePath, url: item.url }));
});
}
// Função recursiva para processar URLs uma a uma
async function processUrlsRecursively(urls, index = 0, redirectList = []) {
if (index >= urls.length) {
// Salva a lista de redirecionamentos quando terminar
fs.writeFileSync('./redirects.json', JSON.stringify(redirectList, null, 2));
console.log('Arquivo redirects.json salvo com sucesso!');
return;
}
try {
const result = await checkUrlStatus(urls[index]);
if (result.status === 'redirect') {
redirectList.push({ filePath: result.filePath, url: result.url });
console.log(`Redirecionamento encontrado: ${result.url}`);
} else {
console.log(`URL processada: ${result.url}`);
}
} catch (error) {
console.error(`Erro ao processar URL ${urls[index].url}: ${error}`);
}
processUrlsRecursively(urls, index + 1, redirectList);
}
(async () => {
const jsonUrl = 'https://www.azion.com/pt-br/docs-path-by-url.json';
try {
const jsonArray = await fetchJson(jsonUrl);
await processUrlsRecursively(jsonArray); // Inicia a verificação recursiva das URLs
} catch (error) {
console.error(`Erro ao processar URLs: ${error}`);
}
})();