]> git.donarmstrong.com Git - debbugs.git/commitdiff
fix output of handle email message so that it handles the new type of scalars and...
authorDon Armstrong <don@donarmstrong.com>
Fri, 15 Mar 2013 22:16:45 +0000 (15:16 -0700)
committerDon Armstrong <don@donarmstrong.com>
Fri, 15 Mar 2013 22:16:45 +0000 (15:16 -0700)
Debbugs/CGI/Bugreport.pm

index 29602c58c39f1088bc17208e49ab28c1561ac152..d4800cd3c7df1f0440962f20c49d457eec8d491a 100644 (file)
@@ -40,7 +40,7 @@ use Debbugs::Common qw(globify_scalar english_join);
 use Debbugs::UTF8;
 use Debbugs::Config qw(:config);
 use POSIX qw(strftime);
-use Encode qw(decode_utf8);
+use Encode qw(decode_utf8 encode_utf8);
 
 BEGIN{
      ($VERSION) = q$Revision: 494 $ =~ /^Revision:\s+([^\s+])/;
@@ -116,7 +116,7 @@ sub display_entity {
                                        }
                             );
 
-    $param{output} = globify_scalar($param{output});
+    my $output = globify_scalar($param{output});
     my $entity = $param{entity};
     my $ref = $param{bug_num};
     my $top = $param{outer};
@@ -135,25 +135,26 @@ sub display_entity {
        not $param{terse} and
        not exists $param{att}) {
         my $header = $entity->head;
-        print {$param{output}} "<div class=\"headers\">\n";
+        print {$output} "<div class=\"headers\">\n";
         if ($param{trim_headers}) {
              my @headers;
              foreach (qw(From To Cc Subject Date)) {
                   my $head_field = $head->get($_);
                   next unless defined $head_field and $head_field ne '';
+                   chomp $head_field;
                    if ($_ eq 'From') {
                        my $libravatar_url = __libravatar_url(decode_rfc1522($head_field));
                        if (defined $libravatar_url and length $libravatar_url) {
-                           push @headers,q(<img src=").$libravatar_url.q(">);
+                           push @headers,q(<img src=").$libravatar_url.qq(">\n);
                        }
                    }
-                  push @headers, qq(<p><span class="header">$_:</span> ) . html_escape(decode_rfc1522($head_field))."</p>";
+                  push @headers, qq(<p><span class="header">$_:</span> ) . html_escape(decode_rfc1522($head_field))."</p>\n";
              }
-             print {$param{output}} join(qq(), @headers);
+             print {$output} join(qq(), @headers);
         } else {
-             print {$param{output}} "<pre>".html_escape(decode_rfc1522($entity->head->stringify))."</pre>\n";
+             print {$output} "<pre>".html_escape(decode_rfc1522($entity->head->stringify))."</pre>\n";
         }
-        print {$param{output}} "</div>\n";
+        print {$output} "</div>\n";
     }
 
     if (not (($param{outer} and $type =~ m{^text(?:/plain)?(?:;|$)})
@@ -168,23 +169,23 @@ sub display_entity {
            my $body = $entity->stringify_body;
            # this attachment has its own content type, so we must not
            # try to convert it to UTF-8 or do anything funky.
-           my @layers = PerlIO::get_layers($param{output});
-           binmode($param{output},':raw');
-           print {$param{output}} "Content-Type: $type";
+           my @layers = PerlIO::get_layers($output);
+           binmode($output,':raw');
+           print {$output} "Content-Type: $type";
            my ($charset) = $head->get('Content-Type:') =~ m/charset\s*=\s*\"?([\w-]+)\"?/i;
-           print {$param{output}} qq(; charset="$charset") if defined $charset;
-           print {$param{output}} "\n";
+           print {$output} qq(; charset="$charset") if defined $charset;
+           print {$output} "\n";
            if ($filename ne '') {
                my $qf = $filename;
                $qf =~ s/"/\\"/g;
                $qf =~ s[.*/][];
-               print {$param{output}} qq{Content-Disposition: inline; filename="$qf"\n};
+               print {$output} qq{Content-Disposition: inline; filename="$qf"\n};
            }
-           print {$param{output}} "\n";
+           print {$output} "\n";
            my $decoder = MIME::Decoder->new($head->mime_encoding);
-           $decoder->decode(IO::Scalar->new(\$body), $param{output});
+           $decoder->decode(IO::Scalar->new(\$body), $output);
            if (grep {/utf8/} @layers) {
-               binmode($param{output},':utf8');
+               binmode($output,':utf8');
            }
            return;
        }
@@ -193,7 +194,7 @@ sub display_entity {
             push @dlargs, (filename=>$filename) if $filename ne '';
             my $printname = $filename;
             $printname = 'Message part ' . ($#$attachments + 1) if $filename eq '';
-            print {$param{output}} '<pre class="mime">[<a href="' .
+            print {$output} '<pre class="mime">[<a href="' .
                  html_escape(bug_links(bug => $ref,
                                        links_only => 1,
                                        options => {@dlargs})
@@ -215,18 +216,18 @@ sub display_entity {
                           bug_num => $ref,
                           outer => 0,
                           msg_num => $xmessage,
-                          output => $param{output},
+                          output => $output,
                           attachments => $attachments,
                           terse => $param{terse},
                           exists $param{msg}?(msg=>$param{msg}):(),
                           exists $param{att}?(att=>$param{att}):(),
                          );
-           # print {$param{output}} "\n";
+           # print {$output} "\n";
        }
     } elsif ($entity->parts) {
        # We must be dealing with a nested message.
         if (not exists $param{att}) {
-             print {$param{output}} "<blockquote>\n";
+             print {$output} "<blockquote>\n";
         }
        my @parts = $entity->parts;
        foreach my $part (@parts) {
@@ -234,16 +235,16 @@ sub display_entity {
                           bug_num => $ref,
                           outer => 1,
                           msg_num => $xmessage,
-                          output => $param{output},
+                          output => $output,
                           attachments => $attachments,
                           terse => $param{terse},
                           exists $param{msg}?(msg=>$param{msg}):(),
                           exists $param{att}?(att=>$param{att}):(),
                          );
-           # print {$param{output}} "\n";
+           # print {$output} "\n";
        }
         if (not exists $param{att}) {
-             print {$param{output}} "</blockquote>\n";
+             print {$output} "</blockquote>\n";
         }
     } elsif (not $param{terse}) {
         my $content_type = $entity->head->get('Content-Type:') || "text/html";
@@ -277,7 +278,7 @@ sub display_entity {
                       {$1<a href="http://$config{cve_tracker}$2">$2</a>$3}gxm;
         }
         if (not exists $param{att}) {
-             print {$param{output}} qq(<pre class="message">$body</pre>\n);
+             print {$output} qq(<pre class="message">$body</pre>\n);
         }
     }
 }
@@ -299,9 +300,8 @@ appropriate.
 sub handle_email_message{
      my ($email,%param) = @_;
 
-     # output needs to have the is_utf8 flag on to avoid double
-     # encoding
-     my $output = decode_utf8('');
+     my $output;
+     my $output_fh = globify_scalar(\$output);
      my $parser = MIME::Parser->new();
      # Because we are using memory, not tempfiles, there's no need to
      # clean up here like in Debbugs::MIME
@@ -313,15 +313,14 @@ sub handle_email_message{
                    bug_num => $param{ref},
                    outer   => 1,
                    msg_num => $param{msg_num},
-                   output => \$output,
+                   output => $output_fh,
                    attachments => \@attachments,
                    terse       => $param{terse},
                    exists $param{msg}?(msg=>$param{msg}):(),
                    exists $param{att}?(att=>$param{att}):(),
                    exists $param{trim_headers}?(trim_headers=>$param{trim_headers}):(),
                   );
-     return $output;
-
+     return decode_utf8($output);
 }
 
 =head2 handle_record