r12983@zaphod: kd | 2008-04-28 18:10:27 +1000
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / CGI.pm
CommitLineData
fc7ec1d9 1package Catalyst::Engine::CGI;
2
7fa2c9c1 3use Moose;
4extends 'Catalyst::Engine';
e2fd5b5f 5
7fa2c9c1 6has env => (is => 'rw');
84528885 7
fc7ec1d9 8=head1 NAME
9
10Catalyst::Engine::CGI - The CGI Engine
11
12=head1 SYNOPSIS
13
23f9d934 14A script using the Catalyst::Engine::CGI module might look like:
15
9a33da6a 16 #!/usr/bin/perl -w
17
18 use strict;
19 use lib '/path/to/MyApp/lib';
20 use MyApp;
21
22 MyApp->run;
23
23f9d934 24The application module (C<MyApp>) would use C<Catalyst>, which loads the
25appropriate engine module.
fc7ec1d9 26
27=head1 DESCRIPTION
28
fbcc39ad 29This is the Catalyst engine specialized for the CGI environment.
e2fd5b5f 30
23f9d934 31=head1 OVERLOADED METHODS
fc7ec1d9 32
fbcc39ad 33This class overloads some methods from C<Catalyst::Engine>.
fc7ec1d9 34
b5ecfcf0 35=head2 $self->finalize_headers($c)
fc7ec1d9 36
37=cut
38
fbcc39ad 39sub finalize_headers {
40 my ( $self, $c ) = @_;
06e1b616 41
fbcc39ad 42 $c->response->header( Status => $c->response->status );
06e1b616 43
ac5c933b 44 $self->{_header_buf}
e512dd24 45 = $c->response->headers->as_string("\015\012") . "\015\012";
fc7ec1d9 46}
47
b5ecfcf0 48=head2 $self->prepare_connection($c)
fc7ec1d9 49
50=cut
51
fbcc39ad 52sub prepare_connection {
53 my ( $self, $c ) = @_;
b5ecfcf0 54 local (*ENV) = $self->env || \%ENV;
4f5ebacd 55
7fa2c9c1 56 my $request = $c->request;
57 $request->address( $ENV{REMOTE_ADDR} );
4f5ebacd 58
59 PROXY_CHECK:
fbcc39ad 60 {
61 unless ( $c->config->{using_frontend_proxy} ) {
62 last PROXY_CHECK if $ENV{REMOTE_ADDR} ne '127.0.0.1';
63 last PROXY_CHECK if $c->config->{ignore_frontend_proxy};
5b387dfc 64 }
fbcc39ad 65 last PROXY_CHECK unless $ENV{HTTP_X_FORWARDED_FOR};
4f5ebacd 66
fbcc39ad 67 # If we are running as a backend server, the user will always appear
68 # as 127.0.0.1. Select the most recent upstream IP (last in the list)
69 my ($ip) = $ENV{HTTP_X_FORWARDED_FOR} =~ /([^,\s]+)$/;
7fa2c9c1 70 $request->address($ip);
fc7ec1d9 71 }
08cf3dd6 72
7fa2c9c1 73 $request->hostname( $ENV{REMOTE_HOST} );
74 $request->protocol( $ENV{SERVER_PROTOCOL} );
75 $request->user( $ENV{REMOTE_USER} );
76 $request->method( $ENV{REQUEST_METHOD} );
fbcc39ad 77
78 if ( $ENV{HTTPS} && uc( $ENV{HTTPS} ) eq 'ON' ) {
7fa2c9c1 79 $request->secure(1);
5b387dfc 80 }
bfde09a2 81
fbcc39ad 82 if ( $ENV{SERVER_PORT} == 443 ) {
7fa2c9c1 83 $request->secure(1);
fbcc39ad 84 }
fc7ec1d9 85}
86
b5ecfcf0 87=head2 $self->prepare_headers($c)
fc7ec1d9 88
89=cut
90
fbcc39ad 91sub prepare_headers {
92 my ( $self, $c ) = @_;
b5ecfcf0 93 local (*ENV) = $self->env || \%ENV;
7fa2c9c1 94 my $headers = $c->request->headers;
fbcc39ad 95 # Read headers from %ENV
c82ed742 96 foreach my $header ( keys %ENV ) {
fbcc39ad 97 next unless $header =~ /^(?:HTTP|CONTENT|COOKIE)/i;
98 ( my $field = $header ) =~ s/^HTTPS?_//;
7fa2c9c1 99 $headers->header( $field => $ENV{$header} );
fbcc39ad 100 }
101}
316bf0f0 102
b5ecfcf0 103=head2 $self->prepare_path($c)
316bf0f0 104
fbcc39ad 105=cut
316bf0f0 106
fbcc39ad 107sub prepare_path {
108 my ( $self, $c ) = @_;
b5ecfcf0 109 local (*ENV) = $self->env || \%ENV;
fbcc39ad 110
4f5ebacd 111 my $scheme = $c->request->secure ? 'https' : 'http';
294f78ca 112 my $host = $ENV{HTTP_HOST} || $ENV{SERVER_NAME};
113 my $port = $ENV{SERVER_PORT} || 80;
0bcb98c7 114 my $base_path;
115 if ( exists $ENV{REDIRECT_URL} ) {
116 $base_path = $ENV{REDIRECT_URL};
117 $base_path =~ s/$ENV{PATH_INFO}$//;
118 }
119 else {
120 $base_path = $ENV{SCRIPT_NAME} || '/';
121 }
4f5ebacd 122
fbcc39ad 123 # If we are running as a backend proxy, get the true hostname
4f5ebacd 124 PROXY_CHECK:
fbcc39ad 125 {
126 unless ( $c->config->{using_frontend_proxy} ) {
127 last PROXY_CHECK if $host !~ /localhost|127.0.0.1/;
128 last PROXY_CHECK if $c->config->{ignore_frontend_proxy};
316bf0f0 129 }
fbcc39ad 130 last PROXY_CHECK unless $ENV{HTTP_X_FORWARDED_HOST};
316bf0f0 131
fbcc39ad 132 $host = $ENV{HTTP_X_FORWARDED_HOST};
4f5ebacd 133
134 # backend could be on any port, so
fbcc39ad 135 # assume frontend is on the default port
136 $port = $c->request->secure ? 443 : 80;
316bf0f0 137 }
138
8d3c800b 139 # set the request URI
e701c5c6 140 my $path = $base_path . ( $ENV{PATH_INFO} || '' );
fbcc39ad 141 $path =~ s{^/+}{};
ac5c933b 142
933ba403 143 # Using URI directly is way too slow, so we construct the URLs manually
144 my $uri_class = "URI::$scheme";
ac5c933b 145
de19de2e 146 # HTTP_HOST will include the port even if it's 80/443
147 $host =~ s/:(?:80|443)$//;
ac5c933b 148
de19de2e 149 if ( $port !~ /^(?:80|443)$/ && $host !~ /:/ ) {
933ba403 150 $host .= ":$port";
151 }
ac5c933b 152
933ba403 153 # Escape the path
154 $path =~ s/([^$URI::uric])/$URI::Escape::escapes{$1}/go;
155 $path =~ s/\?/%3F/g; # STUPID STUPID SPECIAL CASE
ac5c933b 156
933ba403 157 my $query = $ENV{QUERY_STRING} ? '?' . $ENV{QUERY_STRING} : '';
158 my $uri = $scheme . '://' . $host . '/' . $path . $query;
159
160 $c->request->uri( bless \$uri, $uri_class );
161
8d3c800b 162 # set the base URI
163 # base must end in a slash
164 $base_path .= '/' unless $base_path =~ m{/$};
ac5c933b 165
8d3c800b 166 my $base_uri = $scheme . '://' . $host . $base_path;
167
168 $c->request->base( bless \$base_uri, $uri_class );
e7c0c583 169}
fc7ec1d9 170
b5ecfcf0 171=head2 $self->prepare_query_parameters($c)
fc7ec1d9 172
173=cut
174
4090e3bb 175around prepare_query_parameters => sub {
176 my $orig = shift;
fbcc39ad 177 my ( $self, $c ) = @_;
b5ecfcf0 178 local (*ENV) = $self->env || \%ENV;
179
f8109766 180 if ( $ENV{QUERY_STRING} ) {
4090e3bb 181 $self->$orig( $c, $ENV{QUERY_STRING} );
f8109766 182 }
4090e3bb 183};
e7c0c583 184
b5ecfcf0 185=head2 $self->prepare_request($c, (env => \%env))
84528885 186
187=cut
188
189sub prepare_request {
190 my ( $self, $c, %args ) = @_;
191
192 if ( $args{env} ) {
b5ecfcf0 193 $self->env( $args{env} );
84528885 194 }
195}
196
b5ecfcf0 197=head2 $self->prepare_write($c)
bfde09a2 198
fbcc39ad 199Enable autoflush on the output handle for CGI-based engines.
bfde09a2 200
fbcc39ad 201=cut
e7c0c583 202
4090e3bb 203around prepare_write => sub {
4f5ebacd 204 *STDOUT->autoflush(1);
4090e3bb 205 return shift->(@_);
206};
e7c0c583 207
e512dd24 208=head2 $self->write($c, $buffer)
209
210Writes the buffer to the client.
211
212=cut
213
4090e3bb 214around write => sub {
215 my $orig = shift;
e512dd24 216 my ( $self, $c, $buffer ) = @_;
217
218 # Prepend the headers if they have not yet been sent
219 if ( my $headers = delete $self->{_header_buf} ) {
220 $buffer = $headers . $buffer;
221 }
7fa2c9c1 222
4090e3bb 223 return $self->$orig( $c, $buffer );
224};
e512dd24 225
b5ecfcf0 226=head2 $self->read_chunk($c, $buffer, $length)
e7c0c583 227
fbcc39ad 228=cut
e7c0c583 229
4f5ebacd 230sub read_chunk { shift; shift; *STDIN->sysread(@_); }
e7c0c583 231
b5ecfcf0 232=head2 $self->run
bfde09a2 233
fbcc39ad 234=cut
bfde09a2 235
fbcc39ad 236sub run { shift; shift->handle_request(@_) }
fc7ec1d9 237
fc7ec1d9 238=head1 SEE ALSO
239
2f381252 240L<Catalyst>, L<Catalyst::Engine>
fbcc39ad 241
242=head1 AUTHORS
243
2f381252 244Catalyst Contributors, see Catalyst.pm
fc7ec1d9 245
246=head1 COPYRIGHT
247
248This program is free software, you can redistribute it and/or modify it under
249the same terms as Perl itself.
250
251=cut
4090e3bb 252no Moose;
fc7ec1d9 253
2541;