]> git.donarmstrong.com Git - debbugs.git/commitdiff
[project @ 2003-05-22 22:40:29 by cjwatson]
authorcjwatson <>
Fri, 23 May 2003 05:40:29 +0000 (21:40 -0800)
committercjwatson <>
Fri, 23 May 2003 05:40:29 +0000 (21:40 -0800)
Improve display of MIME-encoded bugs. Now you get a link at the top of each
MIME part to the "download attachment" system we've had for a while; each
MIME part is decoded appropriately for display, so no more quoted-printable
rubbish; the actual text of an attachment is not displayed unless you use
the download link, so no more reams of base-64; and an extra "&mime=no"
parameter is provided in case there's anybody who liked the old display.

In addition, this fixes a few small bugs in the existing attachment
download system, such as those mentioned in #160389.

cgi/bugreport.cgi
cgi/common.pl

index 831d1718a4fe018c832ee8f3b3465d5998cc79c8..43600b62e68fe1b2ac0047d8d22eb4fec0da30fd 100755 (executable)
@@ -31,6 +31,7 @@ my $boring = ($param{'boring'} || 'no') eq 'yes';
 my $terse = ($param{'terse'} || 'no') eq 'yes';
 my $reverse = ($param{'reverse'} || 'no') eq 'yes';
 my $mbox = ($param{'mbox'} || 'no') eq 'yes'; 
+my $mime = ($param{'mime'} || 'yes') eq 'yes';
 
 # Not used by this script directly, but fetch these so that pkgurl() and
 # friends can propagate them correctly.
@@ -52,6 +53,67 @@ if ($ENV{REQUEST_METHOD} eq 'HEAD' and not defined($att) and not $mbox) {
     exit 0;
 }
 
+sub display_entity ($$$$\$\@);
+sub display_entity ($$$$\$\@) {
+    my $entity = shift;
+    my $ref = shift;
+    my $top = shift;
+    my $xmessage = shift;
+    my $this = shift;
+    my $attachments = shift;
+
+    my $head = $entity->head;
+    my $disposition = $head->mime_attr('content-disposition');
+    $disposition = 'inline' if not defined $disposition or $disposition eq '';
+    my $type = $entity->effective_type;
+    my $filename = $entity->head->recommended_filename;
+    $filename = '' unless defined $filename;
+
+    if ($top) {
+       $$this .= htmlsanit($entity->stringify_header);
+       $$this .= "\n";
+    }
+
+    unless (($top and $type =~ m[^text/plain(?:;|$)]) or
+           ($type =~ m[^multipart/])) {
+       push @$attachments, $entity;
+       my @dlargs = ($ref, "msg=$xmessage", "att=$#$attachments");
+       push @dlargs, "filename=$filename" if $filename ne '';
+       my $printname = $filename;
+       $printname = 'Message part ' . ($#$attachments + 1) if $filename eq '';
+       $$this .= '[<a href="' . dlurl(@dlargs) . qq{">$printname</a> } .
+                 "($type, $disposition)]\n\n";
+
+       if ($msg and defined($att) and $att eq $#$attachments) {
+           my $head = $entity->head;
+           chomp(my $type = $entity->effective_type);
+           my $body = $entity->stringify_body;
+           print "Content-Type: $type";
+           print "; name=$filename" if $filename ne '';
+           print "\n\n";
+           my $decoder = new MIME::Decoder($head->mime_encoding);
+           $decoder->decode(new IO::Scalar(\$body), \*STDOUT);
+           exit(0);
+       }
+    }
+
+    return if $disposition eq 'attachment' and not defined($att);
+    return unless ($type =~ m[^text/] and $type !~ m[^text/html(?:;|$)]) or
+                 $type =~ m[^application/pgp(?:;|$)] or
+                 $entity->is_multipart;
+
+    if ($entity->is_multipart) {
+       my @parts = $entity->parts;
+       foreach my $part (@parts) {
+           display_entity($part, $ref, 0, $xmessage,
+                          $$this, @$attachments);
+           $$this .= "\n";
+       }
+    } else {
+       $$this .= htmlsanit($entity->bodyhandle->as_string);
+    }
+}
+
 my %maintainer = %{getmaintainers()};
 my %pkgsrc = %{getpkgsrc()};
 
@@ -209,60 +271,20 @@ while(my $line = <L>) {
 
                        push @mails, join( '', @mail ) if ( $mbox && @mail );
                        if ($show) {
-                               my $downloadHtml = '';
-                               if (@mail) {
+                               if (not $mime and @mail) {
+                                       $this .= htmlsanit(join '', @mail);
+                               } elsif (@mail) {
                                        my $parser = new MIME::Parser;
                                        $parser->tmp_to_core(1);
                                        $parser->output_to_core(1);
 #                                      $parser->output_under("/tmp");
                                        my $entity = $parser->parse( new IO::Lines \@mail );
-                                       # TODO: make local subdir, clean it outselves
+                                       # TODO: make local subdir, clean it ourselves
                                        # the following does NOT delete the msg dirs in /tmp
                                        END { if ( $entity ) { $entity->purge; } if ( $parser ) { $parser->filer->purge; } }
                                        my @attachments = ();
-                                       if ( $entity->is_multipart ) {
-                                               my @parts = $entity->parts_DFS;
-#                                              $this .= htmlsanit($entity->head->stringify);
-                                               my @keep = ();
-                                               foreach ( @parts ) {
-                                                       my $head = $_->head;
-#                                                      $head->mime_attr("content-transfer-encoding" => "8bit")
-#                                                              if !$head->mime_attr("content-transfer-encoding");
-                                                       my ($disposition,$type) = (
-                                                               $head->mime_attr("content-disposition"),
-                                                               lc $head->mime_attr("content-type")
-                                                               );
-                                                       
-#print STDERR "'$type' '$disposition'\n";
-                                                       if ($disposition && ( $disposition eq "attachment" || $disposition eq "inline" ) && $_->head->recommended_filename ) {
-                                                               push @attachments, $_;
-                                                               my $file = $_->head->recommended_filename;
-                                                               $downloadHtml .= "View Attachment: <a href=\"".dlurl($ref,"msg=$xmessage","att=$#attachments","filename=$file")."\">$file</a>\n";
-                                                               if ($msg && defined($att) && $att eq $#attachments) {
-                                                                       my $head = $_->head;
-                                                                       my $type;
-                                                                       chomp($type = $head->mime_attr("content-type"));
-                                                                       my $body = $_->stringify_body;
-                                                                       print "Content-Type: $type; name=$file\n\n";
-                                                                       my $decoder = new MIME::Decoder($head->mime_encoding);
-                                                                       $decoder->decode(new IO::Scalar(\$body), \*STDOUT);
-                                                                       exit(0);
-                                                               }
-                                                               if ($type eq 'text/plain') {
-#                                                                      push @keep, $_;
-                                                               }
-#                                                              $this .= htmlsanit($_->head->stringify);
-                                                       } else {
-#                                                              $this .= htmlsanit($_->head->stringify);
-#                                                              push @keep, $_;
-                                                       }
-#                                                      $this .= "\n" . htmlsanit($_->stringify_body);
-                                               }
-#                                              $entity->parts(\@keep) if (!$msg);
-                                       }
-                                       $this .= htmlsanit($entity->stringify);
+                                       display_entity($entity, $ref, 1, $xmessage, $this, @attachments);
                                }
-                               $this = "$downloadHtml\n$this$downloadHtml" if $downloadHtml;
 #                              if ($normstate eq 'go' || $normstate eq 'go-nox') {
                                if ($normstate ne 'html') {
                                        $this = "<pre>\n$this</pre>\n";
@@ -271,8 +293,6 @@ while(my $line = <L>) {
                                        $this .= "  <em><a href=\"" . bugurl($ref, "msg=$xmessage") . "\">Full text</a> available.</em>";
                                }
                                $this = "$thisheader$this" if $thisheader && !( $normstate eq 'html' );;
-                               $this = "$downloadHtml" if ($terse && $normstate ne 'html');
-                               $downloadHtml = '';
                                $thisheader = '';
                                my $delim = $terse ? "<p>" : "<hr>";
                                if ($reverse) {
index c7662c4371f1f7ef451c579dd22d2b084f0b75d5..ff79e42b25dee96d2f4734984ce10fba53c290a4 100644 (file)
@@ -305,8 +305,10 @@ sub dlurl {
        $filename = $1 if ($val =~ /^filename=(.*)$/);
     }
     $params .= "&archive=yes" if ($common_archive);
+    my $pathinfo = '';
+    $pathinfo = "/$filename" if $filename ne '';
 
-    return urlsanit("bugreport.cgi/$filename?$params");
+    return urlsanit("bugreport.cgi$pathinfo?$params");
 }
 
 sub mboxurl {