]> git.donarmstrong.com Git - debbugs.git/blobdiff - cgi/bugreport.cgi
use package_maintainer in bugreport
[debbugs.git] / cgi / bugreport.cgi
index 51744b2760a9d8b5e7038f6edbe4a78e5c89799f..41884cf568c9c4de831def5ba28aae50363eed1d 100755 (executable)
@@ -15,6 +15,29 @@ use MIME::Decoder;
 use IO::Scalar;
 use IO::File;
 
+# if we're running out of git, we want to use the git base directory as the
+# first INC directory. If you're not running out of git, don't do that.
+use File::Basename qw(dirname);
+use Cwd qw(abs_path);
+our $debbugs_dir;
+BEGIN {
+    $debbugs_dir =
+       abs_path(dirname(abs_path(__FILE__)) . '/../');
+    # clear the taint; we'll assume that the absolute path to __FILE__ is the
+    # right path if there's a .git directory there
+    ($debbugs_dir) = $debbugs_dir =~ /([[:print:]]+)/;
+    if (defined $debbugs_dir and
+       -d $debbugs_dir . '/.git/') {
+    } else {
+       undef $debbugs_dir;
+    }
+    # if the first directory in @INC is not an absolute directory, assume that
+    # someone has overridden us via -I.
+    if ($INC[0] !~ /^\//) {
+    }
+}
+use if defined $debbugs_dir, lib => $debbugs_dir;
+
 use Debbugs::Config qw(:globals :text :config);
 
 # for read_log_records
@@ -24,6 +47,7 @@ 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::DB;
 use Debbugs::Status qw(splitpackages split_status_fields get_bug_status isstrongseverity);
 
 use Scalar::Util qw(looks_like_number);
@@ -32,6 +56,11 @@ use Debbugs::Text qw(:templates);
 use URI::Escape qw(uri_escape_utf8);
 use List::AllUtils qw(max);
 
+my $s;
+if (defined $config{database}) {
+    $s = Debbugs::DB->connect($config{database}) or
+        die "Unable to connect to database";
+}
 
 use CGI::Simple;
 my $q = new CGI::Simple;
@@ -188,6 +217,7 @@ my %status;
 if ($need_status) {
     %status = %{split_status_fields(get_bug_status(bug=>$ref,
                                                   bugusertags => \%bugusertags,
+                                                   defined $s?(schema => $s):(),
                                                  ))}
 }
 
@@ -366,17 +396,29 @@ for my $p_a (qw(package affects)) {
     foreach my $pkg (make_list($status{$p_a})) {
         if ($pkg =~ /^src\:/) {
             my ($srcpkg) = $pkg =~ /^src:(.*)/;
+            my @maint = package_maintainer(source => $srcpkg,
+                                           @schema_arg,
+                                          );
             $packages_affects{$p_a}{$pkg} =
-               {maintainer => exists($maintainer{$srcpkg}) ? $maintainer{$srcpkg} : '(unknown)',
+               {maintainer => @maint?\@maint : ['(unknown)'],
                 source     => $srcpkg,
                 package    => $pkg,
                 is_source  => 1,
                };
         }
         else {
+            my @maint = package_maintainer(binary => $pkg,
+                                           @schema_arg,
+                                          );
+            my $source =
+                binary_to_source(binary => $pkg,
+                                 source_only => 1,
+                                 scalar_only => 1,
+                                 @schema_arg,
+                                );
             $packages_affects{$p_a}{$pkg} =
-               {maintainer => exists($maintainer{$pkg}) ? $maintainer{$pkg} : '(unknown)',
-                exists($pkgsrc{$pkg}) ? (source => $pkgsrc{$pkg}) : (),
+               {maintainer => @maint?\@maint : '(unknown)',
+                length($source)?(source => $source):(),
                 package    => $pkg,
                };
         }