Fixed MP19 uploads. Added request/response body. Added support in all Engines for...
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / Apache / MP13.pm
CommitLineData
111728e3 1package Catalyst::Engine::Apache::MP13;
479d2af4 2
3use strict;
4use base 'Catalyst::Engine::Apache';
5
e7c0c583 6use Apache ();
7use Apache::Constants ();
8use Apache::Request ();
9use Apache::Cookie ();
479d2af4 10
e7c0c583 11Apache::Constants->import(':common');
479d2af4 12
13=head1 NAME
14
22a23d06 15Catalyst::Engine::Apache::MP13 - Catalyst Apache MP1.3 Engine
479d2af4 16
17=head1 SYNOPSIS
18
19See L<Catalyst>.
20
21=head1 DESCRIPTION
22
06e1b616 23This is the Catalyst engine specialized for Apache mod_perl version 1.3x.
479d2af4 24
25=head1 OVERLOADED METHODS
26
27This class overloads some methods from C<Catalyst::Engine::Apache>.
28
29=over 4
30
e7c0c583 31=item $c->finalize_headers
32
33=cut
34
35sub finalize_headers {
36 my $c = shift;
37
38 for my $name ( $c->response->headers->header_field_names ) {
39 next if $name =~ /Content-Type/i;
40 my @values = $c->response->header($name);
41 $c->apache->headers_out->add( $name => $_ ) for @values;
42 }
43
44 if ( $c->response->header('Set-Cookie') && $c->response->status >= 300 ) {
45 my @values = $c->response->header('Set-Cookie');
46 $c->apache->err_headers_out->add( 'Set-Cookie' => $_ ) for @values;
47 }
48
49 $c->apache->status( $c->response->status );
50 $c->apache->content_type( $c->response->header('Content-Type') );
51
52 $c->apache->send_http_header;
53
54 return 0;
55}
56
479d2af4 57=item $c->handler
58
e7c0c583 59=cut
60
61sub handler ($$) {
62 shift->SUPER::handler(@_);
63}
64
65=item $c->prepare_uploads
66
67=cut
68
69sub prepare_uploads {
70 my $c = shift;
71
72 my @uploads;
73
74 for my $upload ( $c->apache->upload ) {
75
146554c5 76 my $object = Catalyst::Request::Upload->new(
e7c0c583 77 filename => $upload->filename,
78 size => $upload->size,
79 tempname => $upload->tempname,
80 type => $upload->type
146554c5 81 );
e7c0c583 82
146554c5 83 push( @uploads, $upload->name, $object );
e7c0c583 84 }
85
86 $c->req->_assign_values( $c->req->uploads, \@uploads );
87}
88
06e1b616 89=item $c->prepare_request($r)
90
91=cut
92
93sub prepare_request {
94 my ( $c, $r ) = @_;
95 $c->apache( Apache::Request->new($r) );
96}
97
479d2af4 98=back
99
100=head1 SEE ALSO
101
102L<Catalyst>, L<Catalyst::Engine>, L<Catalyst::Engine::Apache>.
103
104=head1 AUTHOR
105
106Sebastian Riedel, C<sri@cpan.org>
107
108=head1 COPYRIGHT
109
110This program is free software, you can redistribute it and/or modify it under
111the same terms as Perl itself.
112
113=cut
114
1151;