We have always prepared the write, this can just go away
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine.pm
CommitLineData
fc7ec1d9 1package Catalyst::Engine;
2
7fa2c9c1 3use Moose;
4with 'MooseX::Emulate::Class::Accessor::Fast';
5
fa32ac82 6use CGI::Simple::Cookie;
f63c03e4 7use Data::Dump qw/dump/;
d04b2ffd 8use Errno 'EWOULDBLOCK';
fc7ec1d9 9use HTML::Entities;
fbcc39ad 10use HTTP::Body;
fc7ec1d9 11use HTTP::Headers;
e0616220 12use URI::QueryParam;
a1791811 13use Plack::Loader;
b1ededd4 14use Catalyst::EngineLoader;
361ba9b2 15use Encode ();
16use utf8;
fbcc39ad 17
d495753a 18use namespace::clean -except => 'meta';
19
faa02805 20# Amount of data to read from input on each pass
21our $CHUNKSIZE = 64 * 1024;
a50e5b46 22
faa02805 23# XXX - this is only here for compat, do not use!
24has env => ( is => 'rw', writer => '_set_env' );
0c6352ff 25my $WARN_ABOUT_ENV = 0;
26around env => sub {
27 my ($orig, $self, @args) = @_;
28 if(@args) {
29 warn "env as a writer is deprecated, you probably need to upgrade Catalyst::Engine::PSGI"
30 unless $WARN_ABOUT_ENV++;
31 return $self->_set_env(@args);
32 }
33 return $self->$orig;
34};
35
fc7ec1d9 36=head1 NAME
37
38Catalyst::Engine - The Catalyst Engine
39
40=head1 SYNOPSIS
41
42See L<Catalyst>.
43
44=head1 DESCRIPTION
45
23f9d934 46=head1 METHODS
fc7ec1d9 47
cd3bb248 48
b5ecfcf0 49=head2 $self->finalize_body($c)
06e1b616 50
fbcc39ad 51Finalize body. Prints the response output.
06e1b616 52
53=cut
54
fbcc39ad 55sub finalize_body {
56 my ( $self, $c ) = @_;
7257e9db 57 my $body = $c->response->body;
f9b6d612 58 no warnings 'uninitialized';
7e95ba12 59 if ( blessed($body) && $body->can('read') or ref($body) eq 'GLOB' ) {
be1c9503 60 my $got;
61 do {
1235b30f 62 $got = read $body, my ($buffer), $CHUNKSIZE;
3a64ecc9 63 $got = 0 unless $self->write( $c, $buffer );
be1c9503 64 } while $got > 0;
65
7257e9db 66 close $body;
f4a57de4 67 }
68 else {
7257e9db 69 $self->write( $c, $body );
f4a57de4 70 }
ca3023fc 71
faa02805 72 my $res = $c->response;
73 $res->_writer->close;
74 $res->_clear_writer;
030674d0 75
ca3023fc 76 return;
fbcc39ad 77}
6dc87a0f 78
b5ecfcf0 79=head2 $self->finalize_cookies($c)
6dc87a0f 80
fa32ac82 81Create CGI::Simple::Cookie objects from $c->res->cookies, and set them as
82response headers.
4ab87e27 83
6dc87a0f 84=cut
85
86sub finalize_cookies {
fbcc39ad 87 my ( $self, $c ) = @_;
6dc87a0f 88
fbcc39ad 89 my @cookies;
7fa2c9c1 90 my $response = $c->response;
c82ed742 91
91772de9 92 foreach my $name (keys %{ $response->cookies }) {
93
94 my $val = $response->cookies->{$name};
fbcc39ad 95
2832cb5d 96 my $cookie = (
7e95ba12 97 blessed($val)
2832cb5d 98 ? $val
99 : CGI::Simple::Cookie->new(
100 -name => $name,
101 -value => $val->{value},
102 -expires => $val->{expires},
103 -domain => $val->{domain},
104 -path => $val->{path},
b21bc468 105 -secure => $val->{secure} || 0,
106 -httponly => $val->{httponly} || 0,
2832cb5d 107 )
6dc87a0f 108 );
0f12bef2 109 if (!defined $cookie) {
110 $c->log->warn("undef passed in '$name' cookie value - not setting cookie")
111 if $c->debug;
112 next;
113 }
6dc87a0f 114
fbcc39ad 115 push @cookies, $cookie->as_string;
6dc87a0f 116 }
6dc87a0f 117
b39840da 118 for my $cookie (@cookies) {
7fa2c9c1 119 $response->headers->push_header( 'Set-Cookie' => $cookie );
fbcc39ad 120 }
121}
969647fd 122
b5ecfcf0 123=head2 $self->finalize_error($c)
969647fd 124
6e5b548e 125Output an appropriate error message. Called if there's an error in $c
4ab87e27 126after the dispatch has finished. Will output debug messages if Catalyst
127is in debug mode, or a `please come back later` message otherwise.
128
969647fd 129=cut
130
c96cdcef 131sub _dump_error_page_element {
132 my ($self, $i, $element) = @_;
133 my ($name, $val) = @{ $element };
134
135 # This is fugly, but the metaclass is _HUGE_ and demands waaay too much
136 # scrolling. Suggestions for more pleasant ways to do this welcome.
137 local $val->{'__MOP__'} = "Stringified: "
1565e158 138 . $val->{'__MOP__'} if ref $val eq 'HASH' && exists $val->{'__MOP__'};
c96cdcef 139
140 my $text = encode_entities( dump( $val ));
141 sprintf <<"EOF", $name, $text;
142<h2><a href="#" onclick="toggleDump('dump_$i'); return false">%s</a></h2>
143<div id="dump_$i">
144 <pre wrap="">%s</pre>
145</div>
146EOF
147}
148
969647fd 149sub finalize_error {
fbcc39ad 150 my ( $self, $c ) = @_;
969647fd 151
7299a7b4 152 $c->res->content_type('text/html; charset=utf-8');
df960201 153 my $name = ref($c)->config->{name} || join(' ', split('::', ref $c));
361ba9b2 154
155 # Prevent Catalyst::Plugin::Unicode::Encoding from running.
156 # This is a little nasty, but it's the best way to be clean whether or
157 # not the user has an encoding plugin.
158
159 if ($c->can('encoding')) {
160 $c->{encoding} = '';
161 }
969647fd 162
163 my ( $title, $error, $infos );
164 if ( $c->debug ) {
62d9b030 165
166 # For pretty dumps
b5ecfcf0 167 $error = join '', map {
168 '<p><code class="error">'
169 . encode_entities($_)
170 . '</code></p>'
171 } @{ $c->error };
969647fd 172 $error ||= 'No output';
2666dd3b 173 $error = qq{<pre wrap="">$error</pre>};
969647fd 174 $title = $name = "$name on Catalyst $Catalyst::VERSION";
d82cc9ae 175 $name = "<h1>$name</h1>";
fbcc39ad 176
177 # Don't show context in the dump
02570318 178 $c->req->_clear_context;
179 $c->res->_clear_context;
fbcc39ad 180
181 # Don't show body parser in the dump
0f56bbcf 182 $c->req->_clear_body;
fbcc39ad 183
c6ef5e69 184 my @infos;
185 my $i = 0;
c6ef5e69 186 for my $dump ( $c->dump_these ) {
c96cdcef 187 push @infos, $self->_dump_error_page_element($i, $dump);
c6ef5e69 188 $i++;
189 }
190 $infos = join "\n", @infos;
969647fd 191 }
192 else {
193 $title = $name;
194 $error = '';
195 $infos = <<"";
196<pre>
197(en) Please come back later
0c2b4ac0 198(fr) SVP veuillez revenir plus tard
969647fd 199(de) Bitte versuchen sie es spaeter nocheinmal
d82cc9ae 200(at) Konnten's bitt'schoen spaeter nochmal reinschauen
969647fd 201(no) Vennligst prov igjen senere
d82cc9ae 202(dk) Venligst prov igen senere
203(pl) Prosze sprobowac pozniej
2f381252 204(pt) Por favor volte mais tarde
b31c0f2e 205(ru) Попробуйте еще раз позже
206(ua) Спробуйте ще раз пізніше
969647fd 207</pre>
208
209 $name = '';
210 }
e060fe05 211 $c->res->body( <<"" );
7299a7b4 212<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
213 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
214<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
969647fd 215<head>
7299a7b4 216 <meta http-equiv="Content-Language" content="en" />
217 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
969647fd 218 <title>$title</title>
7299a7b4 219 <script type="text/javascript">
c6ef5e69 220 <!--
221 function toggleDump (dumpElement) {
7299a7b4 222 var e = document.getElementById( dumpElement );
223 if (e.style.display == "none") {
224 e.style.display = "";
c6ef5e69 225 }
226 else {
7299a7b4 227 e.style.display = "none";
c6ef5e69 228 }
229 }
230 -->
231 </script>
969647fd 232 <style type="text/css">
233 body {
234 font-family: "Bitstream Vera Sans", "Trebuchet MS", Verdana,
235 Tahoma, Arial, helvetica, sans-serif;
34d28dfd 236 color: #333;
969647fd 237 background-color: #eee;
238 margin: 0px;
239 padding: 0px;
240 }
c6ef5e69 241 :link, :link:hover, :visited, :visited:hover {
34d28dfd 242 color: #000;
c6ef5e69 243 }
969647fd 244 div.box {
9619f23c 245 position: relative;
969647fd 246 background-color: #ccc;
247 border: 1px solid #aaa;
248 padding: 4px;
249 margin: 10px;
969647fd 250 }
251 div.error {
34d28dfd 252 background-color: #cce;
969647fd 253 border: 1px solid #755;
254 padding: 8px;
255 margin: 4px;
256 margin-bottom: 10px;
969647fd 257 }
258 div.infos {
34d28dfd 259 background-color: #eee;
969647fd 260 border: 1px solid #575;
261 padding: 8px;
262 margin: 4px;
263 margin-bottom: 10px;
969647fd 264 }
265 div.name {
34d28dfd 266 background-color: #cce;
969647fd 267 border: 1px solid #557;
268 padding: 8px;
269 margin: 4px;
969647fd 270 }
7f8e0078 271 code.error {
272 display: block;
273 margin: 1em 0;
274 overflow: auto;
7f8e0078 275 }
9619f23c 276 div.name h1, div.error p {
277 margin: 0;
278 }
279 h2 {
280 margin-top: 0;
281 margin-bottom: 10px;
282 font-size: medium;
283 font-weight: bold;
284 text-decoration: underline;
285 }
286 h1 {
287 font-size: medium;
288 font-weight: normal;
289 }
2666dd3b 290 /* from http://users.tkk.fi/~tkarvine/linux/doc/pre-wrap/pre-wrap-css3-mozilla-opera-ie.html */
291 /* Browser specific (not valid) styles to make preformatted text wrap */
b0ad47c1 292 pre {
2666dd3b 293 white-space: pre-wrap; /* css-3 */
294 white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
295 white-space: -pre-wrap; /* Opera 4-6 */
296 white-space: -o-pre-wrap; /* Opera 7 */
297 word-wrap: break-word; /* Internet Explorer 5.5+ */
298 }
969647fd 299 </style>
300</head>
301<body>
302 <div class="box">
303 <div class="error">$error</div>
304 <div class="infos">$infos</div>
305 <div class="name">$name</div>
306 </div>
307</body>
308</html>
309
4b66aa19 310 # Trick IE. Old versions of IE would display their own error page instead
311 # of ours if we'd give it less than 512 bytes.
d82cc9ae 312 $c->res->{body} .= ( ' ' x 512 );
313
361ba9b2 314 $c->res->{body} = Encode::encode("UTF-8", $c->res->{body});
315
d82cc9ae 316 # Return 500
33117422 317 $c->res->status(500);
969647fd 318}
319
b5ecfcf0 320=head2 $self->finalize_headers($c)
fc7ec1d9 321
4ab87e27 322Abstract method, allows engines to write headers to response
323
fc7ec1d9 324=cut
325
44d28c7d 326sub finalize_headers {
327 my ($self, $ctx) = @_;
328
3ed5a3fb 329 # This is a less-than-pretty hack to avoid breaking the old
330 # Catalyst::Engine::PSGI. 5.9 Catalyst::Engine sets a response_cb and
331 # expects us to pass headers to it here, whereas Catalyst::Enngine::PSGI
332 # just pulls the headers out of $ctx->response in its run method and never
333 # sets response_cb. So take the lack of a response_cb as a sign that we
334 # don't need to set the headers.
335
faa02805 336 return unless ($ctx->response->_has_response_cb);
3ed5a3fb 337
44d28c7d 338 my @headers;
339 $ctx->response->headers->scan(sub { push @headers, @_ });
340
faa02805 341 my $writer = $ctx->response->_response_cb->([ $ctx->response->status, \@headers ]);
342 $ctx->response->_set_writer($writer);
343 $ctx->response->_clear_response_cb;
44d28c7d 344
345 return;
346}
fc7ec1d9 347
b5ecfcf0 348=head2 $self->finalize_read($c)
fc7ec1d9 349
350=cut
351
878b821c 352sub finalize_read { }
fc7ec1d9 353
b5ecfcf0 354=head2 $self->finalize_uploads($c)
fc7ec1d9 355
4ab87e27 356Clean up after uploads, deleting temp files.
357
fc7ec1d9 358=cut
359
fbcc39ad 360sub finalize_uploads {
361 my ( $self, $c ) = @_;
99fe1710 362
671123ba 363 # N.B. This code is theoretically entirely unneeded due to ->cleanup(1)
364 # on the HTTP::Body object.
7fa2c9c1 365 my $request = $c->request;
91772de9 366 foreach my $key (keys %{ $request->uploads }) {
367 my $upload = $request->uploads->{$key};
7fa2c9c1 368 unlink grep { -e $_ } map { $_->tempname }
369 (ref $upload eq 'ARRAY' ? @{$upload} : ($upload));
c85ff642 370 }
7fa2c9c1 371
fc7ec1d9 372}
373
b5ecfcf0 374=head2 $self->prepare_body($c)
fc7ec1d9 375
4ab87e27 376sets up the L<Catalyst::Request> object body using L<HTTP::Body>
377
fc7ec1d9 378=cut
379
fbcc39ad 380sub prepare_body {
381 my ( $self, $c ) = @_;
99fe1710 382
df960201 383 my $appclass = ref($c) || $c;
faa02805 384 my $request = $c->request;
385 if ( my $length = $request->_read_length ) {
0f56bbcf 386 unless ( $request->_body ) {
7fa2c9c1 387 my $type = $request->header('Content-Type');
0f56bbcf 388 $request->_body(HTTP::Body->new( $type, $length ));
671123ba 389 $request->_body->cleanup(1); # Make extra sure!
df960201 390 $request->_body->tmpdir( $appclass->config->{uploadtmp} )
391 if exists $appclass->config->{uploadtmp};
847e3257 392 }
b0ad47c1 393
ea72fece 394 # Check for definedness as you could read '0'
395 while ( defined ( my $buffer = $self->read($c) ) ) {
4f5ebacd 396 $c->prepare_body_chunk($buffer);
fbcc39ad 397 }
fdb3773e 398
399 # paranoia against wrong Content-Length header
faa02805 400 my $remaining = $length - $c->request->_read_position;
34d28dfd 401 if ( $remaining > 0 ) {
fdb3773e 402 $self->finalize_read($c);
34d28dfd 403 Catalyst::Exception->throw(
847e3257 404 "Wrong Content-Length value: $length" );
fdb3773e 405 }
fc7ec1d9 406 }
847e3257 407 else {
408 # Defined but will cause all body code to be skipped
0f56bbcf 409 $c->request->_body(0);
847e3257 410 }
fc7ec1d9 411}
412
b5ecfcf0 413=head2 $self->prepare_body_chunk($c)
4bd82c41 414
4ab87e27 415Add a chunk to the request body.
416
4bd82c41 417=cut
418
419sub prepare_body_chunk {
420 my ( $self, $c, $chunk ) = @_;
4f5ebacd 421
0f56bbcf 422 $c->request->_body->add($chunk);
4bd82c41 423}
424
b5ecfcf0 425=head2 $self->prepare_body_parameters($c)
06e1b616 426
b0ad47c1 427Sets up parameters from body.
4ab87e27 428
06e1b616 429=cut
430
fbcc39ad 431sub prepare_body_parameters {
432 my ( $self, $c ) = @_;
b0ad47c1 433
0f56bbcf 434 return unless $c->request->_body;
b0ad47c1 435
0f56bbcf 436 $c->request->body_parameters( $c->request->_body->param );
fbcc39ad 437}
0556eb49 438
b5ecfcf0 439=head2 $self->prepare_connection($c)
0556eb49 440
4ab87e27 441Abstract method implemented in engines.
442
0556eb49 443=cut
444
44d28c7d 445sub prepare_connection {
446 my ($self, $ctx) = @_;
447
44d28c7d 448 my $request = $ctx->request;
faa02805 449 my $env = $ctx->request->env;
44d28c7d 450
451 $request->address( $env->{REMOTE_ADDR} );
452 $request->hostname( $env->{REMOTE_HOST} )
453 if exists $env->{REMOTE_HOST};
454 $request->protocol( $env->{SERVER_PROTOCOL} );
455 $request->remote_user( $env->{REMOTE_USER} );
456 $request->method( $env->{REQUEST_METHOD} );
c9de76f0 457 $request->secure( $env->{'psgi.url_scheme'} eq 'https' ? 1 : 0 );
44d28c7d 458
459 return;
460}
0556eb49 461
b5ecfcf0 462=head2 $self->prepare_cookies($c)
fc7ec1d9 463
fa32ac82 464Parse cookies from header. Sets a L<CGI::Simple::Cookie> object.
4ab87e27 465
fc7ec1d9 466=cut
467
6dc87a0f 468sub prepare_cookies {
fbcc39ad 469 my ( $self, $c ) = @_;
6dc87a0f 470
471 if ( my $header = $c->request->header('Cookie') ) {
fa32ac82 472 $c->req->cookies( { CGI::Simple::Cookie->parse($header) } );
6dc87a0f 473 }
474}
fc7ec1d9 475
b5ecfcf0 476=head2 $self->prepare_headers($c)
fc7ec1d9 477
478=cut
479
44d28c7d 480sub prepare_headers {
481 my ($self, $ctx) = @_;
482
faa02805 483 my $env = $ctx->request->env;
44d28c7d 484 my $headers = $ctx->request->headers;
485
486 for my $header (keys %{ $env }) {
487 next unless $header =~ /^(HTTP|CONTENT|COOKIE)/i;
488 (my $field = $header) =~ s/^HTTPS?_//;
489 $field =~ tr/_/-/;
490 $headers->header($field => $env->{$header});
491 }
492}
fc7ec1d9 493
b5ecfcf0 494=head2 $self->prepare_parameters($c)
fc7ec1d9 495
4ab87e27 496sets up parameters from query and post parameters.
497
fc7ec1d9 498=cut
499
fbcc39ad 500sub prepare_parameters {
501 my ( $self, $c ) = @_;
fc7ec1d9 502
7fa2c9c1 503 my $request = $c->request;
504 my $parameters = $request->parameters;
505 my $body_parameters = $request->body_parameters;
506 my $query_parameters = $request->query_parameters;
fbcc39ad 507 # We copy, no references
91772de9 508 foreach my $name (keys %$query_parameters) {
509 my $param = $query_parameters->{$name};
7fa2c9c1 510 $parameters->{$name} = ref $param eq 'ARRAY' ? [ @$param ] : $param;
fbcc39ad 511 }
fc7ec1d9 512
fbcc39ad 513 # Merge query and body parameters
91772de9 514 foreach my $name (keys %$body_parameters) {
515 my $param = $body_parameters->{$name};
7fa2c9c1 516 my @values = ref $param eq 'ARRAY' ? @$param : ($param);
517 if ( my $existing = $parameters->{$name} ) {
518 unshift(@values, (ref $existing eq 'ARRAY' ? @$existing : $existing));
fbcc39ad 519 }
7fa2c9c1 520 $parameters->{$name} = @values > 1 ? \@values : $values[0];
fbcc39ad 521 }
522}
523
b5ecfcf0 524=head2 $self->prepare_path($c)
fc7ec1d9 525
4ab87e27 526abstract method, implemented by engines.
527
fc7ec1d9 528=cut
529
44d28c7d 530sub prepare_path {
531 my ($self, $ctx) = @_;
532
faa02805 533 my $env = $ctx->request->env;
44d28c7d 534
535 my $scheme = $ctx->request->secure ? 'https' : 'http';
536 my $host = $env->{HTTP_HOST} || $env->{SERVER_NAME};
537 my $port = $env->{SERVER_PORT} || 80;
538 my $base_path = $env->{SCRIPT_NAME} || "/";
539
540 # set the request URI
661de072 541 my $path;
542 if (!$ctx->config->{use_request_uri_for_path}) {
4904ee27 543 my $path_info = $env->{PATH_INFO};
544 if ( exists $env->{REDIRECT_URL} ) {
545 $base_path = $env->{REDIRECT_URL};
546 $base_path =~ s/\Q$path_info\E$//;
547 }
548 $path = $base_path . $path_info;
661de072 549 $path =~ s{^/+}{};
550 $path =~ s/([^$URI::uric])/$URI::Escape::escapes{$1}/go;
551 $path =~ s/\?/%3F/g; # STUPID STUPID SPECIAL CASE
552 }
553 else {
554 my $req_uri = $env->{REQUEST_URI};
555 $req_uri =~ s/\?.*$//;
556 $path = $req_uri;
557 $path =~ s{^/+}{};
558 }
44d28c7d 559
560 # Using URI directly is way too slow, so we construct the URLs manually
561 my $uri_class = "URI::$scheme";
562
563 # HTTP_HOST will include the port even if it's 80/443
564 $host =~ s/:(?:80|443)$//;
565
566 if ($port !~ /^(?:80|443)$/ && $host !~ /:/) {
567 $host .= ":$port";
568 }
569
44d28c7d 570 my $query = $env->{QUERY_STRING} ? '?' . $env->{QUERY_STRING} : '';
571 my $uri = $scheme . '://' . $host . '/' . $path . $query;
572
4ee03d72 573 $ctx->request->uri( (bless \$uri, $uri_class)->canonical );
44d28c7d 574
575 # set the base URI
576 # base must end in a slash
577 $base_path .= '/' unless $base_path =~ m{/$};
578
579 my $base_uri = $scheme . '://' . $host . $base_path;
580
581 $ctx->request->base( bless \$base_uri, $uri_class );
582
583 return;
584}
fc7ec1d9 585
b5ecfcf0 586=head2 $self->prepare_request($c)
fc7ec1d9 587
b5ecfcf0 588=head2 $self->prepare_query_parameters($c)
fc7ec1d9 589
4ab87e27 590process the query string and extract query parameters.
591
fc7ec1d9 592=cut
593
e0616220 594sub prepare_query_parameters {
44d28c7d 595 my ($self, $c) = @_;
596
faa02805 597 my $env = $c->request->env;
598 my $query_string = exists $env->{QUERY_STRING}
599 ? $env->{QUERY_STRING}
44d28c7d 600 : '';
b0ad47c1 601
3b4d1251 602 # Check for keywords (no = signs)
603 # (yes, index() is faster than a regex :))
933ba403 604 if ( index( $query_string, '=' ) < 0 ) {
3b4d1251 605 $c->request->query_keywords( $self->unescape_uri($query_string) );
933ba403 606 return;
607 }
608
609 my %query;
e0616220 610
611 # replace semi-colons
612 $query_string =~ s/;/&/g;
b0ad47c1 613
2f381252 614 my @params = grep { length $_ } split /&/, $query_string;
e0616220 615
933ba403 616 for my $item ( @params ) {
b0ad47c1 617
618 my ($param, $value)
933ba403 619 = map { $self->unescape_uri($_) }
e5542b70 620 split( /=/, $item, 2 );
b0ad47c1 621
933ba403 622 $param = $self->unescape_uri($item) unless defined $param;
b0ad47c1 623
933ba403 624 if ( exists $query{$param} ) {
625 if ( ref $query{$param} ) {
626 push @{ $query{$param} }, $value;
627 }
628 else {
629 $query{$param} = [ $query{$param}, $value ];
630 }
631 }
632 else {
633 $query{$param} = $value;
634 }
e0616220 635 }
933ba403 636
637 $c->request->query_parameters( \%query );
e0616220 638}
fbcc39ad 639
b5ecfcf0 640=head2 $self->prepare_read($c)
fbcc39ad 641
4ab87e27 642prepare to read from the engine.
643
fbcc39ad 644=cut
fc7ec1d9 645
fbcc39ad 646sub prepare_read {
647 my ( $self, $c ) = @_;
4f5ebacd 648
878b821c 649 # Initialize the amount of data we think we need to read
faa02805 650 $c->request->_read_length;
fbcc39ad 651}
fc7ec1d9 652
b5ecfcf0 653=head2 $self->prepare_request(@arguments)
fc7ec1d9 654
4ab87e27 655Populate the context object from the request object.
656
fc7ec1d9 657=cut
658
44d28c7d 659sub prepare_request {
660 my ($self, $ctx, %args) = @_;
faa02805 661 $ctx->request->_set_env($args{env});
662 $self->_set_env($args{env}); # Nasty back compat!
663 $ctx->response->_set_response_cb($args{response_cb});
44d28c7d 664}
fc7ec1d9 665
b5ecfcf0 666=head2 $self->prepare_uploads($c)
c9afa5fc 667
fbcc39ad 668=cut
669
670sub prepare_uploads {
671 my ( $self, $c ) = @_;
7fa2c9c1 672
673 my $request = $c->request;
0f56bbcf 674 return unless $request->_body;
7fa2c9c1 675
0f56bbcf 676 my $uploads = $request->_body->upload;
7fa2c9c1 677 my $parameters = $request->parameters;
91772de9 678 foreach my $name (keys %$uploads) {
679 my $files = $uploads->{$name};
fbcc39ad 680 my @uploads;
7fa2c9c1 681 for my $upload (ref $files eq 'ARRAY' ? @$files : ($files)) {
682 my $headers = HTTP::Headers->new( %{ $upload->{headers} } );
683 my $u = Catalyst::Request::Upload->new
684 (
685 size => $upload->{size},
a160c98d 686 type => scalar $headers->content_type,
7fa2c9c1 687 headers => $headers,
688 tempname => $upload->{tempname},
689 filename => $upload->{filename},
690 );
fbcc39ad 691 push @uploads, $u;
692 }
7fa2c9c1 693 $request->uploads->{$name} = @uploads > 1 ? \@uploads : $uploads[0];
f4a57de4 694
c4bed79a 695 # support access to the filename as a normal param
696 my @filenames = map { $_->{filename} } @uploads;
a7e05d9d 697 # append, if there's already params with this name
7fa2c9c1 698 if (exists $parameters->{$name}) {
699 if (ref $parameters->{$name} eq 'ARRAY') {
700 push @{ $parameters->{$name} }, @filenames;
a7e05d9d 701 }
702 else {
7fa2c9c1 703 $parameters->{$name} = [ $parameters->{$name}, @filenames ];
a7e05d9d 704 }
705 }
706 else {
7fa2c9c1 707 $parameters->{$name} = @filenames > 1 ? \@filenames : $filenames[0];
a7e05d9d 708 }
fbcc39ad 709 }
710}
711
b5ecfcf0 712=head2 $self->read($c, [$maxlength])
fbcc39ad 713
ea72fece 714Reads from the input stream by calling C<< $self->read_chunk >>.
715
716Maintains the read_length and read_position counters as data is read.
717
fbcc39ad 718=cut
719
720sub read {
721 my ( $self, $c, $maxlength ) = @_;
4f5ebacd 722
faa02805 723 my $request = $c->request;
724 my $remaining = $request->_read_length - $request->_read_position;
4bd82c41 725 $maxlength ||= $CHUNKSIZE;
4f5ebacd 726
fbcc39ad 727 # Are we done reading?
728 if ( $remaining <= 0 ) {
4f5ebacd 729 $self->finalize_read($c);
fbcc39ad 730 return;
731 }
c9afa5fc 732
fbcc39ad 733 my $readlen = ( $remaining > $maxlength ) ? $maxlength : $remaining;
734 my $rc = $self->read_chunk( $c, my $buffer, $readlen );
735 if ( defined $rc ) {
ea72fece 736 if (0 == $rc) { # Nothing more to read even though Content-Length
9e1f645b 737 # said there should be.
ea72fece 738 $self->finalize_read;
739 return;
740 }
faa02805 741 my $request = $c->request;
742 $request->_read_position( $request->_read_position + $rc );
fbcc39ad 743 return $buffer;
744 }
745 else {
4f5ebacd 746 Catalyst::Exception->throw(
747 message => "Unknown error reading input: $!" );
fbcc39ad 748 }
749}
fc7ec1d9 750
b5ecfcf0 751=head2 $self->read_chunk($c, $buffer, $length)
23f9d934 752
10011c19 753Each engine implements read_chunk as its preferred way of reading a chunk
ea72fece 754of data. Returns the number of bytes read. A return of 0 indicates that
755there is no more data to be read.
fc7ec1d9 756
fbcc39ad 757=cut
61b1e958 758
e6b46d80 759sub read_chunk {
ce7abbda 760 my ($self, $ctx) = (shift, shift);
faa02805 761 return $ctx->request->env->{'psgi.input'}->read(@_);
e6b46d80 762}
61b1e958 763
b5ecfcf0 764=head2 $self->read_length
ca39d576 765
fbcc39ad 766The length of input data to be read. This is obtained from the Content-Length
767header.
fc7ec1d9 768
b5ecfcf0 769=head2 $self->read_position
fc7ec1d9 770
fbcc39ad 771The amount of input data that has already been read.
63b763c5 772
9560b708 773=head2 $self->run($app, $server)
63b763c5 774
9560b708 775Start the engine. Builds a PSGI application and calls the
acbecf08 776run method on the server passed in, which then causes the
777engine to loop, handling requests..
4ab87e27 778
fbcc39ad 779=cut
fc7ec1d9 780
44d28c7d 781sub run {
51857616 782 my ($self, $app, $psgi, @args) = @_;
acbecf08 783 # @args left here rather than just a $options, $server for back compat with the
784 # old style scripts which send a few args, then a hashref
785
786 # They should never actually be used in the normal case as the Plack engine is
787 # passed in got all the 'standard' args via the loader in the script already.
788
789 # FIXME - we should stash the options in an attribute so that custom args
790 # like Gitalist's --git_dir are possible to get from the app without stupid tricks.
1e5dad00 791 my $server = pop @args if (scalar @args && blessed $args[-1]);
792 my $options = pop @args if (scalar @args && ref($args[-1]) eq 'HASH');
ccb13b15 793 # Back compat hack for applications with old (non Catalyst::Script) scripts to work in FCGI.
794 if (scalar @args && !ref($args[0])) {
795 if (my $listen = shift @args) {
796 $options->{listen} ||= [$listen];
797 }
798 }
acbecf08 799 if (! $server ) {
f7a3f8fd 800 $server = Catalyst::EngineLoader->new(application_name => ref($self))->auto(%$options);
f7f55b2f 801 # We're not being called from a script, so auto detect what backend to
802 # run on. This should never happen, as mod_perl never calls ->run,
803 # instead the $app->handle method is called per request.
acbecf08 804 $app->log->warn("Not supplied a Plack engine, falling back to engine auto-loader (are your scripts ancient?)")
805 }
aee7cdcc 806 $app->run_options($options);
acbecf08 807 $server->run($psgi, $options);
a1791811 808}
44d28c7d 809
9560b708 810=head2 build_psgi_app ($app, @args)
811
812Builds and returns a PSGI application closure, wrapping it in the reverse proxy
813middleware if the using_frontend_proxy config setting is set.
814
815=cut
816
22a5833d 817sub build_psgi_app {
a1791811 818 my ($self, $app, @args) = @_;
c2f4a965 819
fcffcb05 820 return sub {
44d28c7d 821 my ($env) = @_;
822
823 return sub {
824 my ($respond) = @_;
faa02805 825 $app->handle_request(env => $env, response_cb => $respond);
44d28c7d 826 };
827 };
828}
fc7ec1d9 829
b5ecfcf0 830=head2 $self->write($c, $buffer)
fc7ec1d9 831
e512dd24 832Writes the buffer to the client.
4ab87e27 833
fc7ec1d9 834=cut
835
fbcc39ad 836sub write {
837 my ( $self, $c, $buffer ) = @_;
4f5ebacd 838
faa02805 839 my $response = $c->response;
b0ad47c1 840
681086e7 841 $buffer = q[] unless defined $buffer;
b0ad47c1 842
44d28c7d 843 my $len = length($buffer);
faa02805 844 $c->res->_writer->write($buffer);
b0ad47c1 845
44d28c7d 846 return $len;
fc7ec1d9 847}
848
933ba403 849=head2 $self->unescape_uri($uri)
850
6a44fe01 851Unescapes a given URI using the most efficient method available. Engines such
852as Apache may implement this using Apache's C-based modules, for example.
933ba403 853
854=cut
855
856sub unescape_uri {
8c7d83e1 857 my ( $self, $str ) = @_;
7d22a537 858
859 $str =~ s/(?:%([0-9A-Fa-f]{2})|\+)/defined $1 ? chr(hex($1)) : ' '/eg;
860
8c7d83e1 861 return $str;
933ba403 862}
34d28dfd 863
4ab87e27 864=head2 $self->finalize_output
865
866<obsolete>, see finalize_body
867
0c76ec45 868=head2 $self->env
869
6356febf 870Hash containing environment variables including many special variables inserted
0c76ec45 871by WWW server - like SERVER_*, REMOTE_*, HTTP_* ...
872
6356febf 873Before accessing environment variables consider whether the same information is
0c76ec45 874not directly available via Catalyst objects $c->request, $c->engine ...
875
6356febf 876BEWARE: If you really need to access some environment variable from your Catalyst
0c76ec45 877application you should use $c->engine->env->{VARNAME} instead of $ENV{VARNAME},
ae7da8f5 878as in some environments the %ENV hash does not contain what you would expect.
0c76ec45 879
fbcc39ad 880=head1 AUTHORS
881
2f381252 882Catalyst Contributors, see Catalyst.pm
fc7ec1d9 883
884=head1 COPYRIGHT
885
536bee89 886This library is free software. You can redistribute it and/or modify it under
fc7ec1d9 887the same terms as Perl itself.
888
889=cut
890
8911;