/usr/share/perl5/Catalyst/Engine/Apache.pm is in libcatalyst-engine-apache-perl 1.16-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 | package Catalyst::Engine::Apache;
BEGIN {
$Catalyst::Engine::Apache::AUTHORITY = 'cpan:BOBTFISH';
}
BEGIN {
$Catalyst::Engine::Apache::VERSION = '1.16';
}
# ABSTRACT: Catalyst Apache Engines
use strict;
use warnings;
use base 'Catalyst::Engine';
use File::Spec;
use URI;
use URI::http;
use URI::https;
use constant MP2 => (
exists $ENV{MOD_PERL_API_VERSION} and
$ENV{MOD_PERL_API_VERSION} >= 2
);
__PACKAGE__->mk_accessors(qw/apache return/);
sub prepare_request {
my ( $self, $c, $r ) = @_;
$self->apache( $r );
$self->return( undef );
}
sub prepare_connection {
my ( $self, $c ) = @_;
$c->request->address( $self->apache->connection->remote_ip );
PROXY_CHECK:
{
my $headers = $self->apache->headers_in;
unless ( $c->config->{using_frontend_proxy} ) {
last PROXY_CHECK if $c->request->address ne '127.0.0.1';
last PROXY_CHECK if $c->config->{ignore_frontend_proxy};
}
last PROXY_CHECK unless $headers->{'X-Forwarded-For'};
# If we are running as a backend server, the user will always appear
# as 127.0.0.1. Select the most recent upstream IP (last in the list)
my ($ip) = $headers->{'X-Forwarded-For'} =~ /([^,\s]+)$/;
$c->request->address( $ip );
}
$c->request->hostname( $self->apache->connection->remote_host );
$c->request->protocol( $self->apache->protocol );
$c->request->user( $self->apache->user );
$c->request->remote_user( $self->apache->user );
# when config options are set, check them here first
if ($INC{'Apache2/ModSSL.pm'}) {
$c->request->secure(1) if $self->apache->connection->is_https;
} else {
my $https = $self->apache->subprocess_env('HTTPS');
$c->request->secure(1) if defined $https and uc $https eq 'ON';
}
}
sub prepare_query_parameters {
my ( $self, $c ) = @_;
if ( my $query_string = $self->apache->args ) {
$self->SUPER::prepare_query_parameters( $c, $query_string );
}
}
sub prepare_headers {
my ( $self, $c ) = @_;
$c->request->method( $self->apache->method );
if ( my %headers = %{ $self->apache->headers_in } ) {
$c->request->header( %headers );
}
}
sub prepare_path {
my ( $self, $c ) = @_;
my $scheme = $c->request->secure ? 'https' : 'http';
my $host = $self->apache->hostname || 'localhost';
my $port = $self->apache->get_server_port;
# If we are running as a backend proxy, get the true hostname
PROXY_CHECK:
{
unless ( $c->config->{using_frontend_proxy} ) {
last PROXY_CHECK if $host !~ /localhost|127.0.0.1/;
last PROXY_CHECK if $c->config->{ignore_frontend_proxy};
}
last PROXY_CHECK unless $c->request->header( 'X-Forwarded-Host' );
$host = $c->request->header( 'X-Forwarded-Host' );
if ( $host =~ /^(.+):(\d+)$/ ) {
$host = $1;
$port = $2;
} else {
# backend could be on any port, so
# assume frontend is on the default port
$port = $c->request->secure ? 443 : 80;
}
}
my $base_path = '';
# Are we running in a non-root Location block?
my $location = $self->apache->location;
if ( $location && $location ne '/' ) {
$base_path = $location;
}
# Using URI directly is way too slow, so we construct the URLs manually
my $uri_class = "URI::$scheme";
if ( $port !~ /^(?:80|443)$/ && $host !~ /:/ ) {
$host .= ":$port";
}
# We want the path before Apache escapes it. Under mod_perl2 this is available
# with the unparsed_uri method. Under mod_perl 1 we must parse it out of the
# request line.
my ($path, $qs);
if ( MP2 ) {
($path, $qs) = split /\?/, $self->apache->unparsed_uri, 2;
}
else {
my (undef, $path_query) = split / /, $self->apache->the_request, 3;
($path, $qs) = split /\?/, $path_query, 2;
}
# Don't check for LocationMatch blocks if requested
# http://rt.cpan.org/Ticket/Display.html?id=26921
if ( $self->apache->dir_config('CatalystDisableLocationMatch') ) {
$base_path = '';
}
# Check if $base_path appears to be a regex (contains invalid characters),
# meaning we're in a LocationMatch block
elsif ( $base_path =~ m/[^$URI::uric]/o ) {
# Find out what part of the URI path matches the LocationMatch regex,
# that will become our base
my $match = qr/($base_path)/;
my ($base_match) = $path =~ $match;
$base_path = $base_match || '';
}
# Strip leading slash
$path =~ s{^/+}{};
# base must end in a slash
$base_path .= '/' unless $base_path =~ m{/$};
# Are we an Apache::Registry script? Why anyone would ever want to run
# this way is beyond me, but we'll support it!
# XXX: This needs a test
if ( defined $ENV{SCRIPT_NAME} && $self->apache->filename && -f $self->apache->filename && -x _ ) {
$base_path .= $ENV{SCRIPT_NAME};
}
# If the path is contained within the base, we need to make the path
# match base. This handles the case where the app is running at /deep/path
# but a request to /deep/path fails where /deep/path/ does not.
if ( $base_path ne '/' && $base_path ne $path && $base_path =~ m{/$path} ) {
$path = $base_path;
$path =~ s{^/+}{};
}
my $query = $qs ? '?' . $qs : '';
my $uri = $scheme . '://' . $host . '/' . $path . $query;
$c->request->uri( bless \$uri, $uri_class );
my $base_uri = $scheme . '://' . $host . $base_path;
$c->request->base( bless \$base_uri, $uri_class );
}
sub read_chunk {
my $self = shift;
my $c = shift;
$self->apache->read( @_ );
}
sub finalize_body {
my ( $self, $c ) = @_;
$self->SUPER::finalize_body($c);
# Data sent using $self->apache->print is buffered, so we need
# to flush it after we are done writing.
$self->apache->rflush;
}
sub finalize_headers {
my ( $self, $c ) = @_;
for my $name ( $c->response->headers->header_field_names ) {
next if $name =~ /^Content-(Length|Type)$/i;
my @values = $c->response->header($name);
# allow X headers to persist on error
if ( $name =~ /^X-/i ) {
$self->apache->err_headers_out->add( $name => $_ ) for @values;
}
else {
$self->apache->headers_out->add( $name => $_ ) for @values;
}
}
# persist cookies on error responses
if ( $c->response->header('Set-Cookie') && $c->response->status >= 400 ) {
for my $cookie ( $c->response->header('Set-Cookie') ) {
$self->apache->err_headers_out->add( 'Set-Cookie' => $cookie );
}
}
# The trick with Apache is to set the status code in $apache->status but
# always return the OK constant back to Apache from the handler.
$self->apache->status( $c->response->status );
$c->response->status( $self->return || $self->ok_constant );
my $type = $c->response->header('Content-Type') || 'text/html';
$self->apache->content_type( $type );
if ( my $length = $c->response->content_length ) {
$self->apache->set_content_length( $length );
}
return 0;
}
sub write {
my ( $self, $c, $buffer ) = @_;
if ( ! $self->apache->connection->aborted && defined $buffer) {
return $self->apache->print( $buffer );
}
return;
}
1;
__END__
=pod
=encoding utf-8
=head1 NAME
Catalyst::Engine::Apache - Catalyst Apache Engines
=head1 SYNOPSIS
For example Apache configurations, see the documentation for the engine that
corresponds to your Apache version.
C<Catalyst::Engine::Apache::MP13> - mod_perl 1.3x
C<Catalyst::Engine::Apache2::MP19> - mod_perl 1.99x
C<Catalyst::Engine::Apache2::MP20> - mod_perl 2.x
=head1 DESCRIPTION
These classes provide mod_perl support for Catalyst.
=head1 METHODS
=head2 $c->engine->apache
Returns an C<Apache>, C<Apache::RequestRec> or C<Apache2::RequestRec> object,
depending on your mod_perl version. This method is also available as
$c->apache.
=head2 $c->engine->return
If you need to return something other than OK from the mod_perl handler,
you may set any other Apache constant in this method. You should only use
this method if you know what you are doing or bad things may happen!
For example, to return DECLINED in mod_perl 2:
use Apache2::Const -compile => qw(DECLINED);
$c->engine->return( Apache2::Const::DECLINED );
=head2 NOTES ABOUT LOCATIONMATCH
The Apache engine tries to figure out the correct base path if your app is
running within a LocationMatch block. For example:
<LocationMatch ^/match/(this|that)*>
SetHandler modperl
PerlResponseHandler MyApp
</LocationMatch>
This will correctly set the base path to '/match/this/' or '/match/that/' depending
on which path was used for the request.
In some cases this may not be what you want, so you can disable this behavior
by adding this to your configuration:
PerlSetVar CatalystDisableLocationMatch 1
=head2 NOTES ON NON-STANDARD PORTS
If you wish to run your site on a non-standard port you will need to use the
C<Port> Apache config rather than C<Listen>. This will result in the correct
port being added to urls created using C<uri_for>.
Port 8080
=head1 OVERLOADED METHODS
This class overloads some methods from C<Catalyst::Engine>.
=over 4
=item prepare_request($r)
=item prepare_connection
=item prepare_query_parameters
=item prepare_headers
=item prepare_path
=item read_chunk
=item finalize_body
=item finalize_headers
=item write
=back
=head1 SEE ALSO
L<Catalyst> L<Catalyst::Engine>.
=head1 AUTHORS
=over 4
=item *
Sebastian Riedel <sri@cpan.org>
=item *
Christian Hansen <ch@ngmedia.com>
=item *
Andy Grundman <andy@hybridized.org>
=item *
Tomas Doran <bobtfish@bobtfish.net>
=back
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by The "AUTHORS".
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|