a397b12c551b3734b426e2a05a6abd0876a81ee7
[catagits/HTTP-Request-AsCGI.git] / lib / HTTP / Request / AsCGI.pm
1 package HTTP::Request::AsCGI;
2
3 use strict;
4 use warnings;
5 use bytes;
6 use base 'Class::Accessor::Fast';
7
8 use Carp;
9 use HTTP::Response;
10 use IO::Handle;
11 use IO::File;
12
13 __PACKAGE__->mk_accessors(qw[ enviroment request stdin stdout stderr ]);
14
15 our $VERSION = 0.4;
16
17 sub new {
18     my $class   = shift;
19     my $request = shift;
20
21     unless ( @_ % 2 == 0 && eval { $request->isa('HTTP::Request') } ) {
22         croak(qq/usage: $class->new( \$request [, key => value] )/);
23     }
24
25     my $self = $class->SUPER::new( { restored => 0, setuped => 0 } );
26     $self->request($request);
27     $self->stdin( IO::File->new_tmpfile );
28     $self->stdout( IO::File->new_tmpfile );
29
30     my $host = $request->header('Host');
31     my $uri  = $request->uri->clone;
32     $uri->scheme('http')    unless $uri->scheme;
33     $uri->host('localhost') unless $uri->host;
34     $uri->port(80)          unless $uri->port;
35     $uri->host_port($host)  unless !$host || ( $host eq $uri->host_port );
36
37     $uri = $uri->canonical;
38
39     my $enviroment = {
40         GATEWAY_INTERFACE => 'CGI/1.1',
41         HTTP_HOST         => $uri->host_port,
42         HTTPS             => ( $uri->scheme eq 'https' ) ? 'ON' : 'OFF',  # not in RFC 3875
43         PATH_INFO         => $uri->path,
44         QUERY_STRING      => $uri->query || '',
45         SCRIPT_NAME       => '/',
46         SERVER_NAME       => $uri->host,
47         SERVER_PORT       => $uri->port,
48         SERVER_PROTOCOL   => $request->protocol || 'HTTP/1.1',
49         SERVER_SOFTWARE   => "HTTP-Request-AsCGI/$VERSION",
50         REMOTE_ADDR       => '127.0.0.1',
51         REMOTE_HOST       => 'localhost',
52         REMOTE_PORT       => int( rand(64000) + 1000 ),                   # not in RFC 3875
53         REQUEST_URI       => $uri->path_query,                            # not in RFC 3875
54         REQUEST_METHOD    => $request->method,
55         @_
56     };
57
58     foreach my $field ( $request->headers->header_field_names ) {
59
60         my $key = uc("HTTP_$field");
61         $key =~ tr/-/_/;
62         $key =~ s/^HTTP_// if $field =~ /^Content-(Length|Type)$/;
63
64         unless ( exists $enviroment->{$key} ) {
65             $enviroment->{$key} = $request->headers->header($field);
66         }
67     }
68
69     unless ( $enviroment->{SCRIPT_NAME} eq '/' && $enviroment->{PATH_INFO} ) {
70         $enviroment->{PATH_INFO} =~ s/^\Q$enviroment->{SCRIPT_NAME}\E/\//;
71         $enviroment->{PATH_INFO} =~ s/^\/+/\//;
72     }
73
74     $self->enviroment($enviroment);
75
76     return $self;
77 }
78
79 sub setup {
80     my $self = shift;
81
82     $self->{restore}->{enviroment} = {%ENV};
83
84     binmode( $self->stdin );
85
86     if ( $self->request->content_length ) {
87
88         syswrite( $self->stdin, $self->request->content )
89           or croak("Can't write request content to stdin handle: $!");
90
91         sysseek( $self->stdin, 0, SEEK_SET )
92           or croak("Can't seek stdin handle: $!");
93     }
94
95     open( $self->{restore}->{stdin}, '<&', STDIN->fileno )
96       or croak("Can't dup stdin: $!");
97
98     open( STDIN, '<&=', $self->stdin->fileno )
99       or croak("Can't open stdin: $!");
100
101     binmode( STDIN );
102
103     if ( $self->stdout ) {
104
105         open( $self->{restore}->{stdout}, '>&', STDOUT->fileno )
106           or croak("Can't dup stdout: $!");
107
108         open( STDOUT, '>&=', $self->stdout->fileno )
109           or croak("Can't open stdout: $!");
110
111         binmode( $self->stdout );
112         binmode( STDOUT);
113     }
114
115     if ( $self->stderr ) {
116
117         open( $self->{restore}->{stderr}, '>&', STDERR->fileno )
118           or croak("Can't dup stderr: $!");
119
120         open( STDERR, '>&=', $self->stderr->fileno )
121           or croak("Can't open stderr: $!");
122
123         binmode( $self->stderr );
124         binmode( STDERR );
125     }
126
127     {
128         no warnings 'uninitialized';
129         %ENV = %{ $self->enviroment };
130     }
131
132     if ( $INC{'CGI.pm'} ) {
133         CGI::initialize_globals();
134     }
135
136     $self->{setuped}++;
137
138     return $self;
139 }
140
141 sub response {
142     my ( $self, $callback ) = @_;
143
144     return undef unless $self->stdout;
145
146     seek( $self->stdout, 0, SEEK_SET )
147       or croak("Can't seek stdout handle: $!");
148
149     my $headers;
150     while ( my $line = $self->stdout->getline ) {
151         $headers .= $line;
152         last if $headers =~ /\x0d?\x0a\x0d?\x0a$/;
153     }
154
155     unless ( defined $headers ) {
156         $headers = "HTTP/1.1 500 Internal Server Error\x0d\x0a";
157     }
158
159     unless ( $headers =~ /^HTTP/ ) {
160         $headers = "HTTP/1.1 200 OK\x0d\x0a" . $headers;
161     }
162
163     my $response = HTTP::Response->parse($headers);
164     $response->date( time() ) unless $response->date;
165
166     my $message = $response->message;
167     my $status  = $response->header('Status');
168
169     if ( $message && $message =~ /^(.+)\x0d$/ ) {
170         $response->message($1);
171     }
172
173     if ( $status && $status =~ /^(\d\d\d)\s?(.+)?$/ ) {
174
175         my $code    = $1;
176         my $message = $2 || HTTP::Status::status_message($code);
177
178         $response->code($code);
179         $response->message($message);
180     }
181
182     if ( $response->code == 500 && !$response->content ) {
183
184         $response->content( $response->error_as_HTML );
185         $response->content_type('text/html');
186
187         return $response;
188     }
189
190     if ($callback) {
191
192         my $handle = $self->stdout;
193
194         $response->content( sub {
195
196             if ( $handle->read( my $buffer, 4096 ) ) {
197                 return $buffer;
198             }
199
200             return undef;
201         });
202     }
203     else {
204
205         my $length = 0;
206
207         while ( $self->stdout->read( my $buffer, 4096 ) ) {
208             $length += length($buffer);
209             $response->add_content($buffer);
210         }
211
212         if ( $length && !$response->content_length ) {
213             $response->content_length($length);
214         }
215     }
216
217     return $response;
218 }
219
220 sub restore {
221     my $self = shift;
222
223     {
224         no warnings 'uninitialized';
225         %ENV = %{ $self->{restore}->{enviroment} };
226     }
227
228     open( STDIN, '<&', $self->{restore}->{stdin} )
229       or croak("Can't restore stdin: $!");
230
231     sysseek( $self->stdin, 0, SEEK_SET )
232       or croak("Can't seek stdin: $!");
233
234     if ( $self->{restore}->{stdout} ) {
235
236         STDOUT->flush
237           or croak("Can't flush stdout: $!");
238
239         open( STDOUT, '>&', $self->{restore}->{stdout} )
240           or croak("Can't restore stdout: $!");
241
242         sysseek( $self->stdout, 0, SEEK_SET )
243           or croak("Can't seek stdout: $!");
244     }
245
246     if ( $self->{restore}->{stderr} ) {
247
248         STDERR->flush
249           or croak("Can't flush stderr: $!");
250
251         open( STDERR, '>&', $self->{restore}->{stderr} )
252           or croak("Can't restore stderr: $!");
253
254         sysseek( $self->stderr, 0, SEEK_SET )
255           or croak("Can't seek stderr: $!");
256     }
257
258     $self->{restored}++;
259
260     return $self;
261 }
262
263 sub DESTROY {
264     my $self = shift;
265     $self->restore if $self->{setuped} && !$self->{restored};
266 }
267
268 1;
269
270 __END__
271
272 =head1 NAME
273
274 HTTP::Request::AsCGI - Setup a CGI enviroment from a HTTP::Request
275
276 =head1 SYNOPSIS
277
278     use CGI;
279     use HTTP::Request;
280     use HTTP::Request::AsCGI;
281     
282     my $request = HTTP::Request->new( GET => 'http://www.host.com/' );
283     my $stdout;
284     
285     {
286         my $c = HTTP::Request::AsCGI->new($request)->setup;
287         my $q = CGI->new;
288         
289         print $q->header,
290               $q->start_html('Hello World'),
291               $q->h1('Hello World'),
292               $q->end_html;
293         
294         $stdout = $c->stdout;
295         
296         # enviroment and descriptors will automatically be restored 
297         # when $c is destructed.
298     }
299     
300     while ( my $line = $stdout->getline ) {
301         print $line;
302     }
303     
304 =head1 DESCRIPTION
305
306 Provides a convinient way of setting up an CGI enviroment from a HTTP::Request.
307
308 =head1 METHODS
309
310 =over 4 
311
312 =item new ( $request [, key => value ] )
313
314 Contructor, first argument must be a instance of HTTP::Request
315 followed by optional pairs of environment key and value.
316
317 =item enviroment
318
319 Returns a hashref containing the environment that will be used in setup. 
320 Changing the hashref after setup has been called will have no effect.
321
322 =item setup
323
324 Setups the environment and descriptors.
325
326 =item restore
327
328 Restores the enviroment and descriptors. Can only be called after setup.
329
330 =item request
331
332 Returns the request given to constructor.
333
334 =item response
335
336 Returns a HTTP::Response. Can only be called after restore.
337
338 =item stdin
339
340 Accessor for handle that will be used for STDIN, must be a real seekable
341 handle with an file descriptor. Defaults to a tempoary IO::File instance.
342
343 =item stdout
344
345 Accessor for handle that will be used for STDOUT, must be a real seekable
346 handle with an file descriptor. Defaults to a tempoary IO::File instance.
347
348 =item stderr
349
350 Accessor for handle that will be used for STDERR, must be a real seekable
351 handle with an file descriptor.
352
353 =back
354
355 =head1 SEE ALSO
356
357 =over 4
358
359 =item examples directory in this distribution.
360
361 =item L<WWW::Mechanize::CGI>
362
363 =item L<Test::WWW::Mechanize::CGI>
364
365 =back
366
367 =head1 THANKS TO
368
369 Thomas L. Shinnick for his valuable win32 testing.
370
371 =head1 AUTHOR
372
373 Christian Hansen, C<ch@ngmedia.com>
374
375 =head1 LICENSE
376
377 This library is free software. You can redistribute it and/or modify 
378 it under the same terms as perl itself.
379
380 =cut