It may be easier to have just the domain name passed in to the script and then the script can handle ALL of the prefixes itself.
Yeah, that sounds sensible.
Here is an example of how you might implement that approach:
#!/usr/bin/perl
use strict;
use warnings;
use LWP::Simple;
DOMAIN:
while (my $domain = <DATA>) {
chomp($domain);
for my $protocol (qw/http https/) {
next DOMAIN if test_url("$protocol://$domain");
for my $sub (qw/www web/) {
next DOMAIN if test_url("$protocol://$sub.$domain");
}
}
print "Couldn't get anything from $domain\n";
}
sub test_url {
my $url = shift;
print "Trying $url ...";
my $ua = LWP::UserAgent->new(
timeout => 5,
agent => 'Mozilla/5.0',
ssl_opts => { verify_hostname => 0 },
);
my $response = $ua->get($url);
if ($response->is_success) {
print "OK\n";
return 1;
}
else {
print "FAILED because " . $response->status_line . "\n";
return undef;
}
}
__DATA__
google.com
apple.com
fred.com
dschjksdbckjqh.com
Output:
Trying http://google.com ...OK
Trying http://apple.com ...OK
Trying http://fred.com ...OK
Trying http://dschjksdbckjqh.com ...FAILED because 500 Can't connect t
+o dschjksdbckjqh.com:80 (Bad hostname 'dschjksdbckjqh.com')
Trying http://www.dschjksdbckjqh.com ...FAILED because 500 Can't conne
+ct to www.dschjksdbckjqh.com:80 (Bad hostname 'www.dschjksdbckjqh.com
+')
Trying http://web.dschjksdbckjqh.com ...FAILED because 500 Can't conne
+ct to web.dschjksdbckjqh.com:80 (Bad hostname 'web.dschjksdbckjqh.com
+')
Trying https://dschjksdbckjqh.com ...FAILED because 500 Can't connect
+to dschjksdbckjqh.com:443 (getaddrinfo: nodename nor servname provide
+d, or not known)
Trying https://www.dschjksdbckjqh.com ...FAILED because 500 Can't conn
+ect to www.dschjksdbckjqh.com:443 (getaddrinfo: nodename nor servname
+ provided, or not known)
Trying https://web.dschjksdbckjqh.com ...FAILED because 500 Can't conn
+ect to web.dschjksdbckjqh.com:443 (getaddrinfo: nodename nor servname
+ provided, or not known)
Couldn't get anything from dschjksdbckjqh.com
HTH,
Darren
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|