forked from krkeegan/misterhouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdailystrips
executable file
·1542 lines (1311 loc) · 41.1 KB
/
dailystrips
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/perl
#
# Program Summary:
#
# Name: dailystrips
# Description: creates an HTML page containing a number of online comics, with an easily exensible framework
# Author: Andrew Medico <[email protected]>
# Created: 23 Nov 2000, 23:33 EST
# Last Modified: 24 Aug 2003, 16:55
# Current Revision: 1.0.28-patched
#
# This copy of dailystrips has been patched by Matthew Williams
# to bypass the United Comics Flash based DRM scheme.
# Set up
use strict;
no strict qw(refs);
use LWP::UserAgent;
use HTTP::Request;
use POSIX qw(strftime);
use Getopt::Long;
use File::Copy;
# Variables
my (%options, $version, $time_today, @localtime_today, @localtime_yesterday, @localtime_tomorrow, $long_date, $short_date,
$short_date_yesterday, $short_date_tomorrow, @get, @strips, %defs, $known_strips, %groups, $known_groups, %classes, $val,
$link_tomorrow, $no_dateparse, @base_dirparts);
$version = "1.0.28";
$time_today = time;
# Get options
GetOptions(\%options, 'quiet|q','verbose','output=s','lite','local|l','noindex',
'archive|a','dailydir|d','stripdir','save|s','nostale','date=s',
'new|n','defs=s','nopersonal','basedir=s','list','proxy=s',
'proxyauth=s','noenvproxy','nospaces','useragent=s','version|v','help|h',
'avantgo', 'random','nosystem','stripnav','nosymlinks','titles=s',
'retries=s','clean=s','updates=s','noupdates') or exit 1;
# Process options:
# Note: Blocks have been ordered so that we only do as much as absolutely
# necessary if an error is encountered (i.e. do not load defs if --version
# specified)
# Help and version override anything else
if ($options{'help'}) {
print
"Usage: $0 [OPTION] STRIPS
STRIPS can be a mix of strip names and group names
(group names must be preceeded by an '\@' symbol)
'all' may be used to retrieve all known strips,
or use option --list to list available strips and groups
Options:
-q --quiet Turn off progress messages
--verbose Turn on extra progress information, overrides -q
--list List available strips
--random Download a random strip
--defs FILE Use alternate strips definition file
--nopersonal Ignore ~/.dailystrips.defs
--nosystem Ignore system-wide definitions
--updates Read updated defs from FILE instead of
~/.dailystrips-updates.def
--noupdates Ignore updated defs file
--output FILE Output HTML to FILE instead of STDOUT
(does not apply to local mode)
--lite Output a reduced HTML page
--stripnav Add links for navigation within the page
--titles STRING Customize HTML output
-l --local Output HTML to file and save strips locally
--noindex Disable symlinking current page to index.html
(local mode only)
-a --archive Generate archive.html as a list of all days,
(local mode only)
-d --dailydir Create a separate directory for each day's images
(local mode only)
--stripdir Create a separate directory for each strip's
images (local mode only)
-s --save If it appears that a particular strip has been
downloaded, does not attempt to re-download it
(local mode only)
--nostale If a new strip is not available, displays an error
in the HTML output instead of showing the old image
--nosymlinks Do not use symlinks for day-to-day duplicates
--date DATE Use value DATE instead of local time
(DATE is parsed by Date::Parse function)
--avantgo Format images for viewing with Avantgo on PDAs
(local mode only)
--basedir DIR Work in specified directory instead of current
directory (program will look here for previous HTML
file and save new files here, etc.)
--proxy host:port Use specified HTTP proxy server (overrides
environment proxy, if set)
--proxyauth user:pass Set username and password for proxy server
--noenvproxy Ignore the http_proxy environment variable, if set
--nospaces Remove spaces from image filenames (local mode
only)
--useragent STRING Set User-Agent: header to STRING (default is none)
--retries NUM When downloading items, retry NUM times instead of
default 3 times
--clean NUM Keep only the latest NUM days of files; remove all
older files
-v --version Print version number
";
if ($^O =~ /Win32/ ) {
print
"Additional Win32 Notes:
Windows lacks a number of features and programs found on *NIX, so a number of
changes must be made to the program's operation:
1. --date and --avantgo are not available
2. Personal and update definition files may or may not work
3. System-wide definition files are not supported
";
} # ' please emacs perlmode
print "\nBugs and comments to dailystrips\@amedico.dhs.org\n";
exit;
}
if ($options{'version'}) {
print "dailystrips version $version\n";
exit;
}
if ($options{'date'}) {
eval "require Date::Parse";
if ($@ ne "") {
die "Error: cannot use --date - Date::Parse not installed\n";
} else {
import Date::Parse;
}
unless ($time_today = str2time($options{'date'})) {
die "Error: invalid date specified\n";
}
}
# setup time variables (needed during defs parsing)
@localtime_today = localtime $time_today;
#long_date = strftime("\%A, \%B \%e, \%Y", @localtime_today);
$long_date = strftime("\%A, \%B \%d, \%Y", @localtime_today);
$short_date = strftime("\%Y.\%m.\%d", @localtime_today);
@localtime_yesterday = localtime($time_today - ( 24 * 60 * 60 ));
$short_date_yesterday = strftime("\%Y.\%m.\%d", @localtime_yesterday);
@localtime_tomorrow = localtime ($time_today + 24 * 60 * 60);
$short_date_tomorrow = strftime("\%Y.\%m.\%d", @localtime_tomorrow);
# Get strip definitions now - info used below
unless ($options{'defs'}) {
if ($^O =~ /Win32/ ) {
$options{'defs'} = 'strips.def';
} else {
$options{'defs'} = '/usr/share/dailystrips/strips.def';
}
}
&get_defs($options{'defs'});
# Load updated defs file
unless (defined $options{'updates'})
{
$options{'updates'} = &get_homedir() . "/.dailystrips-updates.def";
}
unless($options{'noupdates'})
{
if (-r $options{'updates'}) {
&get_defs($options{'updates'});
}
}
# Get system configurable strip definitions now
unless ($options{'nosystem'}) {
unless (($^O =~ /Win32/) or (! -r '/etc/dailystrips.defs')) {
&get_defs('/etc/dailystrips.defs');
}
}
unless ($options{'nopersonal'}){
my $personal_defs = &get_homedir() . "/.dailystrips.defs";
if (-r $personal_defs) {
&get_defs($personal_defs);
}
}
$known_strips = join('|', sort keys %defs);
$known_groups = join('|', sort keys %groups);
if ($options{'random'}) {
my @known_strips_array = keys %defs;
push(@get, $known_strips_array[(rand $#known_strips_array)]);
undef @known_strips_array;
} else {
# Only strips/groups to download remain in @ARGV
# Unconfigured options were already trapped by Getopts with an 'unknown option'
# error
for (@ARGV) {
if (/^($known_strips|all)$/io) {
if ($_ eq "all") {
push (@get, split(/\|/, $known_strips));
} else {
push(@get, $_);
}
} elsif (/^@/) {
if (/^@($known_groups)$/io) {
push(@get, split(/;/, $groups{$1}{'strips'}));
} else {
die "Error: unknown group: $_\n";
}
} else {
die "Error: unknown strip: $_\n";
}
}
}
if ($options{'list'}) {
format =
@<<<<<<<<<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
$_, $val
.
print "Available strips:\n";
for (split(/\|/, $known_strips)) {
$val = $defs{$_}{'name'};
write;
}
print "\nAvailable groups:\n";
for (split(/\|/, $known_groups)) {
$val = $groups{$_}{'desc'};
write;
}
exit;
}
if ($options{'dailydir'} and $options{'stripdir'}) {
die "Error: --dailydir and --stripdir cannot be used together\n";
}
#Set proxy
if ($options{'proxy'}) {
$options{'proxy'} =~ /^(http:\/\/)?(.*?):(.+?)\/?$/i;
unless ($2 and $3) {
die "Error: incorrectly formatted proxy server ('http://server:port' expected)\n";
}
$options{'proxy'} = "http://$2:$3";
}
if (!$options{'noenvproxy'} and !$options{'proxy'} and $ENV{'http_proxy'} ) {
$ENV{'http_proxy'} =~ /(http:\/\/)?(.*?):(.+?)\/?$/i;
unless ($2 and $3) {
die "Error: incorrectly formatted proxy server environment variable\n('http://server:port' expected)\n";
}
$options{'proxy'} = "http://$2:$3";
}
if ($options{'proxyauth'}) {
unless ($options{'proxyauth'} =~ /^.+?:.+?$/) {
die "Error: incorrectly formatted proxy credentials ('user:pass' expected)\n";
}
}
# Handle/validate other options
if ($options{'clean'} =~ m/\D/) {
die "Error: 'clean' value must be numeric\n";
}
if ($options{'retries'} =~ m/\D/) {
die "Error: 'retries' value must be numeric\n";
}
unless ($options{'retries'}) {
$options{'retries'} = 3;
}
if ($options{'basedir'}) {
unless (chdir $options{'basedir'}) {
die "Error: could not change directory to $options{'basedir'}\n";
}
}
if ($options{'titles'}) {
$options{'titles'} .= " ";
}
unless (@get) {
die "Error: no strip specified (--list to list available strips)\n";
}
# verbose overrides quiet
if ($options{'verbose'} and $options{'quiet'}) {
undef $options{'quiet'};
}
# Un-needed vars
undef $known_strips; undef $known_groups; undef $val;
# Go
unless ($options{'quiet'}) {
warn "dailystrips $version starting:\n";
}
# Report proxy settings
if ($options{'proxy'}) {
if ($options{'verbose'}) {
warn "Using proxy server $options{'proxy'}\n";
}
if ($options{'verbose'} and $options{'proxy_auth'}) {
warn "Using proxy server authentication\n";
}
}
if ($options{'local'}) {
unless ($options{'quiet'}) {
warn "Operating in local mode\n";
}
if ($options{'dailydir'}) {
unless ($options{'quiet'}) {
warn "Operating in daily directory mode\n";
}
unless (-d $short_date) {
# any issues with masks and Win32?
unless(mkdir ($short_date, 0755)) {
die "Error: could not create today's directory ($short_date/)\n";
}
}
}
unless(open(STDOUT, ">dailystrips-$short_date.html")) {
die "Error: could not open HTML file (dailystrips-$short_date.html) for writing\n";
}
unless ($options{'date'}) {
unless ($options{'noindex'}) {
unless ($^O =~ /Win32/) {
unlink("index.html");
system("ln -s dailystrips-$short_date.html index.html");
}
}
}
if ($options{'archive'}) {
unless (-e "archive.html") {
# Doesn't exist.. create
open(ARCHIVE, ">archive.html") or die "Error: could not create archive.html\n";
print ARCHIVE
"<html>
<head>
<title>$options{'titles'}dailystrips archive</title>
</head>
<body bgcolor=\"#ffffff\" text=\"#000000\" link=\"#0000ff\" vlink=\"#ff00ff\" alink=\"#ff0000\">
<p align=\"center\">\n
<font face=\"helvetica,arial\" size=\"14pt\">$options{'titles'}dailystrips archive</font>
</p>
<p>
<font face=\"helvetica,arial\">
<!--insert below-->
</font>
</p>
</body>
</html>";
close(ARCHIVE);
}
open(ARCHIVE, "<archive.html") or die "Error: could not open archive.html for reading\n";
my @archive = <ARCHIVE>;
close(ARCHIVE);
unless (grep(/<a href="dailystrips-$short_date.html">/, @archive)) {
for (@archive) {
if (s/(<!--insert below-->)/$1\n<a href="dailystrips-$short_date.html">$long_date<\/a><br>/) {
unless(open(ARCHIVE, ">archive.html")) {
die "Error: could not open archive.html for writing\n";
}
print ARCHIVE @archive;
close(ARCHIVE);
last;
}
}
}
}
# Update previous day's file with a "Next Day" link to today's file
if (open(PREVIOUS, "<dailystrips-$short_date_yesterday.html")) {
my @previous_page = <PREVIOUS>;
close(PREVIOUS);
# Don't bother if no tag exists in the file (because it has already been updated)
if (grep(/<!--nextday-->/, @previous_page)) {
my $match_count;
for (@previous_page) {
if (s/<!--nextday-->/ | <a href="dailystrips-$short_date.html">Next day<\/a>/) {
$match_count++;
last if ($match_count == 2);
}
}
if (open(PREVIOUS, ">dailystrips-$short_date_yesterday.html")) {
print PREVIOUS @previous_page;
close(PREVIOUS);
} else {
warn "Warning: could not open dailystrips-$short_date_yesterday.html for writing\n";
}
} else {
warn "Warning: did not find any tag in previous day's file to make today's link\n";
}
} else {
warn "Warning: could not open dailystrips-$short_date_yesterday.html for reading\n";
}
} elsif ($options{'output'}) {
unless ($options{'quiet'}) {
warn "Writing to file $options{'output'}\n";
}
unless (open(STDOUT, ">$options{'output'}")) {
die "Error: Could not open output file ($options{'output'}) for writing\n";
}
}
# Download image URLs
unless ($options{'quiet'}) {
if ($options{'verbose'}) {
warn "\nRetrieving URLS:\n"
} else {
print STDERR "\nRetrieving URLS..."
}
}
for (@get) {
if ($options{'verbose'}) { warn "Retrieving URL for $_\n" }
&get_strip($_);
}
unless ($options{'quiet'}) {
if ($options{'verbose'}) {
warn "Retrieving URLS: done\n"
} else {
warn "done\n"
}
}
if (-e "dailystrips-$short_date_tomorrow.html") {
$link_tomorrow = " | <a href=\"dailystrips-$short_date_tomorrow.html\">Next day</a>"
} else {
$link_tomorrow = "<!--nextday-->"
}
# Generate HTML page
if ($options{'lite'}) {
print "<font face=\"helvetica\" size=\"+2\"><b><u>$options{'titles'}dailystrips for $long_date</u></b></font><br><br>\n";
} else {
my $topanchor;
if ($options{'stripnav'}) {
$topanchor = "\n<a name=\"top\">\n";
}
print
"<html>
<head>
<title>$options{'titles'}dailystrips for $long_date</title>
</head>
<body bgcolor=\"#ffffff\" text=\"#000000\" link=\"#ff00ff\">
$topanchor
<center>
<font face=\"helvetica\" size=\"+2\"><b><u>$options{'titles'}dailystrips for $long_date</u></b></font>
</center>
<p><font face=\"helvetica\">
< <a href=\"dailystrips-$short_date_yesterday.html\">Previous day</a>$link_tomorrow";
if ($options{'archive'}) {
print " | <a href=\"archive.html\">Archives</a>";
}
print
" >
</font></p>
";
if ($options{'stripnav'}) {
print "<font face=\"helvetica\">Strips:</font><br>\n";
for (@strips) {
my ($strip, $name) = (split(/;/, $_))[0,1];
print "<a href=\"#$strip\">$name</A> ";
}
print "\n<br><br>";
}
print "\n\n<table border=\"0\">\n";
}
if ($options{'local'} and !$options{'quiet'}) {
if ($options{'verbose'}) {
warn "\nDownloading strip files:\n"
} else {
print STDERR "Downloading strip files...";
}
}
for (@strips) {
my ($strip, $name, $homepage, $img_addr, $referer, $prefetch, $artist) = split(/;/, $_);
my ($img_line, $local_name, $local_name_dir, $local_name_file, $local_name_ext, $image, $ext,
$local_name_yesterday, $local_name_yesterday_dir, $local_name_yesterday_file, $local_name_yesterday_ext);
if ($options{'verbose'} and $options{'local'}) {
warn "Downloading strip file for " . lc((split(/;/, $_))[0]) . "\n";
}
if ($img_addr =~ "^unavail") {
if ($options{'verbose'}) {
warn "Error: $strip: could not retrieve URL\n";
}
$img_line = "[Error - unable to retrieve URL]";
} else {
if ($options{'local'}) {
# local mode - download strips
$img_addr =~ /http:\/\/(.*)\/(.*)\.(.*?)([?&].+)?$/;
if (defined $3) { $ext = ".$3" }
# prepare file names
if ($options{'stripdir'}) {
$local_name_yesterday = "$name/$short_date_yesterday$ext";
$local_name_yesterday_dir = "$name/";
$local_name_yesterday_file = $short_date_yesterday;
$local_name_yesterday_ext = $ext;
$local_name = "$name/$short_date$ext";
$local_name_dir = "$name/";
$local_name_file = "$short_date";
$local_name_ext = "$ext";
} elsif ($options{'dailydir'}) {
$local_name_yesterday = "$short_date_yesterday/$name-$short_date_yesterday$ext";
$local_name_yesterday_dir = "$short_date_yesterday/";
$local_name_yesterday_file = "$name-$short_date_yesterday";
$local_name_yesterday_ext = "$ext";
$local_name = "$short_date/$name-$short_date$ext";
$local_name_dir = "$short_date/";
$local_name_file = "$name-$short_date";
$local_name_ext = "$ext";
} else {
$local_name_yesterday = "$name-$short_date_yesterday$ext";
$local_name_yesterday_dir = "./";
$local_name_yesterday_file = "$name-$short_date_yesterday";
$local_name_yesterday_ext = "$ext";
$local_name = "$name-$short_date$ext";
$local_name_dir = "./";
$local_name_file = "$name-$short_date";
$local_name_ext = "$ext";
}
if ($options{'nospaces'}) {
# impossible to tell for sure if previous day's file
# used --nospaces or not, but this should work more
# often
$local_name_yesterday =~ s/\s+//g;
$local_name_yesterday_dir =~ s/\s+//g;
$local_name_yesterday_file =~ s/\s+//g;
$local_name =~ s/\s+//g;
$local_name_dir =~ s/\s+//g;
$local_name_file =~ s/\s+//g;
}
# do ops that depend on file name
if ($options{'stripdir'}) {
unless (-d $local_name_dir) {
# any issues with masks and Win32?
mkdir $local_name_dir, 0755;
}
}
if ($options{'save'} and -e $local_name) {
# already have a suitable local file - skip downloading
if ($options{'avantgo'}) {
$img_line = &make_avantgo_table($local_name, $ext);
} else {
$img_addr = $local_name;
$img_addr =~ s/ /\%20/go;
if ($options{'stripnav'}) {
$img_line = "<img src=\"$img_addr\" alt=\"$name\"><br><a href=\"#top\">Return to top</a>";
} else {
$img_line = "<img src=\"$img_addr\" alt=\"$name\">";
}
}
} else {
# need to download
if ($prefetch) {
if (&http_get($prefetch, $referer) =~ m/^ERROR/) {
warn "Error: $strip: could not download prefetch URL\n";
$image = "ERROR";
} else {
$image = &http_get($img_addr, $referer);
}
} else {
$image = &http_get($img_addr, $referer);
#$image = &http_get($img_addr, "");
}
if ($image =~ /^ERROR/) {
# couldn't get the image
# FIXME: what to do if a file for the day has already been
# downloaded, but downloading fails when script is run again
# that day? maybe reuse existing file instead of throwing
# error?
if (-e $local_name) {
# an image file for today already exists.. jump to outputting code
#warn "DEBUG: couldn't download strip, but we already have it\n";
goto HAVE_IMAGE;
} else {
if ($options{'verbose'}) {
warn "Error: $strip: could not download strip\n";
}
}
$img_line = "[Error - unable to download image]";
} else {
HAVE_IMAGE:
# got the image
if ($^O =~ /Win32/) {
# can't do any diff checking on windows (easily, that is - it is doable)
open(IMAGE, ">$local_name");
binmode(IMAGE);
print IMAGE $image;
close(IMAGE);
$img_addr = $local_name;
$img_addr =~ s/ /\%20/go;
if ($options{'stripnav'}) {
$img_line = "<img src=\"$img_addr\" alt=\"$name\"><br><a href=\"#top\">Return to top</a>";
} else {
$img_line = "<img src=\"$img_addr\" alt=\"$name\">";
}
} else {
# FIXME: only download to .tmp if earlier file exists
open(IMAGE, ">$local_name.tmp");
binmode(IMAGE);
print IMAGE $image;
close(IMAGE);
if (-e $local_name and system("diff \"$local_name\" \"$local_name.tmp\" >/dev/null 2>&1") == 0) {
# already downloaded the same strip earlier today
unlink("$local_name.tmp");
if ($options{'avantgo'}) {
$img_line = &make_avantgo_table($local_name, $ext);
} else {
$img_addr = $local_name;
$img_addr =~ s/ /\%20/go;
if ($options{'stripnav'}) {
$img_line = "<img src=\"$img_addr\" alt=\"$name\"><br><a href=\"#top\">Return to top</a>";
} else {
$img_line = "<img src=\"$img_addr\" alt=\"$name\">";
}
}
} elsif (system("diff \"$local_name_yesterday\" \"$local_name.tmp\" >/dev/null 2>&1") == 0) {
# same strip as yesterday
if ($options{'nosymlinks'}) {
system("mv","$local_name.tmp","$local_name");
} else {
unlink("$local_name.tmp");
if ($options{'stripdir'} or $options{'dailydir'}) {
system("ln -s \"../$local_name_yesterday\" \"$local_name\" >/dev/null 2>&1");
} else {
system("ln -s \"$local_name_yesterday\" \"$local_name\" >/dev/null 2>&1");
}
}
if ($options{'nostale'}) {
$img_line = "[Error - new strip not available]";
} else {
$img_addr = $local_name;
$img_addr =~ s/ /\%20/go;
if ($options{'stripnav'}) {
$img_line = "<img src=\"$img_addr\" alt=\"$name\"><br><a href=\"#top\">Return to top</a>";
} else {
$img_line = "<img src=\"$img_addr\" alt=\"$name\">";
}
}
} else {
# completely new strip
# possible to get here by:
# -downloading a strip for the first time in a day
# -downloading an updated strip that replaces an old one downloaded at
# an earlier time on the same day
system("mv","$local_name.tmp","$local_name");
if ($options{'avantgo'}) {
&make_avantgo_files($local_name, $local_name_ext);
$img_line = &make_avantgo_table($local_name, $ext);
} else {
$img_addr = $local_name;
$img_addr =~ s/ /\%20/go;
if ($options{'stripnav'}) {
$img_line = "<img src=\"$img_addr\" alt=\"$name\"><br><a href=\"#top\">Return to top</a>";
} else {
$img_line = "<img src=\"$img_addr\" alt=\"$name\">";
}
}
}
}
}
}
} else {
# regular mode - just give addresses to strips on their webserver
if ($options{'stripnav'}) {
$img_line = "<img src=\"$img_addr\" alt=\"$name\"><br><a href=\"#top\">Return to top</a>";
} else {
$img_line = "<img src=\"$img_addr\" alt=\"$name\">";
}
}
}
if ($artist) {
$artist = " by $artist";
}
if ($options{'lite'}){
print
"<font face=\"helvetica\" size=\"+1\"><b><a href=\"$homepage\">$name</a>$artist</b></font><br>
$img_line<br>
<br>
";
} else {
my $stripanchor;
if ($options{'stripnav'}) {
$stripanchor = "<a name=\"$strip\">";
}
print
" <tr>
<td>
<font face=\"helvetica\" size=\"+1\"><b>$stripanchor<a href=\"$homepage\">$name</a>$artist</b></font>
</td>
</tr>
<tr>
<td>
$img_line
<p> </p>
</td>
</tr>
";
}
}
if ($options{'local'} and !$options{'quiet'}) {
if ($options{'verbose'}) {
warn "Downloading strip files: done\n"
} else {
warn "done\n"
}
}
unless ($options{'lite'}) {
print
"</table>
<p><font face=\"helvetica\">
< <a href=\"dailystrips-$short_date_yesterday.html\">Previous day</a>$link_tomorrow";
if ($options{'archive'}) {
print " | <a href=\"archive.html\">Archives</a>";
}
print
" >
</font></p>
<font face=\"helvetica\">Generated by dailystrips $version</font>
</body>
</html>
";
}
if (!$options{'date'} and !$options{'noindex'} and $^O =~ /Win32/) {
# no symlinks on windows.. just make a copy of the file
close(STDOUT);
copy("dailystrips-$short_date.html","index.html");
}
# Clean out old files, if requested
if ($options{'clean'}) {
unless ($options{'quiet'}) {
print STDERR "Cleaning files older than $options{'clean'} days...";
}
unless (system("perl -S dailystrips-clean --quiet $options{'clean'}")) {
unless ($options{'quiet'}) {
print STDERR "done\n";
}
}
else {
warn "failed\nWarning: could not run dailystrips-clean script\n";
}
}
sub http_get {
my ($url, $referer) = @_;
my ($request, $response, $status);
# default value
#unless ($retries) {
# $retries = 3;
#}
if ($referer eq "") {$referer = $url;}
my $headers = new HTTP::Headers;
$headers->proxy_authorization_basic(split(/:/, $options{'proxyauth'}));
$headers->referer($referer);
my $ua = LWP::UserAgent->new;
$ua->agent($options{'useragent'});
$ua->proxy('http', $options{'proxy'});
for (1 .. $options{'retries'}) {
# main request
$request = HTTP::Request->new('GET', $url, $headers);
$response = $ua->request($request);
($status = $response->status_line()) =~ s/^(\d+)/$1:/;
if ($response->is_error()) {
if ($options{'verbose'}) {
warn "Warning: could not download $url: $status (attempt $_ of $options{'retries'})\n";
}
} else {
return $response->content;
}
}
# if we get here, URL retrieval completely failed
warn "Warning: failed to download $url\n";
return "ERROR: $status";
}
sub get_strip {
my ($strip) = @_;
my ($page, $addr);
if ($options{'date'} and $defs{$strip}{'provides'} eq "latest") {
if ($options{'verbose'}) {
warn "Warning: strip $strip not compatible with --date, skipping\n";
}
next;
}
if ($defs{$strip}{'type'} eq "search") {
$page = &http_get($defs{$strip}{'searchpage'});
if ($page =~ /^ERROR/) {
if ($options{'verbose'}) {
warn "Error: $strip: could not download searchpage $defs{$strip}{'searchpage'}\n";
}
$addr = "unavail-server";
} else {
$page =~ /$defs{$strip}{'searchpattern'}/si;
my @regexmatch;
for (1..9) {
$regexmatch[$_] = ${$_};
#warn "regex match #$_: ${$_}\n";
}
unless (${$defs{$strip}{'matchpart'}}) {
if ($options{'verbose'}) {
warn "Error: $strip: searchpattern $defs{$strip}{'searchpattern'} did not match anything in searchpage $defs{$strip}{'searchpage'}\n";
}
$addr = "unavail-nomatch";
} else {
my $match = ${$defs{$strip}{'matchpart'}};
if ($defs{$strip}{'imageurl'}) {
$addr = $defs{$strip}{'imageurl'};
$addr =~ s/\$match_(\d)/$regexmatch[$1]/ge;
$addr =~ s/\$match/$match/ge;
} else {
$addr = $defs{$strip}{'baseurl'} . $match . $defs{$strip}{'urlsuffix'};
}
}
}
} elsif ($defs{$strip}{'type'} eq "generate") {
$addr = $defs{$strip}{'baseurl'} . $defs{$strip}{'imageurl'};
} elsif ($defs{$strip}{'type'} eq "flashdrm") {
$page = &http_get($defs{$strip}{'searchpage'});
if ($page =~ /^ERROR/) {
if ($options{'verbose'}) {
warn "Error: $strip: could not download searchpage $defs{$strip}{'searchpage'}\n";
}
$addr = "unavail-server";
} else {
$page =~ /$defs{$strip}{'searchpattern'}/si;
my @regexmatch;
for (1..9) {
$regexmatch[$_] = ${$_};
#warn "regex match #$_: ${$_}\n";
}
unless ($regexmatch[1]) {
warn "didn't match\n";
if ($options{'verbose'}) {
warn "Error: $strip: searchpattern $defs{$strip}{'searchpattern'} did not match anything in searchpage $defs{$strip}{'searchpage'}\n";
}
$addr = "unavail-nomatch";
} else {
$page = &http_get($defs{$strip}{'drmurl'});
if ($page =~ /^ERROR/) {
warn "Error: $strip: can't download drmurl\n";
$addr = "unavail-server";
} else {
my ($drmkey) = $page =~ m!<key>(.+)</key>!s;
if ($drmkey eq '') {
warn "Error: $strip: unable to locate drmkey\n";
} else {
my $match = ${$defs{$strip}{'matchpart'}};
if ($defs{$strip}{'imageurl'}) {
$addr = $defs{$strip}{'imageurl'};
$addr =~ s/\$match_(\d)/$regexmatch[$1]/ge;
$addr =~ s/\$match/$match/ge;
$addr =~ s/\$drmkey/$drmkey/ge;
} else {
warn "Error: $strip: You must supply an imageurl\n";
}
}
}
}
}
} elsif ($defs{$strip}{'type'} eq "doublesearch") {
$page = &http_get($defs{$strip}{'searchpage'});
if ($page =~ /^ERROR/) {
if ($options{'verbose'}) {
warn "Error: $strip: could not download searchpage $defs{$strip}{'searchpage'}\n";
}
$addr = "unavail-server";
} else {
$page =~ /$defs{$strip}{'searchpattern'}/si;