C::C::CGIBin - fix bug in is_perl_cgi
[catagits/Catalyst-Controller-WrapCGI.git] / lib / Catalyst / Controller / WrapCGI.pm
CommitLineData
71e6daf6 1package Catalyst::Controller::WrapCGI;
b2a17df2 2
b2a17df2 3use strict;
4use warnings;
32b32c62 5use parent 'Catalyst::Controller';
b2a17df2 6
7use HTTP::Request::AsCGI;
8use HTTP::Request;
32b32c62 9use URI;
21a20b7e 10use Catalyst::Exception ();
32b32c62 11
12=head1 NAME
13
14Catalyst::Controller::WrapCGI - Run CGIs in Catalyst
15
16=head1 VERSION
17
2369e5a4 18Version 0.0023
32b32c62 19
20=cut
21
2369e5a4 22our $VERSION = '0.0023';
32b32c62 23
24=head1 SYNOPSIS
25
26 package MyApp::Controller::Foo;
27
28 use parent qw/Catalyst::Controller::WrapCGI/;
29
30 sub hello : Path('cgi-bin/hello.cgi') {
31 my ($self, $c) = @_;
32
33 $self->cgi_to_response($c, sub {
34 use CGI ':standard';
35
36 print header, start_html('Hello'),
37 h1('Catalyst Rocks!'),
38 end_html;
39 });
40 }
41
457c1d76 42In your .conf, configure which environment variables to pass:
43
44 <Controller::Foo>
45 <CGI>
21a20b7e 46 username_field username # used for REMOTE_USER env var
457c1d76 47 pass_env PERL5LIB
48 pass_env PATH
21a20b7e 49 pass_env /^MYAPP_/
457c1d76 50 </CGI>
51 </Controller::Foo>
52
53=head1 DESCRIPTION
54
55Allows you to run Perl code in a CGI environment derived from your L<Catalyst>
56context.
57
21a20b7e 58If you just want to run CGIs from files, see L<Catalyst::Controller::CGIBin>.
59
60=head1 CONFIGURATION
61
62C<$your_controller->{CGI}{pass_env}> should be an array of environment variables
63or regular expressions to pass through to your CGIs. Entries surrounded by C</>
64characters are considered regular expressions.
65
66Default is to pass the whole of C<%ENV>.
67
68C<{CGI}{username_field}> should be the field for your user's name, which will be
69read from C<$c->user->obj>. Defaults to 'username'.
70
71See L</SYNOPSIS> for an example.
72
32b32c62 73=cut
b2a17df2 74
75# Hack-around because Catalyst::Engine::HTTP goes and changes
76# them to be the remote socket, and FCGI.pm does even dumber things.
77
32b32c62 78open my $REAL_STDIN, "<&=".fileno(*STDIN);
79open my $REAL_STDOUT, ">>&=".fileno(*STDOUT);
80
81=head1 METHODS
82
83=head2 $self->cgi_to_response($c, $coderef)
84
85Does the magic of running $coderef in a CGI environment, and populating the
86appropriate parts of your Catalyst context with the results.
87
457c1d76 88Calls wrap_cgi (below.)
89
32b32c62 90=cut
b2a17df2 91
92sub cgi_to_response {
93 my ($self, $c, $script) = @_;
94 my $res = $self->wrap_cgi($c, $script);
95
96 # if the CGI doesn't set the response code but sets location they were
97 # probably trying to redirect so set 302 for them
98
32b32c62 99 my $location = $res->headers->header('Location');
100
101 if (defined $location && length $location && $res->code == 200) {
b2a17df2 102 $c->res->status(302);
103 } else {
104 $c->res->status($res->code);
105 }
106 $c->res->body($res->content);
107 $c->res->headers($res->headers);
108}
109
32b32c62 110=head2 $self->wrap_cgi($c, $coderef)
111
112Runs $coderef in a CGI environment using L<HTTP::Request::AsCGI>, returns an
113L<HTTP::Response>.
114
115The CGI environment is set up based on $c.
116
457c1d76 117The environment variables to pass on are taken from the configuration for your
118Controller, see L</SYNOPSIS> for an example. If you don't supply a list of
119environment variables to pass, the whole of %ENV is used.
120
21a20b7e 121Used by cgi_to_response (above), which is probably what you want to use as well.
32b32c62 122
123=cut
124
b2a17df2 125sub wrap_cgi {
126 my ($self, $c, $call) = @_;
127 my $req = HTTP::Request->new(
128 map { $c->req->$_ } qw/method uri headers/
129 );
130 my $body = $c->req->body;
131 my $body_content = '';
132
133 $req->content_type($c->req->content_type); # set this now so we can override
134
135 if ($body) { # Slurp from body filehandle
136 local $/; $body_content = <$body>;
137 } else {
138 my $body_params = $c->req->body_parameters;
32b32c62 139 if (%$body_params) {
140 my $encoder = URI->new;
141 $encoder->query_form(%$body_params);
142 $body_content = $encoder->query;
b2a17df2 143 $req->content_type('application/x-www-form-urlencoded');
144 }
145 }
146
21a20b7e 147 my @env;
148
0e06d183 149 my $pass_env = $self->{CGI}{pass_env};
150 $pass_env = [] if not defined $pass_env;
151 $pass_env = [ $pass_env ] unless ref $pass_env;
152
153 for (@$pass_env) {
21a20b7e 154 if (m!^/(.*)/\z!) {
155 my $re = qr/$1/;
156 push @env, grep /$re/, keys %ENV;
157 } else {
158 push @env, $_;
159 }
160 }
161
162 @env = keys %ENV unless @env;
457c1d76 163
b2a17df2 164 $req->content($body_content);
165 $req->content_length(length($body_content));
21a20b7e 166
167 my $username_field = $self->{CGI}{username_field} || 'username';
168
169 my $username = (($c->can('user_exists') && $c->user_exists)
170 ? eval { $c->user->obj->$username_field }
b2a17df2 171 : '');
172 my $env = HTTP::Request::AsCGI->new(
173 $req,
21a20b7e 174 ($username ? (REMOTE_USER => $username) : ()),
457c1d76 175 map { ($_, $ENV{$_}) } @env
b2a17df2 176 );
177
178 {
32b32c62 179 local *STDIN = $REAL_STDIN; # restore the real ones so the filenos
180 local *STDOUT = $REAL_STDOUT; # are 0 and 1 for the env setup
b2a17df2 181
32b32c62 182 my $old = select($REAL_STDOUT); # in case somebody just calls 'print'
b2a17df2 183
184 my $saved_error;
185
186 $env->setup;
187 eval { $call->() };
188 $saved_error = $@;
189 $env->restore;
190
191 select($old);
192
21a20b7e 193 Catalyst::Exception->throw(
194 message => "CGI invocation failed: $saved_error"
195 ) if $saved_error;
b2a17df2 196 }
197
198 return $env->response;
199}
200
32b32c62 201=head1 ACKNOWLEDGEMENTS
202
203Original development sponsored by L<http://www.altinity.com/>
204
457c1d76 205=head1 SEE ALSO
206
21a20b7e 207L<Catalyst::Controller::CGIBin>, L<CatalystX::GlobalContext>,
457c1d76 208L<Catalyst::Controller>, L<CGI>, L<Catalyst>
209
32b32c62 210=head1 AUTHOR
211
212Matt S. Trout, C<< <mst at shadowcat.co.uk> >>
213
214=head1 BUGS
215
216Please report any bugs or feature requests to C<bug-catalyst-controller-wrapcgi
217at rt.cpan.org>, or through the web interface at
218L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Catalyst-Controller-WrapCGI>.
219I will be notified, and then you'll automatically be notified of progress on
220your bug as I make changes.
221
222=head1 SUPPORT
223
224More information at:
225
226=over 4
227
228=item * RT: CPAN's request tracker
229
230L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Catalyst-Controller-WrapCGI>
231
232=item * AnnoCPAN: Annotated CPAN documentation
233
234L<http://annocpan.org/dist/Catalyst-Controller-WrapCGI>
235
236=item * CPAN Ratings
237
238L<http://cpanratings.perl.org/d/Catalyst-Controller-WrapCGI>
239
240=item * Search CPAN
241
242L<http://search.cpan.org/dist/Catalyst-Controller-WrapCGI>
243
244=back
245
246=head1 COPYRIGHT & LICENSE
247
248Copyright (c) 2008 Matt S. Trout
249
250This program is free software; you can redistribute it and/or modify it
251under the same terms as Perl itself.
252
253=cut
254
2551; # End of Catalyst::Controller::WrapCGI
256
21a20b7e 257# vim: expandtab shiftwidth=2 ts=2 tw=80: