X-Git-Url: https://code.th-h.de/?p=usenet%2Fyapfaq.git;a=blobdiff_plain;f=yapfaq.pl;h=194d4f5a24726b5cb738e16b6bd086e1977ae544;hp=bce96847517acc2268cb1f455804b138745e7e0b;hb=55bfbd3cde3c1137ec338ea827f267882ddae125;hpb=d69ba0bb348ffe87f0ead8497467b0aec5a10751 diff --git a/yapfaq.pl b/yapfaq.pl index bce9684..194d4f5 100644 --- a/yapfaq.pl +++ b/yapfaq.pl @@ -58,17 +58,31 @@ use Fcntl ':flock'; # import LOCK_* constants use Getopt::Std; my ($TDY, $TDM, $TDD) = Today(); #TD: Today's date +# read commandline options my %Options; -getopts('hvpdt:f:', \%Options); +getopts('Vhvpdt:f:', \%Options); +# -V: print version / copyright information +if ($Options{'V'}) { + print "$0 v $Version\nCopyright (c) 2003 Marc Brockschmidt \nCopyright (c) 2010 Thomas Hochstein \n"; + print "This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself.\n"; + exit(0); +} +# -h: feed myself to perldoc if ($Options{'h'}) { - print "$0 v $Version\nUsage: $0 [-hvpd] [-t ] [-f ]\n"; + exec ('perldoc', $0); exit(0); }; +# -f: set $Faq my ($Faq) = $Options{'f'} if ($Options{'f'}); +# read configuration (configured FAQs) my @Config; readconfig (\$ConfigFile, \@Config, \$Faq); +# for each FAQ: +# - parse configuration +# - read status data +# - if FAQ is due: call postfaq() foreach (@Config) { my ($LPD,$LPM,$LPY) = (01, 01, 0001); #LP: Last posting-date my ($NPY,$NPM,$NPD); #NP: Next posting-date @@ -79,8 +93,10 @@ foreach (@Config) { my ($MIDF,$ReplyTo,$ExtHea)=($$_{'mid-format'},$$_{'reply-to'},$$_{'extraheader'}); my ($Supersede) =($$_{'supersede'}); + # -f: loop if not FAQ to post next if (defined($Faq) && $ActName ne $Faq); + # read status data if (open (FH, "<$File.cfg")) { while(){ if (/##;; Lastpost:\s*(\d{1,2})\.(\d{1,2})\.(\d{2}(\d{2})?)/){ @@ -98,6 +114,7 @@ foreach (@Config) { ($NPY,$NPM,$NPD) = calcdelta ($LPY,$LPM,$LPD,$PFreq); + # if FAQ is due: get it out if (Delta_Days($NPY,$NPM,$NPD,$TDY,$TDM,$TDD) >= 0 or ($Options{'p'})) { if($Options{'d'}) { print "$ActName: Would be posted now (but running in simulation mode [$0 -d]).\n" if $Options{'v'}; @@ -208,7 +225,6 @@ sub postfaq { $MID =~ s/\%m/$$TDM/g; $MID =~ s/\%y/$$TDY/g; - #Now get the body: open (FH, "<$$File"); while (){ @@ -270,14 +286,17 @@ sub postfaq { push @Header, "$_\n" for (split /\n/, $$ExtraHeaders); } + # sign article if $UsePGP is true my @Article = ($UsePGP)?@{signpgp(\@Header, \@Body)}:(@Header, "\n", @Body); + # post article print "$$ActName: Posting article ...\n" if($Options{'v'}); post(\@Article); # Test mode? return if($Options{'t'}); + # otherwise: update status data print "$$ActName: Save status information.\n" if($Options{'v'}); open (FH, ">$$File.cfg") or die "$0: E: Can't open $$File.cfg: $!"; @@ -296,9 +315,9 @@ sub post { # Test mode? if(defined($Options{'t'}) and $Options{'t'} =~ /console/i) { - print "\n-----BEGIN--------------------------------------------------\n"; + print "-----BEGIN--------------------------------------------------\n"; print @$ArticleR; - print "\n------END---------------------------------------------------\n"; + print "------END---------------------------------------------------\n"; return; } @@ -310,6 +329,7 @@ sub post { $NewsConnection->datasend (@$ArticleR); $NewsConnection->dataend(); + # Posting failed? Save to ERROR.dat if (!$NewsConnection->ok()) { open FH, ">>ERROR.dat"; print FH "\nPosting failed! Saving to ERROR.dat. Response from news server:\n"; @@ -695,9 +715,13 @@ was posted and the second being the message ID of that incarnation. =over 3 +=item B<-V> (version) + +Print out version and copyright information on B and exit. + =item B<-h> (help) -Print out version and usage information on B and exit. +Print this man page and exit. =item B<-v> (verbose)