-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttp-validacao.js
More file actions
40 lines (34 loc) · 984 Bytes
/
Copy pathhttp-validacao.js
File metadata and controls
40 lines (34 loc) · 984 Bytes
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
const fetch = (...args) => import('node-fetch').then(({default: fetch}) => fetch(...args));
function manejaErros(erro){
throw new Error(erro.message);
}
async function checaStatus(arrayURLs){
//promise
try{
const arrayStatus = await Promise
.all(arrayURLs
.map(async url =>{
const res = await fetch(url);
return `${res.status} - ${res.statusText}`;
}))
return arrayStatus;
}catch(erro){
manejaErros(erro)
}
}
function geraArrayURLs(arrayLinks){
return arrayLinks
.map(objetoLink => Object
.values(objetoLink).join());
}
async function validaURLs(arrayLinks){
const links = geraArrayURLs(arrayLinks);
const statusLinks = await checaStatus(links);
const resultados = arrayLinks
.map((objeto,indice) =>({
...objeto,
status:statusLinks[indice]
}))
return resultados;
}
module.exports = validaURLs;