From f3d322cfd7776bebb922f3cd390bd62e4f5baf09 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Fri, 11 May 2007 11:41:23 +0000 Subject: [PATCH] =?utf8?q?Filehandles=20als=20lokal=20deklarieren;=20Kosme?= =?utf8?q?tik;=20Argumente=20f=C3=BCr=20open()=20bereinigen.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- SL/DN.pm | 48 +++++++++++++++++++----------------------------- 1 file changed, 19 insertions(+), 29 deletions(-) diff --git a/SL/DN.pm b/SL/DN.pm index 4bf5d56ba..5ffb4ba66 100644 --- a/SL/DN.pm +++ b/SL/DN.pm @@ -500,12 +500,15 @@ sub parse_strings { my ($myconfig, $form, $userspath, $string) = @_; + local (*IN, *OUT); + my $format = $form->{format}; $form->{format} = "html"; $tmpstring = "parse_string.html"; $tmpfile = "$myconfig->{templates}/$tmpstring"; - open(OUT, ">$tmpfile") or $form->error("$tmpfile : $!"); + open(OUT, ">", $tmpfile) or $form->error("$tmpfile : $!"); + print(OUT $string); close(OUT); @@ -515,12 +518,8 @@ sub parse_strings { my $fileid = time; $form->{tmpfile} = "$userspath/${fileid}.$tmpstring"; - $out = $form->{OUT}; - $form->{OUT} = ">$form->{tmpfile}"; - if ($form->{OUT}) { - open(OUT, "$form->{OUT}") or $form->error("$form->{OUT} : $!"); - } + open(OUT, ">", $form->{tmpfile}) or $form->error("$form->{OUT} : $!"); if (!$template->parse(*OUT)) { $form->cleanup(); $form->error("$form->{IN} : " . $template->get_error()); @@ -528,7 +527,7 @@ sub parse_strings { close(OUT); my $result = ""; - open(IN, $form->{tmpfile}) or $form->error($form->cleanup . "$form->{tmpfile} : $!"); + open(IN, "<", $form->{tmpfile}) or $form->error($form->cleanup . "$form->{tmpfile} : $!"); while () { $result .= $_; @@ -550,43 +549,34 @@ sub melt_pdfs { my ($self, $myconfig, $form, $userspath) = @_; - foreach my $file (@{ $form->{DUNNING_PDFS} }) { - $inputfiles .= " $userspath/$file "; - } + local (*IN, *OUT); + + # Don't allow access outside of $userspath. + map { $_ =~ s|.*/||; } @{ $form->{DUNNING_PDFS} }; + my $inputfiles = join " ", map { "$userspath/$_" } @{ $form->{DUNNING_PDFS} }; my $outputfile = "$userspath/dunning.pdf"; + system("gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=$outputfile $inputfiles"); - foreach my $file (@{ $form->{DUNNING_PDFS} }) { - unlink("$userspath/$file"); - } - $out = ""; - $form->{OUT} = $out; + map { unlink("$userspath/$_") } @{ $form->{DUNNING_PDFS} }; my $numbytes = (-s $outputfile); - open(IN, $outputfile) - or $form->error($self->cleanup . "$outputfile : $!"); + open(IN, $outputfile) || $form->error($self->cleanup() . "$outputfile : $!"); $form->{copies} = 1 unless $form->{media} eq 'printer'; - chdir("$self->{cwd}"); + chdir($self->{cwd}); for my $i (1 .. $form->{copies}) { - if ($form->{OUT}) { - open(OUT, $form->{OUT}) - or $form->error($form->cleanup . "$form->{OUT} : $!"); - } else { - - # launch application - print qq|Content-Type: Application/PDF + # launch application + print qq|Content-Type: Application/PDF Content-Disposition: attachment; filename="$outputfile" Content-Length: $numbytes |; - open(OUT, ">-") or $form->error($form->cleanup . "$!: STDOUT"); - - } + open(OUT, ">-") or $form->error($form->cleanup . "$!: STDOUT"); while () { print OUT $_; @@ -598,7 +588,7 @@ Content-Length: $numbytes } close(IN); - unlink("$userspath/$outputfile"); + unlink($outputfile); $main::lxdebug->leave_sub(); } -- 2.20.1