Make default body reponses for 302s W3C compliant. RT#71237
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Response.pm
CommitLineData
fc7ec1d9 1package Catalyst::Response;
2
059c085b 3use Moose;
6680c772 4use HTTP::Headers;
fc7ec1d9 5
531f1ab6 6with 'MooseX::Emulate::Class::Accessor::Fast';
7
6680c772 8has cookies => (is => 'rw', default => sub { {} });
ffb43803 9has body => (is => 'rw', default => undef);
10sub has_body { defined($_[0]->body) }
99a543ee 11
059c085b 12has location => (is => 'rw');
6680c772 13has status => (is => 'rw', default => 200);
14has finalized_headers => (is => 'rw', default => 0);
059c085b 15has headers => (
16 is => 'rw',
9c331634 17 isa => 'HTTP::Headers',
059c085b 18 handles => [qw(content_encoding content_length content_type header)],
6680c772 19 default => sub { HTTP::Headers->new() },
20 required => 1,
21 lazy => 1,
059c085b 22);
059c085b 23has _context => (
24 is => 'rw',
25 weak_ref => 1,
0fc2d522 26 handles => ['write'],
02570318 27 clearer => '_clear_context',
059c085b 28);
fc7ec1d9 29
059c085b 30sub output { shift->body(@_) }
31
aa9e8261 32sub code { shift->status(@_) }
33
059c085b 34no Moose;
f7e4e231 35
fc7ec1d9 36=head1 NAME
37
910410b8 38Catalyst::Response - stores output responding to the current client request
fc7ec1d9 39
40=head1 SYNOPSIS
41
fbcc39ad 42 $res = $c->response;
43 $res->body;
aa9e8261 44 $res->code;
fbcc39ad 45 $res->content_encoding;
46 $res->content_length;
47 $res->content_type;
48 $res->cookies;
fbcc39ad 49 $res->header;
50 $res->headers;
51 $res->output;
52 $res->redirect;
53 $res->status;
54 $res->write;
b22c6668 55
fc7ec1d9 56=head1 DESCRIPTION
57
910410b8 58This is the Catalyst Response class, which provides methods for responding to
46372e65 59the current client request. The appropriate L<Catalyst::Engine> for your environment
60will turn the Catalyst::Response into a HTTP Response and return it to the client.
b22c6668 61
62=head1 METHODS
fc7ec1d9 63
08a2c908 64=head2 $res->body( $text | $fh | $iohandle_object )
e060fe05 65
66 $c->response->body('Catalyst rocks!');
06e1b616 67
46372e65 68Sets or returns the output (text or binary data). If you are returning a large body,
2f381252 69you might want to use a L<IO::Handle> type of object (Something that implements the read method
46372e65 70in the same fashion), or a filehandle GLOB. Catalyst
71will write it piece by piece into the response.
06e1b616 72
02570318 73=head2 $res->has_body
74
75Predicate which returns true when a body has been set.
76
aa9e8261 77=head2 $res->code
78
79Alias for $res->status.
80
b5ecfcf0 81=head2 $res->content_encoding
b5176d9e 82
910410b8 83Shortcut for $res->headers->content_encoding.
b5176d9e 84
b5ecfcf0 85=head2 $res->content_length
b5176d9e 86
910410b8 87Shortcut for $res->headers->content_length.
b5176d9e 88
b5ecfcf0 89=head2 $res->content_type
b5176d9e 90
910410b8 91Shortcut for $res->headers->content_type.
b5176d9e 92
87e9f9ab 93This value is typically set by your view or plugin. For example,
94L<Catalyst::Plugin::Static::Simple> will guess the mime type based on the file
95it found, while L<Catalyst::View::TT> defaults to C<text/html>.
96
b5ecfcf0 97=head2 $res->cookies
fc7ec1d9 98
910410b8 99Returns a reference to a hash containing cookies to be set. The keys of the
100hash are the cookies' names, and their corresponding values are hash
7e743798 101references used to construct a L<CGI::Simple::Cookie> object.
fc7ec1d9 102
103 $c->response->cookies->{foo} = { value => '123' };
104
7e743798 105The keys of the hash reference on the right correspond to the L<CGI::Simple::Cookie>
910410b8 106parameters of the same name, except they are used without a leading dash.
107Possible parameters are:
ac965e92 108
b0ad47c1 109=over
ac965e92 110
71453caf 111=item value
ac965e92 112
71453caf 113=item expires
ac965e92 114
71453caf 115=item domain
ac965e92 116
71453caf 117=item path
118
119=item secure
120
b21bc468 121=item httponly
122
71453caf 123=back
ac965e92 124
b5ecfcf0 125=head2 $res->header
fbcc39ad 126
910410b8 127Shortcut for $res->headers->header.
fbcc39ad 128
b5ecfcf0 129=head2 $res->headers
fc7ec1d9 130
910410b8 131Returns an L<HTTP::Headers> object, which can be used to set headers.
fc7ec1d9 132
133 $c->response->headers->header( 'X-Catalyst' => $Catalyst::VERSION );
134
b5ecfcf0 135=head2 $res->output
fc7ec1d9 136
910410b8 137Alias for $res->body.
fc7ec1d9 138
b5ecfcf0 139=head2 $res->redirect( $url, $status )
fc7ec1d9 140
2f381252 141Causes the response to redirect to the specified URL. The default status is
142C<302>.
fc7ec1d9 143
73a52566 144 $c->response->redirect( 'http://slashdot.org' );
145 $c->response->redirect( 'http://slashdot.org', 307 );
146
2f381252 147This is a convenience method that sets the Location header to the
148redirect destination, and then sets the response status. You will
ee24f3a8 149want to C< return > or C<< $c->detach() >> to interrupt the normal
2f381252 150processing flow if you want the redirect to occur straight away.
151
73a52566 152=cut
153
154sub redirect {
155 my $self = shift;
fbcc39ad 156
157 if (@_) {
73a52566 158 my $location = shift;
f1bbebac 159 my $status = shift || 302;
73a52566 160
161 $self->location($location);
162 $self->status($status);
163 }
164
165 return $self->location;
166}
fc7ec1d9 167
059c085b 168=head2 $res->location
169
170Sets or returns the HTTP 'Location'.
171
b5ecfcf0 172=head2 $res->status
fc7ec1d9 173
910410b8 174Sets or returns the HTTP status.
fc7ec1d9 175
176 $c->response->status(404);
aa9e8261 177
178$res->code is an alias for this, to match HTTP::Response->code.
b0ad47c1 179
b5ecfcf0 180=head2 $res->write( $data )
fbcc39ad 181
182Writes $data to the output stream.
183
059c085b 184=head2 meta
185
186Provided by Moose
fc7ec1d9 187
e4cc83b2 188=head2 $res->print( @data )
189
190Prints @data to the output stream, separated by $,. This lets you pass
191the response object to functions that want to write to an L<IO::Handle>.
192
193=cut
194
195sub print {
196 my $self = shift;
197 my $data = shift;
198
199 defined $self->write($data) or return;
200
201 for (@_) {
202 defined $self->write($,) or return;
203 defined $self->write($_) or return;
204 }
fe3083a8 205 defined $self->write($\) or return;
b0ad47c1 206
e4cc83b2 207 return 1;
208}
209
910410b8 210=head1 AUTHORS
fc7ec1d9 211
2f381252 212Catalyst Contributors, see Catalyst.pm
fc7ec1d9 213
214=head1 COPYRIGHT
215
b0ad47c1 216This library is free software. You can redistribute it and/or modify
61b1e958 217it under the same terms as Perl itself.
fc7ec1d9 218
219=cut
220
e5ecd5bc 221__PACKAGE__->meta->make_immutable;
222
fc7ec1d9 2231;