]> git.donarmstrong.com Git - debbugs.git/blobdiff - cgi/bugreport.cgi
Use List::AllUtils instead of List::Utils and List::MoreUtils
[debbugs.git] / cgi / bugreport.cgi
index b68eac64b7f9ba7c92d38e0d151ce1431362d18f..dcf3e36fd2ea82326b947f39b3ec6ba709e1bc74 100755 (executable)
@@ -15,23 +15,22 @@ use MIME::Decoder;
 use IO::Scalar;
 use IO::File;
 
-use Debbugs::Config qw(:globals :text);
+use Debbugs::Config qw(:globals :text :config);
 
 # for read_log_records
 use Debbugs::Log qw(:read);
-use Debbugs::CGI qw(:url :html :util);
+use Debbugs::Log::Spam;
+use Debbugs::CGI qw(:url :html :util :cache :usertags);
 use Debbugs::CGI::Bugreport qw(:all);
 use Debbugs::Common qw(buglog getmaintainers make_list bug_status);
 use Debbugs::Packages qw(getpkgsrc);
 use Debbugs::Status qw(splitpackages split_status_fields get_bug_status isstrongseverity);
 
-use Debbugs::User;
-
 use Scalar::Util qw(looks_like_number);
 
 use Debbugs::Text qw(:templates);
 
-use List::Util qw(max);
+use List::AllUtils qw(max);
 
 
 use CGI::Simple;
@@ -60,8 +59,8 @@ my %param = cgi_parameters(query => $q,
                          );
 # This is craptacular.
 
-my $ref = $param{bug} or quitcgi("No bug number");
-$ref =~ /(\d+)/ or quitcgi("Invalid bug number");
+my $ref = $param{bug} or quitcgi("No bug number", '400 Bad Request');
+$ref =~ /(\d+)/ or quitcgi("Invalid bug number", '400 Bad Request');
 $ref = $1;
 my $short = "#$ref";
 my ($msg) = $param{msg} =~ /^(\d+)$/ if exists $param{msg};
@@ -109,18 +108,61 @@ sub no_such_bug {
     exit 0;
 }
 
+## calculate etag for this bugreport.cgi call
+my $etag;
+## identify the files that we need to look at; if someone just wants the mbox,
+## they don't need to see anything but the buglog; otherwise, track what is
+## necessary for the usertags and things to calculate status.
+
+my @dependent_files = ($buglog);
+my $need_status = 0;
+if (not (($mbox and not $mbox_status_message) or
+        (defined $att and defined $msg))) {
+    $need_status = 1;
+    push @dependent_files,
+       $bug_status,
+       defined $config{version_index} ? $config{version_index}:(),
+       defined $config{binary_source_map} ? $config{binary_source_map}:();
 }
 
-# the log should almost always be newer, but just in case
-my $log_mtime = +(stat $buglog)[9] || time;
-my $status_mtime = +(stat $bug_status)[9] || time;
-my $mtime = strftime '%a, %d %b %Y %T GMT', gmtime(max($status_mtime,$log_mtime));
+## Identify the users required
+for my $user (map {split /[\s*,\s*]+/} make_list($param{users}||[])) {
+    next unless length($user);
+    push @dependent_files,Debbugs::User::usertag_file_from_email($user);
+}
+if (defined $param{usertag}) {
+    for my $usertag (make_list($param{usertag})) {
+       my ($user, $tag) = split /:/, $usertag, 2;
+       push @dependent_files,Debbugs::User::usertag_file_from_email($user);
+    }
+}
+$etag =
+    etag_does_not_match(cgi => $q,
+                       additional_data => [grep {defined $_ ? $_ :()}
+                                           values %param
+                                          ],
+                       files => [@dependent_files,
+                                ],
+                      );
+if (not $etag) {
+    print $q->header(-status => 304,
+                    -cache_control => 'public, max-age=600',
+                    -etag => $etag,
+                    -charset => 'utf-8',
+                    -content_type => 'text/html',
+                   );
+    print "304: Not modified\n";
+    exit 0;
+}
 
+## if they're just asking for the head, stop here.
 if ($q->request_method() eq 'HEAD' and not defined($att) and not $mbox) {
-     print $q->header(-type => "text/html",
-                     -charset => 'utf-8',
-                     (length $mtime)?(-last_modified => $mtime):(),
-                    );
+    print $q->header(-status => 200,
+                    -cache_control => 'public, max-age=600',
+                    -etag => $etag,
+                    -charset => 'utf-8',
+                    -content_type => 'text/html',
+                   );
      exit 0;
 }
 
@@ -142,32 +184,22 @@ if (defined $param{usertag}) {
      }
 }
 
-
-my $buglogfh;
-if ($buglog =~ m/\.gz$/) {
-    my $oldpath = $ENV{'PATH'};
-    $ENV{'PATH'} = '/bin:/usr/bin';
-    $buglogfh = IO::File->new("zcat $buglog |") or quitcgi("open log for $ref: $!");
-    $ENV{'PATH'} = $oldpath;
-} else {
-    $buglogfh = IO::File->new($buglog,'r') or quitcgi("open log for $ref: $!");
+my %status;
+if ($need_status) {
+    %status = %{split_status_fields(get_bug_status(bug=>$ref,
+                                                  bugusertags => \%bugusertags,
+                                                 ))}
 }
 
-
-my %status =
-    %{split_status_fields(get_bug_status(bug=>$ref,
-                                        bugusertags => \%bugusertags,
-                                       ))};
-
 my @records;
+my $spam;
 eval{
-     @records = read_log_records(logfh => $buglogfh,inner_file => 1);
+    @records = read_log_records(bug_num => $ref,inner_file => 1);
+    $spam = Debbugs::Log::Spam->new(bug_num => $ref);
 };
 if ($@) {
      quitcgi("Bad bug log for $gBug $ref. Unable to read records: $@");
 }
-undef $buglogfh;
-
 
 my $log='';
 my $msg_num = 0;
@@ -181,16 +213,18 @@ if ( $mbox ) {
      binmode(STDOUT,":raw");
      my $date = strftime "%a %b %d %T %Y", localtime;
      if (@records > 1) {
-        print $q->header(-type => "text/plain",
+        print $q->header(-type => "application/mbox",
+                         -cache_control => 'public, max-age=600',
+                         -etag => $etag,
                          content_disposition => qq(attachment; filename="bug_${ref}.mbox"),
-                         (length $mtime)?(-last_modified => $mtime):(),
                         );
      }
      else {
          $msg_num++;
          print $q->header(-type => "message/rfc822",
+                          -cache_control => 'public, max-age=86400',
+                          -etag => $etag,
                           content_disposition => qq(attachment; filename="bug_${ref}_message_${msg_num}.mbox"),
-                          (length $mtime)?(-last_modified => $mtime):(),
                          );
      }
      if ($mbox_status_message and @records > 1) {
@@ -236,6 +270,8 @@ END
          $record_wanted_anyway = 1 if record_regex($record,qr/^Received: \(at control\)/);
          next if not $boring and not $record->{type} eq $wanted_type and not $record_wanted_anyway and @records > 1;
          $seen_message_ids{$msg_id} = 1 if defined $msg_id;
+          # skip spam messages if we're outputting more than one message
+          next if @records > 1 and $spam->is_spam($msg_id);
       my @lines;
       if ($record->{inner_file}) {
           push @lines, $record->{fh}->getline;
@@ -264,7 +300,11 @@ END
 else {
      if (defined $att and defined $msg and @records) {
         binmode(STDOUT,":raw");
-         $msg_num++;
+        $msg_num++;
+        ## allow this to be cached for a week
+        print "Status: 200 OK\n";
+        print "Cache-Control: public, max-age=604800\n";
+        print "Etag: $etag\n";
          print handle_email_message($records[0],
                                     ref => $ref,
                                     msg_num => $msg_num,
@@ -286,6 +326,10 @@ else {
                                    \%seen_msg_ids,
                                    trim_headers => $trim_headers,
                                    avatars => $avatars,
+                                  terse => $terse,
+                                   # if we're only looking at one record, allow
+                                   # spam to be output
+                                   spam  => (@records > 1)?$spam:undef,
                                   );
      }
 }
@@ -394,7 +438,8 @@ my $descriptivehead = $indexentry;
 
 print $q->header(-type => "text/html",
                 -charset => 'utf-8',
-                (length $mtime)?(-last_modified => $mtime):(),
+                -cache_control => 'public, max-age=300',
+                -etag => $etag,
                );
 
 print fill_in_template(template => 'cgi/bugreport',
@@ -418,3 +463,10 @@ print fill_in_template(template => 'cgi/bugreport',
                                     '&maybelink'     => \&Debbugs::CGI::maybelink,
                                    },
                      );
+
+__END__
+
+# Local Variables:
+# indent-tabs-mode: nil
+# cperl-indent-level: 4
+# End: