2007-05-20 22:44:44 +02:00
|
|
|
#!/usr/bin/perl
|
|
|
|
|
2017-03-05 22:33:31 +01:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2007-05-20 22:44:44 +02:00
|
|
|
use LWP::Simple;
|
|
|
|
|
|
|
|
my ($text, $buffer, $location);
|
|
|
|
|
2019-05-28 18:19:42 +02:00
|
|
|
if ($#ARGV < 0)
|
2007-05-20 22:44:44 +02:00
|
|
|
{
|
|
|
|
print "Try again. Please specify the location you would like to search for nearby cities around.\n";
|
|
|
|
die;
|
|
|
|
}
|
2019-06-26 18:34:19 +02:00
|
|
|
|
2007-05-20 22:44:44 +02:00
|
|
|
$location = join("+", @ARGV);
|
|
|
|
|
|
|
|
$location =~ s/,/%2C/;
|
|
|
|
|
2019-05-28 18:19:42 +02:00
|
|
|
if ($location =~ m/\+-(.*)/)
|
2007-05-20 22:44:44 +02:00
|
|
|
{
|
|
|
|
# -arguments?
|
|
|
|
$location =~ s/\+-.*//;
|
|
|
|
}
|
|
|
|
|
|
|
|
$text = get("http://weather.yahoo.com/search/weather2?p=$location");
|
|
|
|
|
|
|
|
$location =~ s/\+/ /g;
|
|
|
|
$location =~ s/%2C/,/g;
|
|
|
|
|
2019-05-28 18:19:42 +02:00
|
|
|
if ($text =~ m/No match found/)
|
2007-05-20 22:44:44 +02:00
|
|
|
{
|
2019-06-26 18:34:19 +02:00
|
|
|
print "$location is not a valid location for this service.\n";
|
2007-05-20 22:44:44 +02:00
|
|
|
die;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $found = 0;
|
|
|
|
my $buf;
|
|
|
|
my $i;
|
|
|
|
|
2019-05-28 18:19:42 +02:00
|
|
|
if ($text =~ m/location matches\:/g)
|
2007-05-20 22:44:44 +02:00
|
|
|
{
|
|
|
|
$buf = "Multiple locations found: ";
|
|
|
|
|
2019-05-28 18:19:42 +02:00
|
|
|
while ($text =~ m/<a\shref="\/forecast\/(.*?)">(.*?)<\/a>/g)
|
2007-05-20 22:44:44 +02:00
|
|
|
{
|
|
|
|
$i = $1;
|
|
|
|
$buffer = $2;
|
|
|
|
|
|
|
|
$buffer =~ s/<b>//g;
|
|
|
|
$buffer =~ s/<\/b>//g;
|
|
|
|
$buffer =~ s/^\s+//;
|
|
|
|
|
2019-06-26 18:34:19 +02:00
|
|
|
$buf = $buf . "$buffer - ";
|
2007-05-20 22:44:44 +02:00
|
|
|
|
2019-05-28 18:19:42 +02:00
|
|
|
if ($location =~ m/$buffer/i)
|
2007-05-20 22:44:44 +02:00
|
|
|
{
|
|
|
|
$text = get("http://weather.yahoo.com/forecast/$i");
|
|
|
|
$found = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$buf = $buf. "please specify one of these.\n";
|
|
|
|
if (not $found)
|
|
|
|
{
|
|
|
|
print $buf;
|
|
|
|
die;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
my ($country, $state, $city);
|
|
|
|
|
|
|
|
$text =~ m/<a href="\/">Weather<\/a>\s>/g;
|
|
|
|
$text =~ m/<a href=.*?>(.*?)<\/a>\s>/g;
|
|
|
|
$country = $1;
|
|
|
|
|
2019-05-28 18:19:42 +02:00
|
|
|
if ($country eq "North America")
|
2007-05-20 22:44:44 +02:00
|
|
|
{
|
|
|
|
$text =~ m/<a href=.*?>(.*?)<\/a>\s>/g;
|
|
|
|
$country = $1;
|
|
|
|
}
|
|
|
|
|
2019-05-28 18:19:42 +02:00
|
|
|
if ($country ne "Canada")
|
2007-05-20 22:44:44 +02:00
|
|
|
{
|
|
|
|
$text =~ m/<a href=.*?>(.*?)<\/a>\s>/g;
|
|
|
|
$state = $1;
|
|
|
|
}
|
|
|
|
|
|
|
|
$text =~ m/^(.*?)<\/b><\/font>/mg;
|
|
|
|
$city = $1;
|
|
|
|
|
|
|
|
$text =~ m/Nearby.*?Locations/sgi;
|
|
|
|
|
|
|
|
print "$country, $state, $city - Nearby Locations: ";
|
|
|
|
|
2019-05-28 18:19:42 +02:00
|
|
|
while ($text =~ m/<a href=\"\/forecast\/.*?\.html\">(.*?)<\/a>/gi)
|
2007-05-20 22:44:44 +02:00
|
|
|
{
|
|
|
|
$buf = $1;
|
|
|
|
$buf =~ s/<.*?>//gi;
|
|
|
|
print "$buf, ";
|
|
|
|
}
|
|
|
|
print "\n";
|