1 package Packages::DoIndex;
10 use Packages::Config qw( $TOPDIR );
11 use Packages::I18N::Locale;
14 our @ISA = qw( Exporter );
15 our @EXPORT = qw( do_index do_allpackages );
18 return send_file( 'index', @_ );
21 return send_file( 'allpackages', @_ );
28 my ($file, $params, $opts) = @_;
30 if ($params->{errors}{suite}) {
31 fatal_error( _g( "suite not valid or not specified" ) );
33 if (@{$opts->{suite}} > 1) {
34 fatal_error( sprintf( _g( "more than one suite specified for show_static (%s)" ), "@{$opts->{suite}}" ) );
36 if (@{$opts->{subsection}} > 1) {
37 fatal_error( sprintf( _g( "more than one suite specified for show_static (%s)" ), "@{$opts->{suite}}" ) );
40 my $wwwdir = "$TOPDIR/www";
42 $path .= "source/" if $opts->{source};
43 $path .= "$opts->{suite}[0]/";
44 $path .= "$opts->{archive}[0]/" if @{$opts->{archive}} == 1;
45 $path .= "$opts->{subsection}[0]/" if @{$opts->{subsection}};
46 $path .= "$opts->{priority}[0]/" if @{$opts->{priority}};
47 # we don't have translated index pages for subsections yet
48 $opts->{lang} = 'en' if @{$opts->{subsection}} or $file eq 'allpackages';
49 $path .= "$file.$opts->{lang}.$opts->{format}";
51 unless (@Packages::CGI::fatal_errors) {
53 if (open( INDEX, '<', "$wwwdir/$path" )) {
55 $headers{'-charset'} = get_charset( $opts->{lang} );
56 $headers{'-type'} = get_mime( $opts->{format}, 'text/plain' );
57 $headers{'-content-encoding'} = $encoding{$opts->{format}} if exists $encoding{$opts->{format}};
58 print header( %headers );
61 while (read INDEX, $buffer, 4096) {
67 fatal_error( sprintf( _g( "couldn't read index file %s: %s" ),