2 # Packages::Dispatcher -- CGI interface for packages.debian.org
4 # Copyright (C) 2004-2007 Frank Lichtenheld
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 1 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 package Packages::Dispatcher;
33 use Benchmark ':hireswallclock';
34 use I18N::AcceptLanguage;
38 use Packages::Config qw( $DBDIR $ROOT $TEMPLATEDIR $CACHEDIR
39 @SUITES @SECTIONS @ARCHIVES @ARCHITECTURES @PRIORITIES
40 @LANGUAGES @DDTP_LANGUAGES $LOCALES );
41 use Packages::CGI qw( :DEFAULT error get_all_messages );
43 use Packages::Search qw( :all );
44 use Packages::Template ();
45 use Packages::Sections;
46 use Packages::I18N::Locale;
48 use Packages::DoSearch;
49 use Packages::DoSearchContents;
51 use Packages::DoIndex;
52 use Packages::DoNewPkg;
53 use Packages::DoDownload;
54 use Packages::DoFilelist;
59 &Packages::CGI::reset;
60 $Packages::Search::too_many_hits = 0;
63 $ENV{PATH} = "/bin:/usr/bin";
64 delete $ENV{'LANGUAGE'};
66 delete $ENV{'LC_ALL'};
67 delete $ENV{'LC_MESSAGES'};
69 my %SUITES_ALIAS = ( oldstable => 'sarge',
76 # Read in all the variables set by the form
78 if ($ARGV[0] && ($ARGV[0] eq 'php')) {
79 $input = new CGI(\*STDIN);
83 my $cgi_error = $input->cgi_error;
85 fatal_error( "Error parsing the request", $cgi_error );
88 my $pet0 = new Benchmark;
89 my $tet0 = new Benchmark;
90 my $debug = DEBUG && $input->param("debug");
91 $debug = 0 if !defined($debug) || $debug !~ /^\d+$/o;
92 $Packages::CGI::debug = $debug;
94 my $homedir = dirname($ENV{SCRIPT_FILENAME}).'/../';
95 &Packages::Config::init( $homedir );
96 &Packages::DB::init();
98 my $acc = I18N::AcceptLanguage->new();
99 my %all_langs = map { $_ => 1 } (@LANGUAGES, @DDTP_LANGUAGES);
100 my @all_langs = sort keys %all_langs;
101 my $http_lang = $acc->accepts( $input->http("Accept-Language"),
102 \@all_langs ) || 'en';
103 debug( "LANGUAGES=@all_langs header=".
104 ($input->http("Accept-Language")||'').
105 " http_lang=$http_lang", 2 ) if DEBUG;
106 bindtextdomain ( 'pdo', $LOCALES );
109 # backwards compatibility stuff
110 debug( "SCRIPT_URL=$ENV{SCRIPT_URL} SCRIPT_URI=$ENV{SCRIPT_URI}" ) if DEBUG;
112 if ($ENV{SCRIPT_URL} =~ m|^/cgi-bin/search_|) {
113 error( "You reached this site over an old URL. ".
114 "Depending on the exact parameters your search might work or not." );
115 # contents search changed a lot
116 if ($ENV{SCRIPT_URL} =~ m|^/cgi-bin/search_contents|) {
117 $input->param('keywords',$input->param('word')) if $input->param('word');
118 $input->param('searchon','contents');
119 for ($input->param('searchmode')) {
120 /^searchfiles/ && do {
121 $input->param('mode','filename');
125 $ENV{PATH_INFO} = '/'.join('/',($input->param('version')||'stable',
126 $input->param('keywords'),
127 $input->param('arch')||'i386',
129 $input->delete('searchon','version','keywords','arch');
135 if ($ENV{is_reportbug}) {
136 $input->param('exact', 1);
137 debug( "reportbug detected, set paramater exact to '1'" ) if DEBUG;
140 my $what_to_do = 'show';
142 if (my $path = $input->path_info() || $input->param('PATH_INFO')) {
143 my @components = grep { $_ } map { lc $_ } split /\/+/, $path;
145 debug( "PATH_INFO=$path components=@components", 3) if DEBUG;
147 push @components, 'index' if @components && $path =~ m,/$,;
149 my %LANGUAGES = map { $_ => 1 } @all_langs;
150 if (@components > 0 and $LANGUAGES{$components[0]}
151 and !$input->param('lang')) {
152 $input->param( 'lang', shift(@components) );
154 if (@components > 0 and $components[0] eq 'source') {
156 $input->param( 'source', 1 );
158 if (@components > 0 and $components[0] eq 'search') {
160 $what_to_do = 'search';
162 fatal_error( _g( "search doesn't take any more path elements" ) )
164 } elsif (@components == 0) {
165 fatal_error( _g( "We're supposed to display the homepage here, instead of getting dispatch.pl" ) );
166 } elsif (@components == 1) {
167 $what_to_do = 'search';
170 for ($components[-1]) {
171 /^(index|allpackages|newpkg|changelog|copyright|download|filelist)$/ && do {
178 my %SUITES = map { $_ => 1 } @SUITES;
179 my %SECTIONS = map { $_ => 1 } @SECTIONS;
180 my %ARCHIVES = map { $_ => 1 } @ARCHIVES;
181 my %ARCHITECTURES = map { $_ => 1 } (@ARCHITECTURES, 'all', 'any');
182 my %PRIORITIES = map { $_ => 1 } @PRIORITIES;
185 my ($cgi, $params_set, $key, $val) = @_;
186 debug("set_param_once key=$key val=$val",4) if DEBUG;
187 if ($params_set->{$key}++) {
188 fatal_error( sprintf( _g( "%s set more than once in path" ), $key ) );
190 $cgi->param( $key, $val );
194 my (@pkg, $need_pkg);
195 foreach (reverse @components) {
197 && ($what_to_do !~ /^(index|allpackages|newpkg)$/);
198 debug("need_pkg=$need_pkg component=$_",4) if DEBUG;
199 if (!$need_pkg && $SUITES{$_}) {
200 set_param_once( $input, \%params_set, 'suite', $_);
201 } elsif (!$need_pkg && (my $s = $SUITES_ALIAS{$_})) {
202 set_param_once( $input, \%params_set, 'suite', $s);
203 } elsif (!$need_pkg && $SECTIONS{$_}) {
204 set_param_once( $input, \%params_set, 'section', $_);
205 } elsif (!$need_pkg && $ARCHIVES{$_}) {
206 set_param_once( $input, \%params_set, 'archive', $_);
207 } elsif (!$need_pkg && $sections_descs{$_}) {
208 set_param_once( $input, \%params_set, 'subsection', $_);
209 } elsif (!$need_pkg && ($_ eq 'source')) {
210 set_param_once( $input, \%params_set, 'source', 1);
211 } elsif ($ARCHITECTURES{$_}) {
212 set_param_once( $input, \%params_set, 'arch', $_)
214 } elsif ($PRIORITIES{$_}) {
215 set_param_once( $input, \%params_set, 'priority', $_);
222 if (@components > 1) {
223 fatal_error( sprintf( _g( "two or more packages specified (%s)" ), "@components" ) );
225 } # else if (@components == 1)
228 my $c = uri_unescape($components[0]);
229 $input->param( 'keywords', $c );
230 $input->param( 'package', $c );
234 my ( $pkg, @suites, @sections, @subsections, @archives, @archs );
236 my %params_def = ( keywords => { default => undef,
238 match => '^([-+\@\w\/.:]+)$',
240 package => { default => undef,
241 match => '^([\w.+-]+)$',
243 suite => { default => 'default', match => '^([\w-]+)$',
244 array => ',', var => \@suites,
245 replace => { all => \@SUITES,
248 archive => { default => ($what_to_do eq 'search') ?
250 match => '^([\w-]+)$',
251 array => ',', var => \@archives,
252 replace => { all => \@ARCHIVES,
253 default => \@ARCHIVES} },
254 exact => { default => 0, match => '^(\w+)$', },
255 lang => { default => $http_lang, match => '^(\w+)$', },
256 source => { default => 0, match => '^(\d+)$', },
257 debug => { default => 0, match => '^(\d+)$', },
258 searchon => { default => 'names', match => '^(\w+)$', },
259 section => { default => 'all', match => '^([\w-]+)$',
260 alias => 'release', array => ',',
262 replace => { all => \@SECTIONS } },
263 subsection => { default => 'default', match => '^([\w-]+)$',
264 array => ',', var => \@subsections,
265 replace => { default => [] } },
266 priority => { default => 'default', match => '^([\w-]+)$',
268 replace => { default => [] } },
269 arch => { default => 'any', match => '^([\w-]+)$',
270 array => ',', var => \@archs, replace =>
271 { any => \@ARCHITECTURES } },
272 format => { default => 'html', match => '^([\w.]+)$', },
273 mode => { default => '', match => '^(\w+)$', },
274 sort_by => { default => 'file', match => '^(\w+)$', },
277 my %params = Packages::CGI::parse_params( $input, \%params_def, \%opts );
278 Packages::CGI::init_url( $input, \%params, \%opts );
280 my $locale = get_locale($opts{lang});
281 my $charset = get_charset($opts{lang});
282 setlocale ( LC_ALL, $locale )
283 or do { debug( "couldn't set locale $locale, using default" ) if DEBUG;
284 setlocale( LC_ALL, get_locale() )
286 debug( "couldn't set default locale either" ) if DEBUG;
287 setlocale( LC_ALL, "C" );
290 debug( "locale=$locale charset=$charset", 2 ) if DEBUG;
292 $opts{h_suites} = { map { $_ => 1 } @suites };
293 $opts{h_sections} = { map { $_ => 1 } @sections };
294 $opts{h_archives} = { map { $_ => 1 } @archives };
295 $opts{h_archs} = { map { $_ => 1 } @archs };
297 if ((($opts{searchon} eq 'names') && $opts{source}) ||
298 ($opts{searchon} eq 'sourcenames')) {
300 $opts{searchon} = 'names',
301 $opts{searchon_form} = 'sourcenames';
303 $opts{searchon_form} = $opts{searchon};
305 if ($opts{searchon} eq 'contents' or $opts{searchon} eq 'filenames') {
306 $what_to_do = 'search_contents';
309 my $pet1 = new Benchmark;
310 my $petd = timediff($pet1, $pet0);
311 debug( "Parameter evaluation took ".timestr($petd) ) if DEBUG;
313 my $template = new Packages::Template( $TEMPLATEDIR, $opts{format},
314 { lang => $opts{lang}, charset => $charset,
315 debug => ( DEBUG ? $opts{debug} : 0 ) },
316 ( $CACHEDIR ? { COMPILE_DIR => $CACHEDIR } : {} ) );
319 unless (($what_to_do eq 'allpackages' and $opts{format} =~ /^(html|txt\.gz)/)
320 || -e "$TEMPLATEDIR/$opts{format}/${what_to_do}.tmpl") {
321 fatal_error( "requested format not available for this document",
322 "406 requested format not available");
326 unless (@Packages::CGI::fatal_errors) {
328 &{"do_$what_to_do"}( \%params, \%opts, \%page_content );
331 $page_content{opts} = \%opts;
332 $page_content{params} = \%params;
334 $page_content{make_search_url} = sub { return &Packages::CGI::make_search_url(@_) };
335 $page_content{make_url} = sub { return &Packages::CGI::make_url(@_) };
336 $page_content{extract_host} = sub { my $uri = URI->new($_[0]);
337 my $host = $uri->host;
338 $host .= ':'.$uri->port if $uri->port != $uri->default_port;
341 # needed to work around the limitations of the the FILTER syntax
342 $page_content{html_encode} = sub { return HTML::Entities::encode_entities(@_,'<>&"') };
343 $page_content{uri_escape} = sub { return URI::Escape::uri_escape(@_) };
344 $page_content{quotemeta} = sub { return quotemeta($_[0]) };
345 $page_content{string2id} = sub { return &Packages::CGI::string2id(@_) };
347 unless (@Packages::CGI::fatal_errors) {
348 print $input->header(-charset => $charset, -type => get_mime($opts{format}) );
350 #print '<pre>'.Dumper(\%ENV, \%page_content, get_all_messages()).'</pre>';
351 print $template->page( $what_to_do, { %page_content, %{ get_all_messages() } } );
352 } elsif ($Packages::CGI::http_code && $Packages::CGI::http_code !~ /^2\d\d/) {
353 print $input->header( -charset => $charset, -status => $Packages::CGI::http_code );
355 # We currently have only an error page in html
356 # so no format support here
357 print $input->header( -charset => $charset );
358 print $template->error_page( get_all_messages() );