X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=lib%2FCGI%2FMaypole.pm;h=9c025ec462ce28490675ed90e276b9c756879230;hb=3f3f95d5fdfacddf4d89137f62cde7858dc23d08;hp=88abc3cebf7218ed1f8c419937834ca04c96d5bd;hpb=271fd90b8a1b9f843853601a75a1334407ff87c4;p=maypole.git diff --git a/lib/CGI/Maypole.pm b/lib/CGI/Maypole.pm index 88abc3c..9c025ec 100644 --- a/lib/CGI/Maypole.pm +++ b/lib/CGI/Maypole.pm @@ -4,8 +4,9 @@ use base 'Maypole'; use strict; use warnings; use CGI::Simple; +use Maypole::Headers; -our $VERSION = '2.05'; +our $VERSION = '2.06'; sub run { my $self = shift; @@ -16,10 +17,20 @@ sub get_request { shift->{cgi} = CGI::Simple->new(); } + sub parse_location { my $self = shift; - $self->{path} = $self->{cgi}->url( -absolute => 1, -path_info => 1 ); - my $loc = $self->{cgi}->url( -absolute => 1 ); + my $cgi = $self->{cgi}; + + # Reconstruct the request headers (as far as this is possible) + $self->headers_in(Maypole::Headers->new); + for my $http_header ($cgi->http) { + (my $field_name = $http_header) =~ s/^HTTPS?_//; + $self->headers_in->set($field_name => $cgi->http($http_header)); + } + + $self->{path} = $cgi->url( -absolute => 1, -path_info => 1 ); + my $loc = $cgi->url( -absolute => 1 ); no warnings 'uninitialized'; $self->{path} .= '/' if $self->{path} eq $loc; $self->{path} =~ s/^($loc)?\///; @@ -40,17 +51,19 @@ sub parse_args { sub send_output { my $r = shift; - my %processed = map { "-".$_,$r->{extra_headers}{$_} } - keys %{$r->{extra_headers}}; - print $r->{cgi}->header( - -type => $r->{content_type}, - -charset => $r->{document_encoding}, - -content_length => do { use bytes; length $r->{output} }, - %processed - ? %processed - : {} + + # Collect HTTP headers + my %headers = ( + -type => $r->{content_type}, + -charset => $r->{document_encoding}, + -content_length => do { use bytes; length $r->{output} }, ); - print $r->{output}; + foreach ($r->headers_out->field_names) { + next if /^Content-(Type|Length)/; + $headers{"-$_"} = $r->headers_out->get($_); + } + + print $r->{cgi}->header(%headers), $r->{output}; } sub get_template_root { @@ -90,8 +103,10 @@ http://your.site/cgi-bin/beer.cgi/frontpage =head1 DESCRIPTION -This is a handler for Maypole which will use the CGI instead of Apache's -C 1.x. This handler can also be used for Apache 2.0. +This is a CGI platform driver for Maypole. Your application can inherit from +CGI::Maypole directly, but it is recommended that you use +L. + =head1 METHODS @@ -105,7 +120,7 @@ Call this from your CGI script to start the Maypole application. =head1 Implementation -This class overrides a set of methods in the base Maypole class to provide it's +This class overrides a set of methods in the base Maypole class to provide it's functionality. See L for these: =over @@ -127,3 +142,5 @@ functionality. See L for these: Dave Ranney C Simon Cozens C + +=cut