]> git.donarmstrong.com Git - debbugs.git/blob - cgi/bugreport.cgi
[project @ 2003-08-23 13:17:32 by cjwatson]
[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::Lines;
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 my %param = readparse();
21
22 my $tail_html;
23
24 my $ref = $param{'bug'} || quitcgi("No bug number");
25 $ref =~ /(\d+)/ or quitcgi("Invalid bug number");
26 $ref = $1;
27 my $short = "#$ref";
28 my $msg = $param{'msg'} || "";
29 my $att = $param{'att'};
30 my $boring = ($param{'boring'} || 'no') eq 'yes'; 
31 my $terse = ($param{'terse'} || 'no') eq 'yes';
32 my $reverse = ($param{'reverse'} || 'no') eq 'yes';
33 my $mbox = ($param{'mbox'} || 'no') eq 'yes'; 
34 my $mime = ($param{'mime'} || 'yes') eq 'yes';
35
36 # Not used by this script directly, but fetch these so that pkgurl() and
37 # friends can propagate them correctly.
38 my $archive = ($param{'archive'} || 'no') eq 'yes';
39 my $repeatmerged = ($param{'repeatmerged'} || 'yes') eq 'yes';
40 set_option('archive', $archive);
41 set_option('repeatmerged', $repeatmerged);
42
43 my $buglog = buglog($ref);
44
45 if ($ENV{REQUEST_METHOD} eq 'HEAD' and not defined($att) and not $mbox) {
46     print "Content-Type: text/html\n";
47     my @stat = stat $buglog;
48     if (@stat) {
49         my $mtime = strftime '%a, %d %b %Y %T GMT', gmtime($stat[9]);
50         print "Last-Modified: $mtime\n";
51     }
52     print "\n";
53     exit 0;
54 }
55
56 sub display_entity ($$$$\$\@);
57 sub display_entity ($$$$\$\@) {
58     my $entity = shift;
59     my $ref = shift;
60     my $top = shift;
61     my $xmessage = shift;
62     my $this = shift;
63     my $attachments = shift;
64
65     my $head = $entity->head;
66     my $disposition = $head->mime_attr('content-disposition');
67     $disposition = 'inline' if not defined $disposition or $disposition eq '';
68     my $type = $entity->effective_type;
69     my $filename = $entity->head->recommended_filename;
70     $filename = '' unless defined $filename;
71
72     if ($top) {
73         $$this .= htmlsanit($entity->stringify_header) unless ($terse);
74         $$this .= "\n";
75     }
76
77     unless (($top and $type =~ m[^text(?:/plain)?(?:;|$)]) or
78             ($type =~ m[^multipart/])) {
79         push @$attachments, $entity;
80         my @dlargs = ($ref, "msg=$xmessage", "att=$#$attachments");
81         push @dlargs, "filename=$filename" if $filename ne '';
82         my $printname = $filename;
83         $printname = 'Message part ' . ($#$attachments + 1) if $filename eq '';
84         $$this .= '[<a href="' . dlurl(@dlargs) . qq{">$printname</a> } .
85                   "($type, $disposition)]\n\n";
86
87         if ($msg and defined($att) and $att eq $#$attachments) {
88             my $head = $entity->head;
89             chomp(my $type = $entity->effective_type);
90             my $body = $entity->stringify_body;
91             print "Content-Type: $type";
92             print "; name=$filename" if $filename ne '';
93             print "\n\n";
94             my $decoder = new MIME::Decoder($head->mime_encoding);
95             $decoder->decode(new IO::Scalar(\$body), \*STDOUT);
96             exit(0);
97         }
98     }
99
100     return if not $top and $disposition eq 'attachment' and not defined($att);
101     return unless ($type =~ m[^text/?] and $type !~ m[^text/html(?:;|$)]) or
102                   $type =~ m[^application/pgp(?:;|$)] or
103                   $entity->parts;
104
105     if ($entity->is_multipart) {
106         my @parts = $entity->parts;
107         foreach my $part (@parts) {
108             display_entity($part, $ref, 0, $xmessage,
109                            $$this, @$attachments);
110             $$this .= "\n";
111         }
112     } elsif ($entity->parts) {
113         # We must be dealing with a nested message.
114         $$this .= "<blockquote>\n";
115         my @parts = $entity->parts;
116         foreach my $part (@parts) {
117             display_entity($part, $ref, 1, $xmessage,
118                            $$this, @$attachments);
119             $$this .= "\n";
120         }
121         $$this .= "</blockquote>\n";
122     } else {
123         $$this .= htmlsanit($entity->bodyhandle->as_string) unless ($terse);
124     }
125 }
126
127 my %maintainer = %{getmaintainers()};
128 my %pkgsrc = %{getpkgsrc()};
129
130 my $indexentry;
131 my $descriptivehead;
132 my $showseverity;
133
134 my $tpack;
135 my $tmain;
136
137 $ENV{"TZ"} = 'UTC';
138 tzset();
139
140 my $dtime = strftime "%a, %e %b %Y %T UTC", localtime;
141 $tail_html = $debbugs::gHTMLTail;
142 $tail_html =~ s/SUBSTITUTE_DTIME/$dtime/;
143
144 my %status = %{getbugstatus($ref)};
145 unless (%status) {
146     print <<EOF;
147 Content-Type: text/html
148
149 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
150 <html>
151 <head><title>$debbugs::gProject $debbugs::gBug report logs - $short</title></head>
152 <body>
153 <h1>$debbugs::gProject $debbugs::gBug report logs - $short</h1>
154 <p>There is no record of $debbugs::gBug $short.
155 Try the <a href="http://$gWebDomain/">search page</a> instead.</p>
156 $tail_html</body></html>
157 EOF
158     exit 0;
159 }
160
161 $|=1;
162
163 $tpack = lc $status{'package'};
164 my @tpacks = splitpackages($tpack);
165
166 if  ($status{severity} eq 'normal') {
167         $showseverity = '';
168 #} elsif (isstrongseverity($status{severity})) {
169 #       $showseverity = "<strong>Severity: $status{severity}</strong>;\n";
170 } else {
171         $showseverity = "Severity: <em>$status{severity}</em>;\n";
172 }
173
174 $indexentry .= "<p>$showseverity";
175 $indexentry .= htmlpackagelinks($status{package}, 0);
176
177 $indexentry .= "Reported by: <a href=\"" . submitterurl($status{originator})
178               . "\">" . htmlsanit($status{originator}) . "</a>;\n";
179
180 my $dummy = strftime "%a, %e %b %Y %T UTC", localtime($status{date});
181 $indexentry .= "Date: ".$dummy.";\n<br>";
182
183 my @descstates;
184
185 push @descstates, "Tags: <strong>"
186                 . htmlsanit(join(", ", sort(split(/\s+/, $status{tags}))))
187                 . "</strong>"
188                         if length($status{tags});
189
190 my @merged= split(/ /,$status{mergedwith});
191 if (@merged) {
192         my $descmerged = 'merged with ';
193         my $mseparator = '';
194         for my $m (@merged) {
195                 $descmerged .= $mseparator."<a href=\"" . bugurl($m) . "\">#$m</a>";
196                 $mseparator= ",\n";
197         }
198         push @descstates, $descmerged;
199 }
200
201 if (@{$status{found_versions}}) {
202     my $foundtext = 'Found in ';
203     $foundtext .= (@{$status{found_versions}} == 1) ? 'version ' : 'versions ';
204     $foundtext .= join ', ', map htmlsanit($_), @{$status{found_versions}};
205     push @descstates, $foundtext;
206 }
207
208 if (@{$status{fixed_versions}}) {
209     my $fixedtext = '<strong>Fixed</strong> in ';
210     $fixedtext .= (@{$status{fixed_versions}} == 1) ? 'version ' : 'versions ';
211     $fixedtext .= join ', ', map htmlsanit($_), @{$status{fixed_versions}};
212     if (length($status{done})) {
213         $fixedtext .= ' by ' . htmlsanit($status{done});
214     }
215     push @descstates, $fixedtext;
216 } elsif (length($status{done})) {
217         push @descstates, "<strong>Done:</strong> ".htmlsanit($status{done});
218 } elsif (length($status{forwarded})) {
219         push @descstates, "<strong>Forwarded</strong> to ".maybelink($status{forwarded});
220 }
221
222 $indexentry .= join(";\n", @descstates) . ";\n<br>" if @descstates;
223
224 $descriptivehead = $indexentry;
225 foreach my $pkg (@tpacks) {
226     my $tmaint = defined($maintainer{$pkg}) ? $maintainer{$pkg} : '(unknown)';
227     my $tsrc = defined($pkgsrc{$pkg}) ? $pkgsrc{$pkg} : '(unknown)';
228
229     $descriptivehead .=
230             htmlmaintlinks(sub { $_[0] == 1 ? "Maintainer for $pkg is\n"
231                                             : "Maintainers for $pkg are\n" },
232                            $tmaint);
233     $descriptivehead .= ";\nSource for $pkg is\n".
234             '<a href="'.srcurl($tsrc)."\">$tsrc</a>" if ($tsrc ne "(unknown)");
235     $descriptivehead .= ".\n<br>";
236 }
237
238 open L, "<$buglog" or &quitcgi("open log for $ref: $!");
239 if ($buglog !~ m#^\Q$gSpoolDir/db#) {
240     $descriptivehead .= "\n<p>Bug is <strong>archived</strong>. No further changes may be made.</p>";
241 }
242
243 my $log='';
244
245 my $xmessage = 1;
246 my $suppressnext = 0;
247 my $found_msgid = 0;
248 my %seen_msgid = ();
249
250 my $thisheader = '';
251 my $this = '';
252
253 my $cmsg = 1;
254
255 my $normstate= 'kill-init';
256 my $linenum = 0;
257 my @mail = ();
258 my @mails = ();
259 while(my $line = <L>) {
260         $linenum++;
261         if ($line =~ m/^.$/ and 1 <= ord($line) && ord($line) <= 7) {
262                 # state transitions
263                 my $newstate;
264                 my $statenum = ord($line);
265
266                 $newstate = 'autocheck'     if ($statenum == 1);
267                 $newstate = 'recips'        if ($statenum == 2);
268                 $newstate = 'kill-end'      if ($statenum == 3);
269                 $newstate = 'go'            if ($statenum == 5);
270                 $newstate = 'html'          if ($statenum == 6);
271                 $newstate = 'incoming-recv' if ($statenum == 7);
272
273                 # disallowed transitions:
274                 $_ = "$normstate $newstate";
275                 unless (m/^(go|go-nox|html) kill-end$/
276                     || m/^(kill-init|kill-end) (incoming-recv|autocheck|recips|html)$/
277                     || m/^kill-body go$/)
278                 {
279                         &quitcgi("$ref: Transition from $normstate to $newstate at $linenum disallowed");
280                 }
281
282 #$this .= "\n<br>states: $normstate $newstate<br>\n";
283
284 #               if ($newstate eq 'go') {
285 #                       $this .= "<pre>\n";
286 #               }
287                 if ($newstate eq 'html') {
288                         $this = '';
289                 }
290
291                 if ($newstate eq 'kill-end') {
292
293                         my $show = 1;
294                         $show = $boring
295                                 if ($suppressnext && $normstate ne 'html');
296
297                         $show = ($xmessage == $msg) if ($msg);
298
299                         push @mails, join( '', @mail ) if ( $mbox && @mail );
300                         if ($show) {
301                                 if (not $mime and @mail) {
302                                         $this .= htmlsanit(join '', @mail);
303                                 } elsif (@mail) {
304                                         my $parser = new MIME::Parser;
305                                         $parser->tmp_to_core(1);
306                                         $parser->output_to_core(1);
307 #                                       $parser->output_under("/tmp");
308                                         my $entity = $parser->parse( new IO::Lines \@mail );
309                                         # TODO: make local subdir, clean it ourselves
310                                         # the following does NOT delete the msg dirs in /tmp
311                                         END { if ( $entity ) { $entity->purge; } if ( $parser ) { $parser->filer->purge; } }
312                                         my @attachments = ();
313                                         display_entity($entity, $ref, 1, $xmessage, $this, @attachments);
314                                 }
315 #                               if ($normstate eq 'go' || $normstate eq 'go-nox') {
316                                 if ($normstate ne 'html') {
317                                         $this = "<pre>\n$this</pre>\n";
318                                 }
319                                 if ($normstate eq 'html') {
320                                         $this .= "  <em><a href=\"" . bugurl($ref, "msg=$xmessage") . "\">Full text</a> available.</em>";
321                                 }
322                                 $this = "$thisheader$this" if $thisheader && !( $normstate eq 'html' );;
323                                 $thisheader = '';
324                                 my $delim = $terse ? "<p>" : "<hr>";
325                                 if ($reverse) {
326                                         $log = "$this\n$delim$log";
327                                 } else {
328                                         $log .= "$this\n$delim\n";
329                                 }
330                         }
331
332                         $xmessage++ if ($normstate ne 'html');
333
334                         $suppressnext = $normstate eq 'html';
335                         $found_msgid = 0;
336                 }
337                 
338                 $normstate = $newstate;
339                 @mail = ();
340                 next;
341         }
342
343         $_ = $line;
344         if ($normstate eq 'incoming-recv') {
345                 my $pl= $_;
346                 $pl =~ s/\n+$//;
347                 m/^Received: \(at (\S+)\) by (\S+)\;/
348                         || &quitcgi("bad line \`$pl' in state incoming-recv");
349                 $thisheader = "<h2>Message received at ".htmlsanit("$1\@$2")
350                         . ":</h2>\n";
351                 $this = '';
352                 $normstate= 'go';
353                 push @mail, $_;
354         } elsif ($normstate eq 'html') {
355                 $this .= $_;
356         } elsif ($normstate eq 'go') {
357                 s/^\030//;
358                 if (!$suppressnext && !$found_msgid &&
359                     /^Message-ID: <(.*)>/i) {
360                         my $msgid = $1;
361                         $found_msgid = 1;
362                         if ($seen_msgid{$msgid}) {
363                                 $suppressnext = 1;
364                         } else {
365                                 $seen_msgid{$msgid} = 1;
366                         }
367                 }
368                 if (@mail) {
369                         push @mail, $_;
370                 } else {
371                         $this .= htmlsanit($_);
372                 }
373         } elsif ($normstate eq 'go-nox') {
374                 next if !s/^X//;
375                 if (!$suppressnext && !$found_msgid &&
376                     /^Message-ID: <(.*)>/i) {
377                         my $msgid = $1;
378                         $found_msgid = 1;
379                         if ($seen_msgid{$msgid}) {
380                                 $suppressnext = 1;
381                         } else {
382                                 $seen_msgid{$msgid} = 1;
383                         }
384                 }
385                 if (@mail) {
386                         push @mail, $_;
387                 } else {
388                         $this .= htmlsanit($_);
389                 }
390         } elsif ($normstate eq 'recips') {
391                 if (m/^-t$/) {
392                         $thisheader = "<h2>Message sent:</h2>\n";
393                 } else {
394                         s/\04/, /g; s/\n$//;
395                         $thisheader = "<h2>Message sent to ".htmlsanit($_).":</h2>\n";
396                 }
397                 $this = "";
398                 $normstate= 'kill-body';
399         } elsif ($normstate eq 'autocheck') {
400                 next if !m/^X-Debian-Bugs(-\w+)?: This is an autoforward from (\S+)/;
401                 $normstate= 'autowait';
402                 $thisheader = "<h2>Message received at $2:</h2>\n";
403                 $this = '';
404                 push @mail, $_;
405         } elsif ($normstate eq 'autowait') {
406                 next if !m/^$/;
407                 $normstate= 'go-nox';
408         } else {
409                 &quitcgi("$ref state $normstate line \`$_'");
410         }
411 }
412 &quitcgi("$ref state $normstate at end") unless $normstate eq 'kill-end';
413 close(L);
414
415 if ( $mbox ) {
416         print "Content-Type: text/plain\n\n";
417         foreach ( @mails ) {
418                 my @lines = split( "\n", $_, -1 );
419                 if ( $lines[ 1 ] =~ m/^From / ) {
420                         my $tmp = $lines[ 0 ];
421                         $lines[ 0 ] = $lines[ 1 ];
422                         $lines[ 1 ] = $tmp;
423                 }
424                 if ( !( $lines[ 0 ] =~ m/^From / ) ) {
425                         my $date = strftime "%a %b %d %T %Y", localtime;
426                         unshift @lines, "From unknown $date";
427                 }
428                 map { s/^(>*From )/>$1/ } @lines[ 1 .. $#lines ];
429                 $_ = join( "\n", @lines ) . "\n";
430         }
431         print join("", @mails );
432         exit 0;
433 }
434 print "Content-Type: text/html\n\n";
435
436 my $title = htmlsanit($status{subject});
437
438 print "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n";
439 print "<HTML><HEAD>\n" . 
440     "<TITLE>$debbugs::gProject $debbugs::gBug report logs - $short - $title</TITLE>\n" .
441     "</HEAD>\n" .
442     '<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000FF" VLINK="#800080">' .
443     "\n";
444 print "<H1>" . "$debbugs::gProject $debbugs::gBug report logs - <A HREF=\"mailto:$ref\@$gEmailDomain\">$short</A>" .
445       "<BR>" . $title . "</H1>\n";
446
447 print "$descriptivehead\n";
448 printf "<p>View this report as an <a href=\"%s\">mbox folder</a>.</p>\n", mboxurl($ref);
449 print "<HR>";
450 print "$log";
451 print $tail_html;
452
453 print "</BODY></HTML>\n";
454
455 exit 0;