]> git.donarmstrong.com Git - debbugs.git/blob - cgi/pkgindex.cgi
[project @ 2003-06-25 17:51: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|src|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> (%s)',
66                            pkgurl($pkg),
67                            htmlsanit($pkg),
68                            htmlmaintlinks(sub { $_[0] == 1 ? 'maintainer: '
69                                                            : 'maintainers: ' },
70                                           $maintainers{$pkg}));
71   }
72 } elsif ($indexon eq "src") {
73   $tag = "source package";
74   my $pkgsrc = getpkgsrc();
75   %count = countbugs(sub {my %d=@_;
76                           return map {
77                             $pkgsrc->{$_} || $_
78                           } splitpackages($d{"pkg"});
79                          });
80   $note = "";
81   foreach my $src (keys %count) {
82     $sortkey{$src} = lc $src;
83     $htmldescrip{$src} = sprintf('<a href="%s">%s</a> (%s)',
84                            srcurl($src),
85                            htmlsanit($src),
86                            htmlmaintlinks(sub { $_[0] == 1 ? 'maintainer: '
87                                                            : 'maintainers: ' },
88                                           $maintainers{$src}));
89   }
90 } elsif ($indexon eq "maint") {
91   $tag = "maintainer";
92   my %email2maint = ();
93   %count = countbugs(sub {my %d=@_;
94                           return map {
95                             my @me = getparsedaddrs($maintainers{$_});
96                             foreach my $addr (@me) {
97                               $email2maint{$addr->address} = $addr->format
98                                 unless exists $email2maint{$addr->address};
99                             }
100                             map { $_->address } @me;
101                           } splitpackages($d{"pkg"});
102                          });
103   $note = "<p>Note that maintainers may use different Maintainer fields for\n";
104   $note .= "different packages, so there may be other reports filed under\n";
105   $note .= "different addresses.</p>\n";
106   foreach my $maint (keys %count) {
107     $sortkey{$maint} = lc $email2maint{$maint} || "(unknown)";
108     $htmldescrip{$maint} = htmlmaintlinks('', $email2maint{$maint});
109   }
110 } elsif ($indexon eq "submitter") {
111   $tag = "submitter";
112   my %fullname = ();
113   %count = countbugs(sub {my %d=@_; my $f = $d{"submitter"} || "";
114                           my $em = emailfromrfc822($f);
115                           $fullname{$em} = $f if (!defined $fullname{$em});
116                           return $em;
117                         });
118   foreach my $sub (keys %count) {
119     $sortkey{$sub} = lc $fullname{$sub};
120     $htmldescrip{$sub} = sprintf('<a href="%s">%s</a>',
121                            submitterurl($sub),
122                            htmlsanit($fullname{$sub}));
123   }
124   $note = "<p>Note that people may use different email accounts for\n";
125   $note .= "different bugs, so there may be other reports filed under\n";
126   $note .= "different addresses.</p>\n";
127 }
128
129 my $result = "<ul>\n";
130 my @orderedentries;
131 if ($sortby eq "count") {
132   @orderedentries = sort { $count{$a} <=> $count{$b} } keys %count;
133 } else { # sortby alpha
134   @orderedentries = sort { $sortkey{$a} cmp $sortkey{$b} } keys %count;
135 }
136 foreach my $x (@orderedentries) {
137   $result .= "<li>" . $htmldescrip{$x} . " has $count{$x} " .
138             ($count{$x} == 1 ? "bug" : "bugs") . "</li>\n";
139 }
140 $result .= "</ul>\n";
141
142 print "Content-Type: text/html\n\n";
143
144 print "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n";
145 print "<HTML><HEAD>\n" . 
146     "<TITLE>$debbugs::gProject$Archived $debbugs::gBug reports by $tag</TITLE>\n" .
147     "</HEAD>\n" .
148     '<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000FF" VLINK="#800080">' .
149     "\n";
150 print "<H1>" . "$debbugs::gProject$Archived $debbugs::gBug report logs by $tag" .
151       "</H1>\n";
152
153 print $note;
154 print $result;
155
156 print "<hr>\n";
157 print "$tail_html";
158
159 print "</body></html>\n";