Corrected upload for all engines
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / Apache / MP2.pm
index 1afdfc2..fe88555 100644 (file)
@@ -3,19 +3,19 @@ package Catalyst::Engine::Apache::MP2;
 use strict;
 use base 'Catalyst::Engine::Apache';
 
-use Apache2 ();
-use Apache::Connection ();
-use Apache::Const ( -compile => qw(:common) );
-use Apache::RequestIO ();
-use Apache::RequestRec ();
+use Apache2             ();
+use Apache::Connection  ();
+use Apache::Const       ();
+use Apache::RequestIO   ();
+use Apache::RequestRec  ();
 use Apache::RequestUtil ();
-use Apache::Request ();
-use Apache::Cookie ();
-use Apache::Upload ();
-use Apache::URI ();
-use APR::URI ();
+use Apache::Request     ();
+use Apache::Cookie      ();
+use Apache::Upload      ();
+use Apache::URI         ();
+use APR::URI            ();
 
-sub handler : method { shift->SUPER::handler(@_) }
+Apache::Const->import( -compile => ':common' );
 
 =head1 NAME
 
@@ -35,8 +35,66 @@ This class overloads some methods from C<Catalyst::Engine::Apache>.
 
 =over 4
 
+=item $c->finalize_headers
+
+=cut
+
+sub finalize_headers {
+    my $c = shift;
+
+    for my $name ( $c->response->headers->header_field_names ) {
+        next if $name =~ /Content-Type/i;
+        my @values = $c->response->header($name);
+        $c->apache->headers_out->add( $name => $_ ) for @values;
+    }
+
+    if ( $c->response->header('Set-Cookie') && $c->response->status >= 300 ) {
+        my @values = $c->response->header('Set-Cookie');
+        $c->apache->err_headers_out->add( 'Set-Cookie' => $_ ) for @values;
+    }
+
+    $c->apache->status( $c->response->status );
+    $c->apache->content_type( $c->response->header('Content-Type') );
+
+    return 0;
+}
+
 =item $c->handler
 
+=cut
+
+sub handler : method {
+    shift->SUPER::handler(@_);
+}
+
+=item $c->prepare_uploads
+
+=cut
+
+sub prepare_uploads {
+    my $c = shift;
+
+    my @uploads;
+
+    for my $field ( $c->apache->upload ) {
+
+        for my $upload ( $c->apache->upload($field) ) {
+
+            my $hash = {
+                fh       => $upload->fh,
+                filename => $upload->filename,
+                size     => $upload->size,
+                tempname => $upload->tempname,
+                type     => $upload->type
+            };
+
+            push( @uploads, $field, $hash );
+        }
+    }
+
+    $c->req->_assign_values( $c->req->uploads, \@uploads );
+}
+
 =back
 
 =head1 SEE ALSO