-
-
Save daominhdam/c5b47c24baa909e8c82469e4412a120e to your computer and use it in GitHub Desktop.
link checking from snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var links = document.querySelectorAll("a"); | |
var linkReport = []; | |
var linksChecked=0; | |
links.forEach(function(link){ | |
var reportLine = {url: link.getAttribute('href'), status:0, redirectedTo: "", message : "", element : link}; | |
linkReport.push(reportLine); | |
console.log("HEAD " + reportLine.url); | |
fetch(reportLine.url, { | |
method: 'HEAD', | |
mode: 'cors', | |
//mode: 'no-cors', | |
redirect: 'follow' | |
}) | |
.then(function(response) { | |
linksChecked++; | |
reportLine.status=response.status; | |
reportLine.message= response.statusText + " | " + | |
response.type + " | " + | |
(response.message || "") + " | " + | |
JSON.stringify(response.headers) ; | |
if(response.redirected){ | |
reportLine.redirectedTo = response.url; | |
} | |
console.table(response); | |
} | |
) | |
.catch(function(error){ | |
reportLine.message = error; | |
console.table(error); | |
linksChecked++; | |
}); | |
}); | |
function imgreport(links){ | |
links.forEach(function(link){ | |
if(link.status==0){ | |
// trigger error messages with status | |
// to the console for status of 0 | |
var img = new Image(); | |
img.src = link.url; | |
} | |
} | |
); | |
} | |
var finishReport = setInterval( | |
function(){if(linksChecked>=linkReport.length){ | |
console.table(linkReport); | |
imgreport(linkReport); | |
clearInterval(finishReport); | |
}} | |
, 3000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment