X-Git-Url: https://git.decadent.org.uk/gitweb/?p=maypole.git;a=blobdiff_plain;f=lib%2FCGI%2FMaypole.pm;h=94fd27b3f79458245154e584a4dc4c596cf73176;hp=88abc3cebf7218ed1f8c419937834ca04c96d5bd;hb=f9a6b47b3b916585d710eac141003fb8261d9c3c;hpb=1fb6cf1887bddb2a3a003d6e148a0c016ea780b0 diff --git a/lib/CGI/Maypole.pm b/lib/CGI/Maypole.pm index 88abc3c..94fd27b 100644 --- a/lib/CGI/Maypole.pm +++ b/lib/CGI/Maypole.pm @@ -4,6 +4,7 @@ use base 'Maypole'; use strict; use warnings; use CGI::Simple; +use Maypole::Headers; our $VERSION = '2.05'; @@ -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->header_field_names) { + next if /^Content-/; + $headers{"-$_"} = $r->headers_out->get($_); + } + + print $r->{cgi}->header(%headers), $r->{output}; } sub get_template_root {