#!/usr/bin/perl -w
use LWP::UserAgent;
use HTTP::Request::Common;
$numofstrips = NumofStrips();
$home = `echo \$HOME`;chop $home;$rcfile = "$home\/.stripnum";
if (-f $rcfile) {
$stripnum = `cat ~/.stripnum`;
} else {
print "~/.stripnum does not exist, creating...\n";
system 'echo 1 > ~/.stripnum';
$stripnum = `cat ~/.stripnum`;
}
if (-d "$home\/.strips") {
} else {
print "directory $home\/.strips does not exist, creating...\n";
system "mkdir $home\/.strips";
}
print "Should only see this once!\n";
mainblock: {
$url = "http://thebench.org/index.php3?strip=$stripnum";
$bot = new LWP::UserAgent;
$bot->agent('Mozilla');
$response = $bot->request(GET $url);
$content = $response->content;
@content = split(/\n/, $content);
content: for($i=0;$i<$#content;$i++) {
$content[$i] =~ /.*Strip \#(.*):<.*/;
if ($1) { $number = $1; last content; }
}
if ($number != $stripnum) {
print "$stripnum does not seem to exhist\n";
$numofstrips = NumofStrips();
print "$numofstrips seems to be total number of strips\n";
$numofstrips++;
if ($stripnum == $numofstrips) {
open (FILE, ">$rcfile") || die;
print (FILE "$stripnum") || die;
close FILE;
die "Got last file exiting\n";
}
else {
$stripnum++;
}
print "lets try to get $stripnum\n";
goto mainblock;
}
undef $filetodl;
searchforfiletodl: for (split "\n", $content) {
$filetodl = "$1.jpg" if/.*img\/strips\/(.*).jpg/;
if ($filetodl){
#print $filetodl;
last searchforfiletodl;
}
}
$imgurl = "http://thebench.org/img/strips/$filetodl";
print "Downloading $imgurl\n";
$response = $bot->request(GET $imgurl);
$content = $response->content;
$file = "$home\/.strips\/$number.jpg";
print "opening $file\n";
open (FILE, ">$file") || die;
print (FILE "$content") || die;
print "success!\n";
close FILE;
$stripnum++;
print "$stripnum\n";
open (FILE, ">$rcfile") || die;
print (FILE $stripnum) || die;
close FILE;
}
goto mainblock;
sub NumofStrips {
my $url = "http://thebench.org/archive.php3";
my $bot = new LWP::UserAgent;
$bot->agent('Mozilla');
my $response = $bot->request(GET $url);
my $content = $response->content;
@content = split(/\/td/, $content);
searchfornumofstrips: for($i=0;$i<$#content;$i++){
$content[$i] =~ /<tr><td valign='top'><p>(.*)<\/p></;
if($1) { $numofstrips = $1; last searchfornumofstrips; }
}
return $numofstrips;
}
print "This isnt supposed to happen!\n"; die;
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.
|
|