]> git.deb.at Git - deb/packages.git/blob - cgi-bin/search_packages.pl
Split section (main, etc.) from subsection (admin, etc.) on db generation
[deb/packages.git] / cgi-bin / search_packages.pl
1 #!/usr/bin/perl -wT
2 #
3 # search_packages.pl -- CGI interface to the Packages files on packages.debian.org
4 #
5 # Copyright (C) 1998 James Treacy
6 # Copyright (C) 2000, 2001 Josip Rodin
7 # Copyright (C) 2001 Adam Heath
8 # Copyright (C) 2004 Martin Schulze
9 # Copyright (C) 2004-2006 Frank Lichtenheld
10 #
11 # use is allowed under the terms of the GNU Public License (GPL)                              
12 # see http://www.fsf.org/copyleft/gpl.html for a copy of the license
13
14 use strict;
15 use CGI qw( -oldstyle_urls );
16 use CGI::Carp qw( fatalsToBrowser );
17 use POSIX;
18 use URI::Escape;
19 use HTML::Entities;
20 use DB_File;
21 use Benchmark;
22
23 use lib "../lib";
24
25 use Deb::Versions;
26 use Packages::Search qw( :all );
27 use Packages::HTML ();
28
29 my $thisscript = "search_packages.pl";
30 my $HOME = "http://www.debian.org";
31 my $ROOT = "";
32 my $SEARCHPAGE = "http://packages.debian.org/";
33 my @SUITES = qw( oldstable stable testing unstable experimental );
34 my @DISTS = @SUITES;
35 my @SECTIONS = qw( main contrib non-free );
36 my @ARCHIVES = qw( us security installer );
37 my @ARCHITECTURES = qw( alpha amd64 arm hppa hurd-i386 i386 ia64
38                         kfreebsd-i386 mips mipsel powerpc s390 sparc );
39 my %SUITES = map { $_ => 1 } @SUITES;
40 my %SECTIONS = map { $_ => 1 } @SECTIONS;
41 my %ARCHIVES = map { $_ => 1 } @ARCHIVES;
42 my %ARCHITECTURES = map { $_ => 1 } @ARCHITECTURES;
43
44 $ENV{PATH} = "/bin:/usr/bin";
45
46 # Read in all the variables set by the form
47 my $input = new CGI;
48
49 my $pet0 = new Benchmark;
50 # use this to disable debugging in production mode completly
51 my $debug_allowed = 1;
52 my $debug = $debug_allowed && $input->param("debug");
53 $Search::Param::debug = 1 if $debug > 1;
54
55 # If you want, just print out a list of all of the variables and exit.
56 print $input->header if $debug;
57 # print $input->dump;
58 # exit;
59
60 if (my $path = $input->param('path')) {
61     my @components = map { lc $_ } split /\//, $path;
62
63     foreach (@components) {
64         if ($SUITES{$_}) {
65             $input->param('suite', $_);
66         } elsif ($SECTIONS{$_}) {
67             $input->param('section', $_);
68         } elsif ($ARCHIVES{$_}) {
69             $input->param('archive', $_);
70         }elsif ($ARCHITECTURES{$_}) {
71             $input->param('arch', $_);
72         }
73     }
74 }
75
76 my %params_def = ( keywords => { default => undef, match => '^\s*([-+\@\w\/.:]+)\s*$' },
77                    suite => { default => 'stable', match => '^(\w+)$',
78                               alias => 'version', array => ',',
79                               replace => { all => \@SUITES } },
80                    case => { default => 'insensitive', match => '^(\w+)$' },
81                    official => { default => 0, match => '^(\w+)$' },
82                    use_cache => { default => 1, match => '^(\w+)$' },
83                    subword => { default => 0, match => '^(\w+)$' },
84                    exact => { default => undef, match => '^(\w+)$' },
85                    searchon => { default => 'all', match => '^(\w+)$' },
86                    section => { default => 'all', match => '^([\w-]+)$',
87                                 alias => 'release', array => ',',
88                                 replace => { all => \@SECTIONS } },
89                    arch => { default => 'any', match => '^(\w+)$',
90                              array => ',', replace =>
91                              { any => \@ARCHITECTURES } },
92                    archive => { default => 'all', match => '^(\w+)$',
93                                 array => ',', replace =>
94                                 { all => \@ARCHIVES } },
95                    format => { default => 'html', match => '^(\w+)$' },
96                    );
97 my %params = Packages::Search::parse_params( $input, \%params_def );
98
99 my $format = $params{values}{format}{final};
100 #XXX: Don't use alternative output formats yet
101 $format = 'html';
102
103 if ($format eq 'html') {
104     print $input->header;
105 } elsif ($format eq 'xml') {
106 #    print $input->header( -type=>'application/rdf+xml' );
107     print $input->header( -type=>'text/plain' );
108 }
109
110 if ($params{errors}{keywords}) {
111     print "Error: keyword not valid or missing" if $format eq 'html';
112     exit 0;
113 }
114 my $keyword = $params{values}{keywords}{final};
115 my @suites = @{$params{values}{suite}{final}};
116 my $official = $params{values}{official}{final};
117 my $use_cache = $params{values}{use_cache}{final};
118 my $case = $params{values}{case}{final};
119 my $case_bool = ( $case !~ /insensitive/ );
120 my $subword = $params{values}{subword}{final};
121 my $exact = $params{values}{exact}{final};
122 $exact = !$subword unless defined $exact;
123 my $searchon = $params{values}{searchon}{final};
124 my @sections = @{$params{values}{section}{final}};
125 my @archs = @{$params{values}{arch}{final}};
126 my $page = $params{values}{page}{final};
127 my $results_per_page = $params{values}{number}{final};
128
129 # for URL construction
130 my $suites_param = join ',', @{$params{values}{suite}{no_replace}};
131 my $sections_param = join ',', @{$params{values}{section}{no_replace}};
132 my $archs_param = join ',', @{$params{values}{arch}{no_replace}};
133
134 # for output
135 my $keyword_enc = encode_entities $keyword;
136 my $searchon_enc = encode_entities $searchon;
137 my $suites_enc = encode_entities join ', ', @{$params{values}{suite}{no_replace}};
138 my $sections_enc = encode_entities join ', ', @{$params{values}{section}{no_replace}};
139 my $archs_enc = encode_entities join ', ',  @{$params{values}{arch}{no_replace}};
140 my $pet1 = new Benchmark;
141 my $petd = timediff($pet1, $pet0);
142 print "DEBUG: Parameter evaluation took ".timestr($petd)."<br>" if $debug;
143
144 if ($format eq 'html') {
145 print Packages::HTML::header( title => 'Package Search Results' ,
146                               lang => 'en',
147                               title_tag => 'Debian Package Search Results',
148                               print_title_above => 1,
149                               print_search_field => 'packages',
150                               search_field_values => { 
151                                   keywords => $keyword_enc,
152                                   searchon => $searchon,
153                                   arch => $archs_enc,
154                                   suite => $suites_enc,
155                                   section => $sections_enc,
156                                   subword => $subword,
157                                   exact => $exact,
158                                   case => $case,
159                                   },
160                               );
161 }
162
163 # read the configuration
164 my $topdir;
165 if (!open (C, "../config.sh")) {
166     print "\nInternal Error: Cannot open configuration file.\n\n"
167 if $format eq 'html';
168     exit 0;
169 }
170 while (<C>) {
171     $topdir = $1 if (/^\s*topdir="?(.*)"?\s*$/);
172 }
173 close (C);
174
175 my $DBDIR = $topdir . "/files/db";
176 my $search_on_sources = 0;
177
178 my $st0 = new Benchmark;
179 my @results;
180 if ($searchon eq 'sourcenames') {
181     $search_on_sources = 1;
182 }
183
184 my %suites = map { $_ => 1 } @suites;
185 my %sections = map { $_ => 1 } @sections;
186 my %archs = map { $_ => 1 } @archs;
187
188 print "DEBUG: suites=@suites, sections=@sections, archs=@archs<br>" if $debug > 2;
189
190 if ($searchon eq 'names') {
191
192     $keyword = lc $keyword unless $case_bool;
193     
194     my $obj = tie my %packages, 'DB_File', "$DBDIR/packages_small.db", O_RDONLY, 0666, $DB_BTREE
195         or die "couldn't tie DB $DBDIR/packages_small.db: $!";
196     
197     if ($exact) {
198         my $result = $packages{$keyword};
199         foreach (split /\000/, $result) {
200             my @data = split ( /\s/, $_, 7 );
201             print "DEBUG: Considering entry ".join( ':', @data)."<br>" if $debug > 2;
202             if ($suites{$data[0]} && ($archs{$data[1]} || $data[1] eq 'all')
203                 && $sections{$data[2]}) {
204                 print "DEBUG: Using entry ".join( ':', @data)."<br>" if $debug > 2;
205                 push @results, [ $keyword, @data ];
206             }
207         }
208     } else {
209         while (my ($pkg, $result) = each %packages) {
210             #what's faster? I can't really see a difference
211             (index($pkg, $keyword) >= 0) or next;
212             #$pkg =~ /\Q$keyword\E/ or next;
213             foreach (split /\000/, $packages{$pkg}) {
214                 my @data = split ( /\s/, $_, 7 );
215                 print "DEBUG: Considering entry ".join( ':', @data)."<br>" if $debug > 2;
216                 if ($suites{$data[0]} && ($archs{$data[1]} || $data[1] eq 'all')
217                     && $sections{$data[2]}) {
218                     print "DEBUG: Using entry ".join( ':', @data)."<br>" if $debug > 2;
219                     push @results, [ $pkg , @data ];
220                 }
221             }
222         }
223     }
224 }
225
226 my $st1 = new Benchmark;
227 my $std = timediff($st1, $st0);
228 print "DEBUG: Search took ".timestr($std)."<br>" if $debug;
229
230 if ($format eq 'html') {
231     my $suite_wording = $suites_enc eq "all" ? "all suites"
232         : "suite(s) <em>$suites_enc</em>";
233     my $section_wording = $sections_enc eq 'all' ? "all sections"
234         : "section(s) <em>$sections_enc</em>";
235     my $arch_wording = $archs_enc eq 'any' ? "all architectures"
236         : "architecture(s) <em>$archs_enc</em>";
237     if (($searchon eq "names") || ($searchon eq 'sourcenames')) {
238         my $source_wording = $search_on_sources ? "source " : "";
239         my $exact_wording = $exact ? "named" : "that names contain";
240         print "<p>You have searched for ${source_wording}packages $exact_wording <em>$keyword_enc</em> in $suite_wording, $section_wording, and $arch_wording.</p>";
241     } else {
242         my $exact_wording = $exact ? "" : " (including subword matching)";
243         print "<p>You have searched for <em>$keyword_enc</em> in packages names and descriptions in $suite_wording, $section_wording, and $arch_wording$exact_wording.</p>";
244     }
245 }
246
247 if (!@results) {
248     if ($format eq 'html') {
249         my $keyword_esc = uri_escape( $keyword );
250         my $printed = 0;
251         if (($searchon eq "names") || ($searchon eq 'sourcenames')) {
252             if (($suites_enc eq 'all')
253                 && ($archs_enc eq 'any')
254                 && ($sections_enc eq 'all')) {
255                 print "<p><strong>Can't find that package.</strong></p>\n";
256             } else {
257                 print "<p><strong>Can't find that package, at least not in that suite ".
258                     ( $search_on_sources ? "" : " and on that architecture" ).
259                     ".</strong></p>\n";
260             }
261             
262             if ($exact) {
263                 $printed = 1;
264                 print "<p>You have searched only for exact matches of the package name. You can try to search for <a href=\"$thisscript?exact=0&amp;searchon=$searchon&amp;suite=$suites_param&amp;case=$case&amp;section=$sections_param&amp;keywords=$keyword_esc&amp;arch=$archs_param\">package names that contain your search string</a>.</p>";
265             }
266         } else {
267             if (($suites_enc eq 'all')
268                 && ($archs_enc eq 'any')
269                 && ($sections_enc eq 'all')) {
270                 print "<p><strong>Can't find that string.</strong></p>\n";
271             } else {
272                 print "<p><strong>Can't find that string, at least not in that suite ($suites_enc, section $sections_enc) and on that architecture ($archs_enc).</strong></p>\n";
273             }
274             
275             unless ($subword) {
276                 $printed = 1;
277                 print "<p>You have searched only for words exactly matching your keywords. You can try to search <a href=\"$thisscript?subword=1&amp;searchon=$searchon&amp;suite=$suites_param&amp;case=$case&amp;section=$sections_param&amp;keywords=$keyword_esc&amp;arch=$archs_param\">allowing subword matching</a>.</p>";
278             }
279         }
280         print "<p>".( $printed ? "Or you" : "You" )." can try a different search on the <a href=\"$SEARCHPAGE#search_packages\">Packages search page</a>.</p>";
281         
282         &printfooter;
283     }
284     exit;
285 }
286
287 my (%pkgs, %sect, %part, %desc, %binaries);
288
289 unless ($search_on_sources) {
290     foreach (@results) {
291         my ($pkg_t, $suite, $arch, $section, $subsection,
292             $priority, $version, $desc) = @$_;
293         
294         my ($package) = $pkg_t =~ m/^(.+)/; # untaint
295         $pkgs{$package}{$suite}{$version}{$arch} = 1;
296         $sect{$package}{$suite}{$version} = $subsection;
297         $part{$package}{$suite}{$version} = $section unless $section eq 'main';
298         
299         $desc{$package}{$suite}{$version} = $desc;
300
301     }
302
303     if ($format eq 'html') {
304         my ($start, $end) = multipageheader( scalar keys %pkgs );
305         my $count = 0;
306         
307         foreach my $pkg (sort keys %pkgs) {
308             $count++;
309             next if $count < $start or $count > $end;
310             printf "<h3>Package %s</h3>\n", $pkg;
311             print "<ul>\n";
312             foreach my $ver (@SUITES) {
313                 if (exists $pkgs{$pkg}{$ver}) {
314                     my @versions = version_sort keys %{$pkgs{$pkg}{$ver}};
315                     my $part_str = "";
316                     if ($part{$pkg}{$ver}{$versions[0]}) {
317                         $part_str = "[<span style=\"color:red\">$part{$pkg}{$ver}{$versions[0]}</span>]";
318                     }
319                     printf "<li><a href=\"$ROOT/%s/%s/%s\">%s</a> (%s): %s   %s\n",
320                     $ver, $sect{$pkg}{$ver}{$versions[0]}, $pkg, $ver, $sect{$pkg}{$ver}{$versions[0]}, $desc{$pkg}{$ver}{$versions[0]}, $part_str;
321                     
322                     foreach my $v (@versions) {
323                         printf "<br>%s: %s\n",
324                         $v, join (" ", (sort keys %{$pkgs{$pkg}{$ver}{$v}}) );
325                     }
326                     print "</li>\n";
327                 }
328             }
329             print "</ul>\n";
330         }
331     } elsif ($format eq 'xml') {
332         require RDF::Simple::Serialiser;
333         my $rdf = new RDF::Simple::Serialiser;
334         $rdf->addns( debpkg => 'http://packages.debian.org/xml/01-debian-packages-rdf' );
335         my @triples;
336         foreach my $pkg (sort keys %pkgs) {
337             foreach my $ver (@DISTS) {
338                 if (exists $pkgs{$pkg}{$ver}) {
339                     my @versions = version_sort keys %{$pkgs{$pkg}{$ver}};
340                     foreach my $version (@versions) {
341                         my $id = "$ROOT/$ver/$sect{$pkg}{$ver}{$version}/$pkg/$version";
342                         push @triples, [ $id, 'debpkg:package', $pkg ];
343                         push @triples, [ $id, 'debpkg:version', $version ];
344                         push @triples, [ $id, 'debpkg:section', $sect{$pkg}{$ver}{$version}, ];
345                         push @triples, [ $id, 'debpkg:suite', $ver ];
346                         push @triples, [ $id, 'debpkg:shortdesc', $desc{$pkg}{$ver}{$version} ];
347                         push @triples, [ $id, 'debpkg:part', $part{$pkg}{$ver}{$version} || 'main' ];
348                         foreach my $arch (sort keys %{$pkgs{$pkg}{$ver}{$version}}) {
349                             push @triples, [ $id, 'debpkg:architecture', $arch ];
350                         }
351                     }
352                 }
353             }
354         }
355         
356         print $rdf->serialise(@triples);
357     }
358 } else {
359     foreach (@results) {
360         my ($package, $suite, $section, $version, $binaries);
361         
362         $pkgs{$package}{$suite} = $version;
363         $sect{$package}{$suite}{source} = 'subsection';
364         $part{$package}{$suite}{source} = $section unless $section eq 'main';
365
366         $binaries{$package}{$suite} = [ sort split( /\s*,\s*/, $binaries ) ];
367
368     }
369
370     if ($format eq 'html') {
371         my ($start, $end) = multipageheader( scalar keys %pkgs );
372         my $count = 0;
373         
374         foreach my $pkg (sort keys %pkgs) {
375             $count++;
376             next if ($count < $start) or ($count > $end);
377             printf "<h3>Source package %s</h3>\n", $pkg;
378             print "<ul>\n";
379             foreach my $ver (@SUITES) {
380                 if (exists $pkgs{$pkg}{$ver}) {
381                     my $part_str = "";
382                     if ($part{$pkg}{$ver}{source}) {
383                         $part_str = "[<span style=\"color:red\">$part{$pkg}{$ver}{source}</span>]";
384                     }
385                     printf "<li><a href=\"$ROOT/%s/source/%s\">%s</a> (%s): %s   %s", $ver, $pkg, $ver, $sect{$pkg}{$ver}{source}, $pkgs{$pkg}{$ver}, $part_str;
386                     
387                     print "<br>Binary packages: ";
388                     my @bp_links;
389                     foreach my $bp (@{$binaries{$pkg}{$ver}}) {
390                         my $sect = find_section($bp, $ver, $part{$pkg}{$ver}{source}||'main') || '';
391                         $sect =~ s,^(non-free|contrib)/,,;
392                         $sect =~ s,^non-US.*$,non-US,,;
393                         my $bp_link;
394                         if ($sect) {
395                             $bp_link = sprintf "<a href=\"$ROOT/%s/%s/%s\">%s</a>", $ver, $sect, uri_escape( $bp ),  $bp;
396                         } else {
397                             $bp_link = $bp;
398                         }
399                         push @bp_links, $bp_link;
400                     }
401                     print join( ", ", @bp_links );
402                     print "</li>\n";
403                 }
404             }
405             print "</ul>\n";
406         }
407     } elsif ($format eq 'xml') {
408         require RDF::Simple::Serialiser;
409         my $rdf = new RDF::Simple::Serialiser;
410         $rdf->addns( debpkg => 'http://packages.debian.org/xml/01-debian-packages-rdf' );
411         my @triples;
412         foreach my $pkg (sort keys %pkgs) {
413             foreach my $ver (@SUITES) {
414                 if (exists $pkgs{$pkg}{$ver}) {
415                     my $id = "$ROOT/$ver/source/$pkg";
416
417                     push @triples, [ $id, 'debpkg:package', $pkg ];
418                     push @triples, [ $id, 'debpkg:type', 'source' ];
419                     push @triples, [ $id, 'debpkg:section', $sect{$pkg}{$ver}{source} ];
420                     push @triples, [ $id, 'debpkg:version', $pkgs{$pkg}{$ver} ];
421                     push @triples, [ $id, 'debpkg:part', $part{$pkg}{$ver}{source} || 'main' ];
422                     
423                     foreach my $bp (@{$binaries{$pkg}{$ver}}) {
424                         push @triples, [ $id, 'debpkg:binary', $bp ];
425                     }
426                 }
427             }
428         }
429         print $rdf->serialise(@triples);
430     }
431 }
432
433 if ($format eq 'html') {
434     &printindexline( scalar keys %pkgs );
435     &printfooter;
436 }
437
438 exit;
439
440 sub printindexline {
441     my $no_results = shift;
442
443     my $index_line;
444     if ($no_results > $results_per_page) {
445         
446         $index_line = prevlink($input,\%params)." | ".indexline( $input, \%params, $no_results)." | ".nextlink($input,\%params, $no_results);
447         
448         print "<p style=\"text-align:center\">$index_line</p>";
449     }
450 }
451
452 sub multipageheader {
453     my $no_results = shift;
454
455     my ($start, $end);
456     if ($results_per_page =~ /^all$/i) {
457         $start = 1;
458         $end = $no_results;
459         $results_per_page = $no_results;
460     } else {
461         $start = Packages::Search::start( \%params );
462         $end = Packages::Search::end( \%params );
463         if ($end > $no_results) { $end = $no_results; }
464     }
465
466     print "<p>Found <em>$no_results</em> matching packages,";
467     if ($end == $start) {
468         print " displaying package $end.</p>";
469     } else {
470         print " displaying packages $start to $end.</p>";
471     }
472
473     printindexline( $no_results );
474
475     if ($no_results > 100) {
476         print "<p>Results per page: ";
477         my @resperpagelinks;
478         for (50, 100, 200) {
479             if ($results_per_page == $_) {
480                 push @resperpagelinks, $_;
481             } else {
482                 push @resperpagelinks, resperpagelink($input,\%params,$_);
483             }
484         }
485         if ($params{values}{number}{final} =~ /^all$/i) {
486             push @resperpagelinks, "all";
487         } else {
488             push @resperpagelinks, resperpagelink($input, \%params,"all");
489         }
490         print join( " | ", @resperpagelinks )."</p>";
491     }
492     return ( $start, $end );
493 }
494
495 sub printfooter {
496 print <<END;
497 </div>
498
499 <hr class="hidecss">
500 <p style="text-align:right;font-size:small;font-stlye:italic"><a href="$SEARCHPAGE">Packages search page</a></p>
501
502 </div>
503 END
504
505 print $input->end_html;
506 }