]> git.deb.at Git - deb/packages.git/blob - lib/Packages/DoIndex.pm
@TAKE_NEWEST: add url
[deb/packages.git] / lib / Packages / DoIndex.pm
1 package Packages::DoIndex;
2
3 use strict;
4 use warnings;
5
6 use CGI qw( :cgi );
7 use Exporter;
8
9 use Deb::Versions;
10 use Packages::Config qw( $TOPDIR );
11 use Packages::I18N::Locale;
12 use Packages::CGI;
13
14 our @ISA = qw( Exporter );
15 our @EXPORT = qw( do_index do_allpackages );
16
17 sub do_index {
18     return send_file( 'index', @_ );
19 }
20 sub do_allpackages {
21     return send_file( 'allpackages', @_ );
22 }
23
24 # no real need for more flexibility here, I think...
25 my %mime_types = (
26                   txt => 'text/plain',
27                   'txt.gz' => 'text/plain',
28                   html => 'text/html',
29                   );
30 my %encoding = (
31                 'txt.gz' => 'x-gzip',
32                 );
33 sub send_file {
34     my ($file, $params, $opts, $html_header) = @_;
35
36     if ($params->{errors}{suite}) {
37         fatal_error( _g( "suite not valid or not specified" ) );
38     }
39     if (@{$opts->{suite}} > 1) {
40         fatal_error( sprintf( _g( "more than one suite specified for show_static (%s)" ), "@{$opts->{suite}}" ) );
41     }
42     if (@{$opts->{subsection}} > 1) {
43         fatal_error( sprintf( _g( "more than one suite specified for show_static (%s)" ), "@{$opts->{suite}}" ) );
44     }
45
46     my $wwwdir = "$TOPDIR/www";
47     my $path = "";
48     $path .= "source/" if $opts->{source};
49     $path .= "$opts->{suite}[0]/";
50     $path .= "$opts->{archive}[0]/" if @{$opts->{archive}} == 1;
51     $path .= "$opts->{subsection}[0]/" if @{$opts->{subsection}};
52     $path .= "$opts->{priority}[0]/" if @{$opts->{priority}};
53     # we don't have translated index pages for subsections yet
54     $opts->{lang} = 'en' if @{$opts->{subsection}} or $file eq 'allpackages';
55     $path .= "$file.$opts->{lang}.$opts->{format}";
56
57     unless (@Packages::CGI::fatal_errors) {
58         my $buffer;
59         if (open( INDEX, '<', "$wwwdir/$path" )) {
60             my %headers;
61             $headers{'-charset'} = get_charset( $opts->{lang} );
62             $headers{'-type'} = $mime_types{$opts->{format}} || 'text/plain';
63             $headers{'-content-encoding'} = $encoding{$opts->{format}} if exists $encoding{$opts->{format}};
64             print header( %headers );
65
66             binmode INDEX;
67             while (read INDEX, $buffer, 4096) {
68                 print $buffer;
69             }
70             close INDEX;
71             exit;
72         } else {
73             fatal_error( sprintf( _g( "couldn't read index file %s: %s" ),
74                                   $path, $! ) );
75         }
76     }
77 }
78
79 1;
80