]> git.donarmstrong.com Git - debbugs.git/blob - cgi/bugreport.cgi
[project @ 2005-08-22 14:27:48 by ajt]
[debbugs.git] / cgi / bugreport.cgi
1 #!/usr/bin/perl -wT
2
3 package debbugs;
4
5 use strict;
6 use POSIX qw(strftime tzset);
7 use MIME::Parser;
8 use MIME::Decoder;
9 use IO::Scalar;
10 use IO::File;
11
12 #require '/usr/lib/debbugs/errorlib';
13 require './common.pl';
14
15 require '/etc/debbugs/config';
16 require '/etc/debbugs/text';
17
18 use vars(qw($gEmailDomain $gHTMLTail $gSpoolDir $gWebDomain));
19
20 # for read_log_records
21 use Debbugs::Log;
22 use Debbugs::MIME qw(convert_to_utf8 decode_rfc1522);
23
24 use Scalar::Util qw(looks_like_number);
25
26 my %param = readparse();
27
28 my $tail_html;
29
30 my $ref = $param{'bug'} || quitcgi("No bug number");
31 $ref =~ /(\d+)/ or quitcgi("Invalid bug number");
32 $ref = $1;
33 my $short = "#$ref";
34 my $msg = $param{'msg'} || "";
35 my $att = $param{'att'};
36 my $boring = ($param{'boring'} || 'no') eq 'yes'; 
37 my $terse = ($param{'terse'} || 'no') eq 'yes';
38 my $reverse = ($param{'reverse'} || 'no') eq 'yes';
39 my $mbox = ($param{'mbox'} || 'no') eq 'yes'; 
40 my $mime = ($param{'mime'} || 'yes') eq 'yes';
41
42 my $trim_headers = ($param{trim} || ($msg?'no':'yes')) eq 'yes';
43
44 # Not used by this script directly, but fetch these so that pkgurl() and
45 # friends can propagate them correctly.
46 my $archive = ($param{'archive'} || 'no') eq 'yes';
47 my $repeatmerged = ($param{'repeatmerged'} || 'yes') eq 'yes';
48 set_option('archive', $archive);
49 set_option('repeatmerged', $repeatmerged);
50
51 my $buglog = buglog($ref);
52
53 if (defined $ENV{REQUEST_METHOD} and $ENV{REQUEST_METHOD} eq 'HEAD' and not defined($att) and not $mbox) {
54     print "Content-Type: text/html; charset=utf-8\n";
55     my @stat = stat $buglog;
56     if (@stat) {
57         my $mtime = strftime '%a, %d %b %Y %T GMT', gmtime($stat[9]);
58         print "Last-Modified: $mtime\n";
59     }
60     print "\n";
61     exit 0;
62 }
63
64 sub display_entity ($$$$\$\@);
65 sub display_entity ($$$$\$\@) {
66     my $entity = shift;
67     my $ref = shift;
68     my $top = shift;
69     my $xmessage = shift;
70     my $this = shift;
71     my $attachments = shift;
72
73     my $head = $entity->head;
74     my $disposition = $head->mime_attr('content-disposition');
75     $disposition = 'inline' if not defined $disposition or $disposition eq '';
76     my $type = $entity->effective_type;
77     my $filename = $entity->head->recommended_filename;
78     $filename = '' unless defined $filename;
79     $filename = decode_rfc1522($filename);
80
81     if ($top and not $terse) {
82          my $header = $entity->head;
83          $$this .= "<pre class=\"headers\">\n";
84          if ($trim_headers) {
85               my @headers;
86               foreach (qw(From To Cc Subject Date)) {
87                    my $head_field = $head->get($_);
88                    next unless defined $head_field and $head_field ne '';
89                    push @headers, qq(<b>$_:</b> ) . htmlsanit(decode_rfc1522($head_field));
90               }
91               $$this .= join(qq(), @headers) unless $terse;
92          } else {
93               $$this .= htmlsanit(decode_rfc1522($entity->head->stringify));
94          }
95          $$this .= "</pre>\n";
96     }
97
98     unless (($top and $type =~ m[^text(?:/plain)?(?:;|$)]) or
99             ($type =~ m[^multipart/])) {
100         push @$attachments, $entity;
101         my @dlargs = ($ref, "msg=$xmessage", "att=$#$attachments");
102         push @dlargs, "filename=$filename" if $filename ne '';
103         my $printname = $filename;
104         $printname = 'Message part ' . ($#$attachments + 1) if $filename eq '';
105         $$this .= '<pre class="mime">[<a href="' . bugurl(@dlargs) . qq{">$printname</a> } .
106                   "($type, $disposition)]</pre>\n";
107
108         if ($msg and defined($att) and $att eq $#$attachments) {
109             my $head = $entity->head;
110             chomp(my $type = $entity->effective_type);
111             my $body = $entity->stringify_body;
112             print "Content-Type: $type\n";
113             if ($filename ne '') {
114                 my $qf = $filename;
115                 $qf =~ s/"/\\"/g;
116                 $qf =~ s[.*/][];
117                 print qq{Content-Disposition: attachment; filename="$qf"\n};
118             }
119             print "\n";
120             my $decoder = new MIME::Decoder($head->mime_encoding);
121             $decoder->decode(new IO::Scalar(\$body), \*STDOUT);
122             exit(0);
123         }
124     }
125
126     return if not $top and $disposition eq 'attachment' and not defined($att);
127     return unless ($type =~ m[^text/?] and
128                    $type !~ m[^text/(?:html|enriched)(?:;|$)]) or
129                   $type =~ m[^application/pgp(?:;|$)] or
130                   $entity->parts;
131
132     if ($entity->is_multipart) {
133         my @parts = $entity->parts;
134         foreach my $part (@parts) {
135             display_entity($part, $ref, 0, $xmessage,
136                            $$this, @$attachments);
137             $$this .= "\n";
138         }
139     } elsif ($entity->parts) {
140         # We must be dealing with a nested message.
141         $$this .= "<blockquote>\n";
142         my @parts = $entity->parts;
143         foreach my $part (@parts) {
144             display_entity($part, $ref, 1, $xmessage,
145                            $$this, @$attachments);
146             $$this .= "\n";
147         }
148         $$this .= "</blockquote>\n";
149     } else {
150          if (not $terse) {
151               my $content_type = $entity->head->get('Content-Type:') || "text/html";
152               my ($charset) = $content_type =~ m/charset\s*=\s*\"?([\w-]+)\"?/i;
153               my $body = $entity->bodyhandle->as_string;
154               $body = convert_to_utf8($body,$charset) if defined $charset;
155               $body = htmlsanit($body);
156               $body =~ s,((ftp|http|https)://[\S~-]+?/?)((\&gt\;)?[)]?[']?[:.\,]?(\s|$)),<a href=\"$1\">$1</a>$3,go;
157               $$this .= "<pre class=\"message\">";
158               $$this .= $body;
159               $$this .= "</pre>\n";
160          }
161     }
162 }
163
164 my %maintainer = %{getmaintainers()};
165 my %pkgsrc = %{getpkgsrc()};
166
167 my $indexentry;
168 my $showseverity;
169
170 my $tpack;
171 my $tmain;
172
173 $ENV{"TZ"} = 'UTC';
174 tzset();
175
176 my $dtime = strftime "%a, %e %b %Y %T UTC", localtime;
177 $tail_html = $debbugs::gHTMLTail;
178 $tail_html =~ s/SUBSTITUTE_DTIME/$dtime/;
179
180 my %status = %{getbugstatus($ref)};
181 unless (%status) {
182     print <<EOF;
183 Content-Type: text/html; charset=utf-8
184
185 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
186 <html>
187 <head><title>$debbugs::gProject $debbugs::gBug report logs - $short</title></head>
188 <body>
189 <h1>$debbugs::gProject $debbugs::gBug report logs - $short</h1>
190 <p>There is no record of $debbugs::gBug $short.
191 Try the <a href="http://$gWebDomain/">search page</a> instead.</p>
192 $tail_html</body></html>
193 EOF
194     exit 0;
195 }
196
197 $|=1;
198
199 $tpack = lc $status{'package'};
200 my @tpacks = splitpackages($tpack);
201
202 if  ($status{severity} eq 'normal') {
203         $showseverity = '';
204 } elsif (isstrongseverity($status{severity})) {
205         $showseverity = "Severity: <em class=\"severity\">$status{severity}</em>;\n";
206 } else {
207         $showseverity = "Severity: $status{severity};\n";
208 }
209
210 $indexentry .= "<div class=\"msgreceived\">\n";
211 $indexentry .= htmlpackagelinks($status{package}, 0) . ";\n";
212
213 foreach my $pkg (@tpacks) {
214     my $tmaint = defined($maintainer{$pkg}) ? $maintainer{$pkg} : '(unknown)';
215     my $tsrc = defined($pkgsrc{$pkg}) ? $pkgsrc{$pkg} : '(unknown)';
216
217     $indexentry .=
218             htmlmaintlinks(sub { $_[0] == 1 ? "Maintainer for $pkg is\n"
219                                             : "Maintainers for $pkg are\n" },
220                            $tmaint);
221     $indexentry .= ";\nSource for $pkg is\n".
222             '<a href="'.srcurl($tsrc)."\">$tsrc</a>" if ($tsrc ne "(unknown)");
223     $indexentry .= ".\n";
224 }
225
226 $indexentry .= "<br>";
227 $indexentry .= htmladdresslinks("Reported by: ", \&submitterurl,
228                                 $status{originator}) . ";\n";
229 $indexentry .= sprintf "Date: %s.\n",
230                 (strftime "%a, %e %b %Y %T UTC", localtime($status{date}));
231
232 $indexentry .= "<br>Owned by: " . htmlsanit($status{owner}) . ".\n"
233               if length $status{owner};
234
235 $indexentry .= "</div>\n";
236
237 my @descstates;
238
239 $indexentry .= "<h3>$showseverity";
240 $indexentry .= sprintf "Tags: %s;\n", 
241                 htmlsanit(join(", ", sort(split(/\s+/, $status{tags}))))
242                         if length($status{tags});
243 $indexentry .= "<br>" if (length($showseverity) or length($status{tags}));
244
245 my @merged= split(/ /,$status{mergedwith});
246 if (@merged) {
247         my $descmerged = 'Merged with ';
248         my $mseparator = '';
249         for my $m (@merged) {
250                 $descmerged .= $mseparator."<a href=\"" . bugurl($m) . "\">#$m</a>";
251                 $mseparator= ",\n";
252         }
253         push @descstates, $descmerged;
254 }
255
256 if (@{$status{found_versions}}) {
257     my $foundtext = 'Found in ';
258     $foundtext .= (@{$status{found_versions}} == 1) ? 'version ' : 'versions ';
259     $foundtext .= join ', ', map htmlsanit($_), @{$status{found_versions}};
260     push @descstates, $foundtext;
261 }
262
263 if (@{$status{fixed_versions}}) {
264     my $fixedtext = '<strong>Fixed</strong> in ';
265     $fixedtext .= (@{$status{fixed_versions}} == 1) ? 'version ' : 'versions ';
266     $fixedtext .= join ', ', map htmlsanit($_), @{$status{fixed_versions}};
267     if (length($status{done})) {
268         $fixedtext .= ' by ' . htmlsanit(decode_rfc1522($status{done}));
269     }
270     push @descstates, $fixedtext;
271 } elsif (length($status{done})) {
272     push @descstates, "<strong>Done:</strong> ".htmlsanit(decode_rfc1522($status{done}));
273 } elsif (length($status{forwarded})) {
274     push @descstates, "<strong>Forwarded</strong> to ".maybelink($status{forwarded});
275 }
276
277 $indexentry .= join(";\n<br>", @descstates) . ";\n<br>" if @descstates;
278 $indexentry .= "</h3>\n";
279
280 my $descriptivehead = $indexentry;
281
282 my $buglogfh;
283 if ($buglog =~ m/\.gz$/) {
284     my $oldpath = $ENV{'PATH'};
285     $ENV{'PATH'} = '/bin:/usr/bin';
286     $buglogfh = new IO::File "zcat $buglog |" or &quitcgi("open log for $ref: $!");
287     $ENV{'PATH'} = $oldpath;
288 } else {
289     $buglogfh = new IO::File "<$buglog" or &quitcgi("open log for $ref: $!");
290 }
291 if ($buglog !~ m#^\Q$gSpoolDir/db#) {
292     $descriptivehead .= "\n<p class=\"msgreceived\">Bug is <strong>archived</strong>. No further changes may be made.</p>";
293 }
294
295
296 my @records;
297 eval{
298      @records = read_log_records($buglogfh);
299 };
300 if ($@) {
301      quitcgi("Bad bug log for $debbugs::gBug $ref. Unable to read records: $@");
302 }
303 undef $buglogfh;
304
305 =head2 handle_email_message
306
307      handle_email_message($record->{text},
308                           ref        => $bug_number,
309                           msg_number => $msg_number,
310                          );
311
312 Returns a decoded e-mail message and displays entities/attachments as
313 appropriate.
314
315
316 =cut
317
318 sub handle_email_message{
319      my ($email,%options) = @_;
320
321      my $output = '';
322      my $parser = new MIME::Parser;
323      $parser->tmp_to_core(1);
324      $parser->output_to_core(1);
325      # $parser->output_under("/tmp");
326      my $entity = $parser->parse_data( $email);
327      # TODO: make local subdir, clean it ourselves
328      # the following does NOT delete the msg dirs in /tmp
329      END { if ( $entity ) { $entity->purge; } if ( $parser ) { $parser->filer->purge; } }
330      my @attachments = ();
331      display_entity($entity, $options{ref}, 1, $options{msg_number}, $output, @attachments);
332      return $output;
333
334 }
335
336 =head2 bug_links
337
338      bug_links($one_bug);
339      bug_links($starting_bug,$stoping_bugs,);
340
341 Creates a set of links to bugs, starting with bug number
342 $starting_bug, and finishing with $stoping_bug; if only one bug is
343 passed, makes a link to only a single bug.
344
345 The content of the link is the bug number.
346
347 =cut
348
349 sub bug_links{
350      my ($start,$stop,$query_arguments) = @_;
351      $stop = $stop || $start;
352      $query_arguments ||= '';
353      my @output;
354      for my $bug ($start..$stop) {
355           push @output,'<a href="'.bugurl($bug,'').qq(">$bug</a>);
356      }
357      return join(', ',@output);
358 }
359
360 =head2 handle_record
361
362      push @log, handle_record($record,$ref,$msg_num);
363
364 Deals with a record in a bug log as returned by
365 L<Debbugs::Log::read_log_records>; returns the log information that
366 should be output to the browser.
367
368 =cut
369
370 sub handle_record{
371      my ($record,$bug_number,$msg_number,$seen_msg_ids) = @_;
372
373      my $output = '';
374      local $_ = $record->{type};
375      if (/html/) {
376           $output .= decode_rfc1522($record->{text});
377           # Link to forwarded http:// urls in the midst of the report
378           # (even though these links already exist at the top)
379           $output =~ s,((?:ftp|http|https)://[\S~-]+?/?)([\)\'\:\.\,]?(?:\s|\.<|$)),<a href=\"$1\">$1</a>$2,go;
380           # Add links to the cloned bugs
381           $output =~ s{(Bug )(\d+)( cloned as bugs? )(\d+)(?:\-(\d+)|)}{$1.bug_links($2).$3.bug_links($4,$5)}eo;
382           $output .= '<a href="' . bugurl($ref, 'msg='.($msg_number+1)) . '">Full text</a> and <a href="' .
383                bugurl($ref, 'msg='.($msg_number+1), 'mbox') . '">rfc822 format</a> available.</em>';
384
385           $output = "<div class=\"msgreceived\">\n" . $output . "</div>\n";
386      }
387      elsif (/recips/) {
388           my ($msg_id) = $record->{text} =~ /^Message-Id:\s+<(.+)>/im;
389           if (defined $msg_id and exists $$seen_msg_ids{$msg_id}) {
390                return ();
391           }
392           elsif (defined $msg_id) {
393                $$seen_msg_ids{$msg_id} = 1;
394           }
395           $output .= 'View this message in <a href="' . bugurl($ref, "msg=$msg_number", "mbox") . '">rfc822 format</a></em>';
396           $output .= handle_email_message($record->{text},
397                                     ref        => $bug_number,
398                                     msg_number => $msg_number,
399                                    );
400      }
401      elsif (/autocheck/) {
402           # Do nothing
403      }
404      elsif (/incoming-recv/) {
405           my ($msg_id) = $record->{text} =~ /^Message-Id:\s+<(.+)>/im;
406           if (defined $msg_id and exists $$seen_msg_ids{$msg_id}) {
407                return ();
408           }
409           elsif (defined $msg_id) {
410                $$seen_msg_ids{$msg_id} = 1;
411           }
412           # Incomming Mail Message
413           my ($received,$hostname) = $record->{text} =~ m/Received: \(at (\S+)\) by (\S+)\;/;
414           $output .= qq|<p class="msgreceived"><a name="msg$msg_number">Message received at |.
415                htmlsanit("$received\@$hostname") . q| (<a href="| . bugurl($ref, "msg=$msg_number") . '">full text</a>'.q|, <a href="| . bugurl($ref, "msg=$msg_number") . '&mbox=yes">mbox</a>)'.":</a></p>\n";
416           $output .= handle_email_message($record->{text},
417                                     ref        => $bug_number,
418                                     msg_number => $msg_number,
419                                    );
420      }
421      else {
422           die "Unknown record type $_";
423      }
424      return $output;
425 }
426
427 my $log='';
428 my $msg_num = 0;
429 my $skip_next = 0;
430 if (looks_like_number($msg) and ($msg-1) <= $#records) {
431      @records = ($records[$msg-1]);
432      $msg_num = $msg - 1;
433 }
434 my @log;
435 if ( $mbox ) {
436      if (@records > 1) {
437           print qq(Content-Disposition: attachment; filename="bug_${ref}.mbox"\n);
438           print "Content-Type: text/plain\n\n";
439      }
440      else {
441           $msg_num++;
442           print qq(Content-Disposition: attachment; filename="bug_${ref}_message_${msg_num}.mbox"\n);
443           print "Content-Type: message/rfc822\n\n";
444      }
445      for my $record (@records) {
446           next if $record->{type} !~ /^(?:recips|incoming-recv)$/;
447           next if not $boring and $record->{type} eq 'recips' and @records > 1;
448           my @lines = split( "\n", $record->{text}, -1 );
449           if ( $lines[ 1 ] =~ m/^From / ) {
450                my $tmp = $lines[ 0 ];
451                $lines[ 0 ] = $lines[ 1 ];
452                $lines[ 1 ] = $tmp;
453           }
454           if ( !( $lines[ 0 ] =~ m/^From / ) ) {
455                my $date = strftime "%a %b %d %T %Y", localtime;
456                unshift @lines, "From unknown $date";
457           }
458           map { s/^(>*From )/>$1/ } @lines[ 1 .. $#lines ];
459           print join( "\n", @lines ) . "\n";
460      }
461      exit 0;
462 }
463
464 else {
465      my %seen_msg_ids;
466      for my $record (@records) {
467           $msg_num++;
468           if ($skip_next) {
469                $skip_next = 0;
470                next;
471           }
472           $skip_next = 1 if $record->{type} eq 'html' and not $boring;
473           push @log, handle_record($record,$ref,$msg_num,\%seen_msg_ids);
474      }
475 }
476
477 @log = reverse @log if $reverse;
478 $log = join('<hr>',@log);
479
480
481 print "Content-Type: text/html; charset=utf-8\n\n";
482
483 my $title = htmlsanit($status{subject});
484
485 my $dummy2 = $debbugs::gWebHostBugDir;
486
487 print "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n";
488 print "<HTML><HEAD>\n" . 
489     "<TITLE>$title - $debbugs::gProject $debbugs::gBug report logs - $short</TITLE>\n" .
490      '<meta http-equiv="Content-Type" content="text/html;charset=utf-8">'.
491      "<link rel=\"stylesheet\" href=\"$debbugs::gWebHostBugDir/css/bugs.css\" type=\"text/css\">" .
492     "</HEAD>\n" .
493     '<BODY>' .
494     "\n";
495 print "<H1>" . "$debbugs::gProject $debbugs::gBug report logs - <A HREF=\"mailto:$ref\@$gEmailDomain\">$short</A>" .
496       "<BR>" . $title . "</H1>\n";
497
498 print "$descriptivehead\n";
499 printf "<div class=\"msgreceived\"><p>View this report as an <a href=\"%s\">mbox folder</a>.</p></div>\n", bugurl($ref, "mbox");
500 print "<HR>";
501 print "$log";
502 print "<HR>";
503 print "<p class=\"msgreceived\">Send a report that <a href=\"/cgi-bin/bugspam.cgi?bug=$ref\">this bug log contains spam</a>.</p>\n<HR>\n";
504 print $tail_html;
505
506 print "</BODY></HTML>\n";
507
508 exit 0;