]> git.donarmstrong.com Git - debbugs.git/blob - cgi/pkgindex.cgi
[project @ 2003-05-17 12:56:51 by cjwatson]
[debbugs.git] / cgi / pkgindex.cgi
1 #!/usr/bin/perl -wT
2
3 package debbugs;
4
5 use strict;
6 use POSIX qw(strftime tzset nice);
7
8 #require '/usr/lib/debbugs/errorlib';
9 require './common.pl';
10
11 require '/etc/debbugs/config';
12 require '/etc/debbugs/text';
13
14 nice(5);
15
16 my %param = readparse();
17
18 my $indexon = $param{'indexon'} || 'pkg';
19 if ($indexon !~ m/^(pkg|maint|submitter)$/) {
20     quitcgi("You have to choose something to index on");
21 }
22
23 my $repeatmerged = ($param{'repeatmerged'} || "yes") eq "yes";
24 my $archive = ($param{'archive'} || "no") eq "yes";
25 my $sortby = $param{'sortby'} || 'alpha';
26 if ($sortby !~ m/^(alpha|count)$/) {
27     quitcgi("Don't know how to sort like that");
28 }
29
30 #my $include = $param{'include'} || "";
31 #my $exclude = $param{'exclude'} || "";
32
33 my $Archived = $archive ? " Archived" : "";
34
35 my %maintainers = %{&getmaintainers()};
36 my %strings = ();
37
38 $ENV{"TZ"} = 'UTC';
39 tzset();
40
41 my $dtime = strftime "%a, %e %b %Y %T UTC", localtime;
42 my $tail_html = $debbugs::gHTMLTail;
43 $tail_html = $debbugs::gHTMLTail;
44 $tail_html =~ s/SUBSTITUTE_DTIME/$dtime/;
45
46 set_option("repeatmerged", $repeatmerged);
47 set_option("archive", $archive);
48 #set_option("include", { map {($_,1)} (split /[\s,]+/, $include) })
49 #       if ($include);
50 #set_option("exclude", { map {($_,1)} (split /[\s,]+/, $exclude) })
51 #       if ($exclude);
52
53 my %count;
54 my $tag;
55 my $note;
56 my %htmldescrip = ();
57 my %sortkey = ();
58 if ($indexon eq "pkg") {
59   $tag = "package";
60   %count = countbugs(sub {my %d=@_; return splitpackages($d{"pkg"})});
61   $note = "<p>Note that with multi-binary packages there may be other\n";
62   $note .= "reports filed under the different binary package names.</p>\n";
63   foreach my $pkg (keys %count) {
64     $sortkey{$pkg} = lc $pkg;
65     $htmldescrip{$pkg} = sprintf('<a href="%s">%s</a> ' 
66                            . '(maintainer: <a href="%s">%s</a>)',
67                            pkgurl($pkg),
68                            htmlsanit($pkg),
69                            mainturl($maintainers{$pkg}),
70                            htmlsanit($maintainers{$pkg} || "(unknown)"));
71   }
72 } elsif ($indexon eq "maint") {
73   $tag = "maintainer";
74   %count = countbugs(sub {my %d=@_; 
75                           return map {
76                             emailfromrfc822($maintainers{$_}) || ()
77                           } splitpackages($d{"pkg"});
78                          });
79   $note = "<p>Note that maintainers may use different Maintainer fields for\n";
80   $note .= "different packages, so there may be other reports filed under\n";
81   $note .= "different addresses.</p>\n";
82   my %email2maint = ();
83   for my $x (values %maintainers) {
84     my $y = emailfromrfc822($x);
85     $email2maint{$y} = $x unless (defined $email2maint{$y});
86   }
87   foreach my $maint (keys %count) {
88     $sortkey{$maint} = lc $email2maint{$maint} || "(unknown)";
89     $htmldescrip{$maint} = sprintf('<a href="%s">%s</a>',
90                            mainturl($maint),
91                            htmlsanit($email2maint{$maint}) || "(unknown)")
92   }
93 } elsif ($indexon eq "submitter") {
94   $tag = "submitter";
95   my %fullname = ();
96   %count = countbugs(sub {my %d=@_; my $f = $d{"submitter"} || "";
97                           my $em = emailfromrfc822($f);
98                           $fullname{$em} = $f if (!defined $fullname{$em});
99                           return $em;
100                         });
101   foreach my $sub (keys %count) {
102     $sortkey{$sub} = lc $fullname{$sub};
103     $htmldescrip{$sub} = sprintf('<a href="%s">%s</a>',
104                            submitterurl($sub),
105                            htmlsanit($fullname{$sub}));
106   }
107   $note = "<p>Note that people may use different email accounts for\n";
108   $note .= "different bugs, so there may be other reports filed under\n";
109   $note .= "different addresses.</p>\n";
110 }
111
112 my $result = "<ul>\n";
113 my @orderedentries;
114 if ($sortby eq "count") {
115   @orderedentries = sort { $count{$a} <=> $count{$b} } keys %count;
116 } else { # sortby alpha
117   @orderedentries = sort { $sortkey{$a} cmp $sortkey{$b} } keys %count;
118 }
119 foreach my $x (@orderedentries) {
120   $result .= "<li>" . $htmldescrip{$x} . " has $count{$x} " .
121             ($count{$x} == 1 ? "bug" : "bugs") . "</li>\n";
122 }
123 $result .= "</ul>\n";
124
125 print "Content-Type: text/html\n\n";
126
127 print "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n";
128 print "<HTML><HEAD>\n" . 
129     "<TITLE>$debbugs::gProject$Archived $debbugs::gBug reports by $tag</TITLE>\n" .
130     "</HEAD>\n" .
131     '<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000FF" VLINK="#800080">' .
132     "\n";
133 print "<H1>" . "$debbugs::gProject$Archived $debbugs::gBug report logs by $tag" .
134       "</H1>\n";
135
136 print $note;
137 print $result;
138
139 print "<hr>\n";
140 print "$tail_html";
141
142 print "</body></html>\n";