Last active
January 15, 2024 04:48
-
-
Save eviltester/8a27ca23f7475d6b47fc99fc11ad3198 to your computer and use it in GitHub Desktop.
link checking from snippets
This file contains 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); |
For a little extra information I can add another function:
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;
}
}
);
}
Then call this during the reporting process:
var finishReport = setInterval(
function(){if(linksChecked>=linkReport.length){
console.table(linkReport);
imgreport(linkReport);
clearInterval(finishReport)}}, 3000);
This will do a secondary check on the urls that provided a status of 0 with possibly extra information.
The XML HTTP Request version:
var links = document.querySelectorAll("a");
var linkReport = [];
var linksChecked=0;
links.forEach(function(link){
var http = new XMLHttpRequest();
var reportLine = {url: link.getAttribute('href'), status:0, message : "", element : link};
http.open('HEAD', reportLine.url);
linkReport.push(reportLine);
http.onreadystatechange = (function(line,xhttp) {
return function(){
if (xhttp.readyState == xhttp.DONE) {
line.status = xhttp.status;
linksChecked++;
line.message = xhttp.responseText + xhttp.statusText;
console.table(xhttp);
}
}
})(reportLine, http);
http.send();
});
var finishReport = setInterval(
function(){
if(linksChecked>=linkReport.length){
console.table(linkReport);
clearInterval(finishReport);
}
}
, 3000);
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think the 'fetch' report and console output is a little more useful.