123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- #!@PERL@
- #
- # checklinks.pl
- #
- # This script extracts all links from a HTML page and checks their validity.
- # Written to use 'curl' for URL checking.
- #
- # Author: Daniel Stenberg <Daniel.Stenberg@sth.frontec.se>
- # Version: 0.7 Sept 30, 1998
- #
- # HISTORY
- #
- # 0.5 - Cuts off the #-part from links before checking.
- #
- # 0.6 - Now deals with error codes 3XX better and follows the Location:
- # properly.
- # - Added the -x flag that only checks http:// -links
- #
- # 0.7 - Ok, http://www.viunga.se/main.html didn't realize this had no path
- # but a document. Now it does.
- #
- #
- $in="";
- argv:
- if($ARGV[0] eq "-v" ) {
- $verbose = 1;
- shift @ARGV;
- goto argv;
- }
- elsif($ARGV[0] eq "-i" ) {
- $usestdin = 1;
- shift @ARGV;
- goto argv;
- }
- elsif($ARGV[0] eq "-l" ) {
- $linenumber = 1;
- shift @ARGV;
- goto argv;
- }
- elsif($ARGV[0] eq "-h" ) {
- $help = 1;
- shift @ARGV;
- goto argv;
- }
- elsif($ARGV[0] eq "-x" ) {
- $external = 1;
- shift @ARGV;
- goto argv;
- }
- $geturl = $ARGV[0];
- if(($geturl eq "") || $help) {
- print "Usage: $0 [-hilvx] <full URL>\n",
- " Use a traling slash for directory URLs!\n",
- " -h This help text\n",
- " -i Read the initial page from stdin\n",
- " -l Line number report for BAD links\n",
- " -v Verbose mode\n",
- " -x Check non-local (external?) links only\n";
- exit;
- }
- if($ARGV[1] eq "-") {
- print "We use stdin!\n";
- $usestdin = 1;
- }
- # This is necessary from where I tried this:
- #$proxy =" -x 194.237.142.41:80";
- # linkchecker, URL will be appended to the right of this command line
- # this is the one using HEAD:
- $linkcheck = "curl -s -m 20 -I$proxy";
- # as a second attempt, this will be used. This is not using HEAD but will
- # get the whole frigging document!
- $linkcheckfull = "curl -s -m 20 -i$proxy";
- # htmlget, URL will be appended to the right of this command line
- $htmlget = "curl -s$proxy";
- # Parse the input URL and split it into the relevant parts:
- sub SplitURL {
- my $inurl = $_[0];
- if($inurl=~ /^([^:]+):\/\/([^\/]*)\/(.*)\/(.*)/ ) {
- $getprotocol = $1;
- $getserver = $2;
- $getpath = $3;
- $getdocument = $4;
- }
- elsif ($inurl=~ /^([^:]+):\/\/([^\/]*)\/(.*)/ ) {
- $getprotocol = $1;
- $getserver = $2;
- $getpath = $3;
- $getdocument = "";
-
- if($getpath !~ /\//) {
- $getpath ="";
- $getdocument = $3;
- }
-
- }
- elsif ($inurl=~ /^([^:]+):\/\/(.*)/ ) {
- $getprotocol = $1;
- $getserver = $2;
- $getpath = "";
- $getdocument = "";
- }
- else {
- print "Couldn't parse the specified URL, retry please!\n";
- exit;
- }
- }
- &SplitURL($geturl);
- #print "protocol = $getprotocol\n";
- #print "server = $getserver\n";
- #print "path = $getpath\n";
- #print "document = $getdocument\n";
- #exit;
- if(!$usestdin) {
- open(HEADGET, "$linkcheck $geturl|") ||
- die "Couldn't get web page for some reason";
- headget:
- while(<HEADGET>) {
- # print $_;
- if($_ =~ /HTTP\/.*3\d\d /) {
- $pagemoved=1;
- }
- elsif($pagemoved &&
- ($_ =~ /^Location: (.*)/)) {
- $geturl = $1;
- &SplitURL($geturl);
- $pagemoved++;
- last headget;
- }
- }
- close(HEADGET);
- if($pagemoved == 1) {
- print "Page is moved but we don't know where. Did you forget the ",
- "traling slash?\n";
- exit;
- }
- open(WEBGET, "$htmlget $geturl|") ||
- die "Couldn't get web page for some reason";
- while(<WEBGET>) {
- $line = $_;
- push @indoc, $line;
- $line=~ s/\n//g;
- $line=~ s/\r//g;
- # print $line."\n";
- $in=$in.$line;
- }
- close(WEBGET);
- }
- else {
- while(<STDIN>) {
- $line = $_;
- push @indoc, $line;
- $line=~ s/\n//g;
- $line=~ s/\r//g;
- $in=$in.$line;
- }
- }
- #print length($in)."\n";
- sub LinkWorks {
- my $check = $_[0];
- # URL encode:
- # $check =~s/([^a-zA-Z0-9_:\/.-])/uc sprintf("%%%02x",ord($1))/eg;
- @doc = `$linkcheck \"$check\"`;
- $head = 1;
- # print "COMMAND: $linkcheck \"$check\"\n";
- # print $doc[0]."\n";
- boo:
- if( $doc[0] =~ /^HTTP[^ ]+ (\d+)/ ) {
- $error = $1;
- if($error < 400 ) {
- return "GOOD";
- }
- else {
-
- if($head && ($error >= 500)) {
- # This server doesn't like HEAD!
- @doc = `$linkcheckfull \"$check\"`;
- $head = 0;
- goto boo;
- }
- return "BAD";
- }
- }
- return "BAD";
- }
- sub GetLinks {
- my $in = $_[0];
- my @result;
- getlinkloop:
- while($in =~ /[^<]*(<[^>]+>)/g ) {
- # we have a tag in $1
- $tag = $1;
-
- if($tag =~ /^<!--/) {
- # this is a comment tag, ignore it
- }
- else {
- if($tag =~ /(src|href|background|archive) *= *(\"[^\"]\"|[^ )>]*)/i) {
- $url=$2;
- if($url =~ /^\"(.*)\"$/) {
- # this was a "string" now $1 has removed the quotes:
- $url=$1;
- }
- $url =~ s/([^\#]*)\#.*/$1/g;
- if($url eq "") {
- # if the link was nothing than a #-link it may now have
- # been emptied completely so then we skip the rest
- next getlinkloop;
- }
- if($done{$url}) {
- # if this url already is done, do next
- $done{$url}++;
- next getlinkloop;
- }
- $done{$url} = 1; # this is "done"
- push @result, $url;
- if($tag =~ /< *([^ ]+)/) {
- # print "TAG: $1\n";
- $tagtype{$url}=$1;
- }
- }
- }
- }
- return @result;
- }
- @links = &GetLinks($in);
- linkloop:
- for(@links) {
- $url = $_;
- if($url =~ /^([^:]+):/) {
- $prot = $1;
- # if($prot !~ /(http|ftp|gopher)/i) {
- if($prot !~ /http/i) {
- # this is an unsupported protocol, we ignore this
- next linkloop;
- }
- $link = $url;
- }
- else {
- if($external) {
- next linkloop;
- }
- # this is a link on the save server:
- if($url =~ /^\//) {
- # from root
- $link = "$getprotocol://$getserver$url";
- }
- else {
- # from the scanned page's dir
- $nyurl=$url;
- if(length($getpath) &&
- ($getpath !~ /\/$/) &&
- ($nyurl !~ /^\//)) {
- # lacks ending slash, add one to the document part:
- $nyurl = "/".$nyurl;
- }
- $link = "$getprotocol://$getserver/$getpath$nyurl";
- }
- }
- #print "test $link\n";
- #$success = "GOOD";
- $success = &LinkWorks($link);
- $count = $done{$url};
- $allcount += $count;
- print "$success $count <".$tagtype{$url}."> $link $url\n";
- # If bad and -l, present the line numbers of the usage
- if("BAD" eq $success) {
- $badlinks++;
- if($linenumber) {
- $line =1;
- for(@indoc) {
- if($_ =~ /$url/) {
- print " line $line\n";
- }
- $line++;
- }
- }
- }
- }
- if($verbose) {
- print "$allcount links were checked";
- if($badlinks > 0) {
- print ", $badlinks were found bad";
- }
- print "\n";
- }
|