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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 package Packages::Dispatcher;
32 use Benchmark ':hireswallclock';
33 use I18N::AcceptLanguage;
37 use Packages::Config qw( $DBDIR $ROOT $TEMPLATEDIR $CACHEDIR
38 @SUITES @SECTIONS @ARCHIVES @ARCHITECTURES @PRIORITIES
39 @LANGUAGES @DDTP_LANGUAGES $LOCALES );
40 use Packages::CGI qw( :DEFAULT error get_all_messages );
42 use Packages::Search qw( :all );
43 use Packages::Template ();
44 use Packages::Sections;
45 use Packages::I18N::Locale;
47 use Packages::DoSearch;
48 use Packages::DoSearchContents;
50 use Packages::DoIndex;
51 use Packages::DoNewPkg;
52 use Packages::DoDownload;
53 use Packages::DoFilelist;
58 &Packages::CGI::reset;
59 $Packages::Search::too_many_hits = 0;
62 $ENV{PATH} = "/bin:/usr/bin";
63 delete $ENV{'LANGUAGE'};
65 delete $ENV{'LC_ALL'};
66 delete $ENV{'LC_MESSAGES'};
68 my %SUITES_ALIAS = ( oldstable => 'sarge',
75 # Read in all the variables set by the form
77 if ($ARGV[0] && ($ARGV[0] eq 'php')) {
78 $input = new CGI(\*STDIN);
82 my $cgi_error = $input->cgi_error;
84 fatal_error( "Error parsing the request", $cgi_error );
87 my $pet0 = new Benchmark;
88 my $tet0 = new Benchmark;
89 my $debug = DEBUG && $input->param("debug");
90 $debug = 0 if !defined($debug) || $debug !~ /^\d+$/o;
91 $Packages::CGI::debug = $debug;
93 my $homedir = dirname($ENV{SCRIPT_FILENAME}).'/../';
94 &Packages::Config::init( $homedir );
95 &Packages::DB::init();
97 my $acc = I18N::AcceptLanguage->new();
98 my %all_langs = map { $_ => 1 } (@LANGUAGES, @DDTP_LANGUAGES);
99 my @all_langs = sort keys %all_langs;
100 my $http_lang = $acc->accepts( $input->http("Accept-Language"),
101 \@all_langs ) || 'en';
102 debug( "LANGUAGES=@all_langs header=".
103 ($input->http("Accept-Language")||'').
104 " http_lang=$http_lang", 2 ) if DEBUG;
105 bindtextdomain ( 'pdo', $LOCALES );
108 # backwards compatibility stuff
109 debug( "SCRIPT_URL=$ENV{SCRIPT_URL} SCRIPT_URI=$ENV{SCRIPT_URI}" ) if DEBUG;
111 if ($ENV{SCRIPT_URL} =~ m|^/cgi-bin/search_|) {
112 error( "You reached this site over an old URL. ".
113 "Depending on the exact parameters your search might work or not." );
114 # contents search changed a lot
115 if ($ENV{SCRIPT_URL} =~ m|^/cgi-bin/search_contents|) {
116 $input->param('keywords',$input->param('word')) if $input->param('word');
117 $input->param('searchon','contents');
118 for ($input->param('searchmode')) {
119 /^searchfiles/ && do {
120 $input->param('mode','filename');
124 $ENV{PATH_INFO} = '/'.join('/',($input->param('version')||'stable',
125 $input->param('keywords'),
126 $input->param('arch')||'i386',
128 $input->delete('searchon','version','keywords','arch');
134 if ($ENV{is_reportbug}) {
135 $input->param('exact', 1);
136 debug( "reportbug detected, set paramater exact to '1'" ) if DEBUG;
139 my $what_to_do = 'show';
141 if (my $path = $ENV{'PATH_INFO'} || $input->param('PATH_INFO')) {
142 my @components = grep { $_ } map { lc $_ } split /\/+/, $path;
144 debug( "PATH_INFO=$path components=@components", 3) if DEBUG;
146 push @components, 'index' if @components && $path =~ m,/$,;
148 my %LANGUAGES = map { $_ => 1 } @all_langs;
149 if (@components > 0 and $LANGUAGES{$components[0]}
150 and !$input->param('lang')) {
151 $input->param( 'lang', shift(@components) );
153 if (@components > 0 and $components[0] eq 'source') {
155 $input->param( 'source', 1 );
157 if (@components > 0 and $components[0] eq 'search') {
159 $what_to_do = 'search';
161 fatal_error( _g( "search doesn't take any more path elements" ) )
163 } elsif (@components == 0) {
164 fatal_error( _g( "We're supposed to display the homepage here, instead of getting dispatch.pl" ) );
165 } elsif (@components == 1) {
166 $what_to_do = 'search';
169 for ($components[-1]) {
170 /^(index|allpackages|newpkg|changelog|copyright|download|filelist)$/ && do {
177 my %SUITES = map { $_ => 1 } @SUITES;
178 my %SECTIONS = map { $_ => 1 } @SECTIONS;
179 my %ARCHIVES = map { $_ => 1 } @ARCHIVES;
180 my %ARCHITECTURES = map { $_ => 1 } (@ARCHITECTURES, 'all', 'any');
181 my %PRIORITIES = map { $_ => 1 } @PRIORITIES;
184 my ($cgi, $params_set, $key, $val) = @_;
185 debug("set_param_once key=$key val=$val",4) if DEBUG;
186 if ($params_set->{$key}++) {
187 fatal_error( sprintf( _g( "%s set more than once in path" ), $key ) );
189 $cgi->param( $key, $val );
193 my (@pkg, $need_pkg);
194 foreach (reverse @components) {
196 && ($what_to_do !~ /^(index|allpackages|newpkg)$/);
197 debug("need_pkg=$need_pkg component=$_",4) if DEBUG;
198 if (!$need_pkg && $SUITES{$_}) {
199 set_param_once( $input, \%params_set, 'suite', $_);
200 } elsif (!$need_pkg && (my $s = $SUITES_ALIAS{$_})) {
201 set_param_once( $input, \%params_set, 'suite', $s);
202 } elsif (!$need_pkg && $SECTIONS{$_}) {
203 set_param_once( $input, \%params_set, 'section', $_);
204 } elsif (!$need_pkg && $ARCHIVES{$_}) {
205 set_param_once( $input, \%params_set, 'archive', $_);
206 } elsif (!$need_pkg && $sections_descs{$_}) {
207 set_param_once( $input, \%params_set, 'subsection', $_);
208 } elsif (!$need_pkg && ($_ eq 'non-us')) { # non-US hack
209 set_param_once( $input, \%params_set, 'subsection', 'non-US');
210 } elsif (!$need_pkg && ($_ eq 'source')) {
211 set_param_once( $input, \%params_set, 'source', 1);
212 } elsif ($ARCHITECTURES{$_}) {
213 set_param_once( $input, \%params_set, 'arch', $_)
215 } elsif ($PRIORITIES{$_}) {
216 set_param_once( $input, \%params_set, 'priority', $_);
223 if (@components > 1) {
224 fatal_error( sprintf( _g( "two or more packages specified (%s)" ), "@components" ) );
226 } # else if (@components == 1)
229 my $c = uri_unescape($components[0]);
230 $input->param( 'keywords', $c );
231 $input->param( 'package', $c );
235 my ( $pkg, @suites, @sections, @subsections, @archives, @archs );
237 my %params_def = ( keywords => { default => undef,
239 match => '^([-+\@\w\/.:]+)$',
241 package => { default => undef,
242 match => '^([\w.+-]+)$',
244 suite => { default => 'default', match => '^([\w-]+)$',
245 array => ',', var => \@suites,
246 replace => { all => \@SUITES,
249 archive => { default => ($what_to_do eq 'search') ?
251 match => '^([\w-]+)$',
252 array => ',', var => \@archives,
253 replace => { all => \@ARCHIVES,
254 default => \@ARCHIVES} },
255 exact => { default => 0, match => '^(\w+)$', },
256 lang => { default => $http_lang, match => '^(\w+)$', },
257 source => { default => 0, match => '^(\d+)$', },
258 debug => { default => 0, match => '^(\d+)$', },
259 searchon => { default => 'names', match => '^(\w+)$', },
260 section => { default => 'all', match => '^([\w-]+)$',
261 alias => 'release', array => ',',
263 replace => { all => \@SECTIONS } },
264 subsection => { default => 'default', match => '^([\w-]+)$',
265 array => ',', var => \@subsections,
266 replace => { default => [] } },
267 priority => { default => 'default', match => '^([\w-]+)$',
269 replace => { default => [] } },
270 arch => { default => 'any', match => '^([\w-]+)$',
271 array => ',', var => \@archs, replace =>
272 { any => \@ARCHITECTURES } },
273 format => { default => 'html', match => '^([\w.]+)$', },
274 mode => { default => undef, match => '^(\w+)$', },
275 sort_by => { default => 'file', match => '^(\w+)$', },
278 my %params = Packages::CGI::parse_params( $input, \%params_def, \%opts );
279 Packages::CGI::init_url( $input, \%params, \%opts );
281 my $locale = get_locale($opts{lang});
282 my $charset = get_charset($opts{lang});
283 setlocale ( LC_ALL, $locale )
284 or do { debug( "couldn't set locale $locale, using default" ) if DEBUG;
285 setlocale( LC_ALL, get_locale() )
287 debug( "couldn't set default locale either" ) if DEBUG;
288 setlocale( LC_ALL, "C" );
291 debug( "locale=$locale charset=$charset", 2 ) if DEBUG;
293 $opts{h_suites} = { map { $_ => 1 } @suites };
294 $opts{h_sections} = { map { $_ => 1 } @sections };
295 $opts{h_archives} = { map { $_ => 1 } @archives };
296 $opts{h_archs} = { map { $_ => 1 } @archs };
298 if ((($opts{searchon} eq 'names') && $opts{source}) ||
299 ($opts{searchon} eq 'sourcenames')) {
301 $opts{searchon} = 'names',
302 $opts{searchon_form} = 'sourcenames';
304 $opts{searchon_form} = $opts{searchon};
306 if ($opts{searchon} eq 'contents' or $opts{searchon} eq 'filenames') {
307 $what_to_do = 'search_contents';
310 my $pet1 = new Benchmark;
311 my $petd = timediff($pet1, $pet0);
312 debug( "Parameter evaluation took ".timestr($petd) ) if DEBUG;
314 my $template = new Packages::Template( $TEMPLATEDIR, $opts{format},
315 { lang => $opts{lang}, charset => $charset,
316 debug => ( DEBUG ? $opts{debug} : 0 ) },
317 ( $CACHEDIR ? { COMPILE_DIR => $CACHEDIR } : {} ) );
319 unless (-e "$TEMPLATEDIR/$opts{format}/${what_to_do}.tmpl") {
320 fatal_error( "requested format not available for this document",
321 "406 requested format not available");
325 unless (@Packages::CGI::fatal_errors) {
327 &{"do_$what_to_do"}( \%params, \%opts, \%page_content );
330 $page_content{opts} = \%opts;
331 $page_content{params} = \%params;
333 $page_content{make_search_url} = sub { return &Packages::CGI::make_search_url(@_) };
334 $page_content{make_url} = sub { return &Packages::CGI::make_url(@_) };
335 # needed to work around the limitations of the the FILTER syntax
336 $page_content{html_encode} = sub { return HTML::Entities::encode_entities(@_,'<>&"') };
337 $page_content{uri_escape} = sub { return URI::Escape::uri_escape(@_) };
338 $page_content{quotemeta} = sub { return quotemeta($_[0]) };
339 $page_content{string2id} = sub { return &Packages::CGI::string2id(@_) };
341 unless (@Packages::CGI::fatal_errors) {
342 print $input->header(-charset => $charset, -type => get_mime($opts{format}) );
344 #print '<pre>'.Dumper(\%ENV, \%page_content, get_all_messages()).'</pre>';
345 print $template->page( $what_to_do, { %page_content, %{ get_all_messages() } } );
346 } elsif ($Packages::CGI::http_code && $Packages::CGI::http_code !~ /^2\d\d/) {
347 print $input->header( -charset => $charset, -status => $Packages::CGI::http_code );
349 # We currently have only an error page in html
350 # so no format support here
351 print $input->header( -charset => $charset );
352 print $template->error_page( get_all_messages() );