Bump version requirement for MX::Emulate::CAF to the new release which fixes the...
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Response.pm
CommitLineData
fc7ec1d9 1package Catalyst::Response;
2
059c085b 3use Moose;
6680c772 4use HTTP::Headers;
fc7ec1d9 5
6680c772 6has cookies => (is => 'rw', default => sub { {} });
7has body => (is => 'rw', default => '');
059c085b 8has location => (is => 'rw');
6680c772 9has status => (is => 'rw', default => 200);
10has finalized_headers => (is => 'rw', default => 0);
059c085b 11has headers => (
12 is => 'rw',
13 handles => [qw(content_encoding content_length content_type header)],
6680c772 14 default => sub { HTTP::Headers->new() },
15 required => 1,
16 lazy => 1,
059c085b 17);
059c085b 18has _context => (
19 is => 'rw',
20 weak_ref => 1,
0fc2d522 21 handles => ['write'],
059c085b 22);
fc7ec1d9 23
059c085b 24sub output { shift->body(@_) }
25
26no Moose;
f7e4e231 27
fc7ec1d9 28=head1 NAME
29
910410b8 30Catalyst::Response - stores output responding to the current client request
fc7ec1d9 31
32=head1 SYNOPSIS
33
fbcc39ad 34 $res = $c->response;
35 $res->body;
36 $res->content_encoding;
37 $res->content_length;
38 $res->content_type;
39 $res->cookies;
fbcc39ad 40 $res->header;
41 $res->headers;
42 $res->output;
43 $res->redirect;
44 $res->status;
45 $res->write;
b22c6668 46
fc7ec1d9 47=head1 DESCRIPTION
48
910410b8 49This is the Catalyst Response class, which provides methods for responding to
46372e65 50the current client request. The appropriate L<Catalyst::Engine> for your environment
51will turn the Catalyst::Response into a HTTP Response and return it to the client.
b22c6668 52
53=head1 METHODS
fc7ec1d9 54
46372e65 55=head2 $res->body(<$text|$fh|$iofh_object)
e060fe05 56
57 $c->response->body('Catalyst rocks!');
06e1b616 58
46372e65 59Sets or returns the output (text or binary data). If you are returning a large body,
60you might want to use a L<IO::FileHandle> type of object (Something that implements the read method
61in the same fashion), or a filehandle GLOB. Catalyst
62will write it piece by piece into the response.
06e1b616 63
b5ecfcf0 64=head2 $res->content_encoding
b5176d9e 65
910410b8 66Shortcut for $res->headers->content_encoding.
b5176d9e 67
b5ecfcf0 68=head2 $res->content_length
b5176d9e 69
910410b8 70Shortcut for $res->headers->content_length.
b5176d9e 71
b5ecfcf0 72=head2 $res->content_type
b5176d9e 73
910410b8 74Shortcut for $res->headers->content_type.
b5176d9e 75
87e9f9ab 76This value is typically set by your view or plugin. For example,
77L<Catalyst::Plugin::Static::Simple> will guess the mime type based on the file
78it found, while L<Catalyst::View::TT> defaults to C<text/html>.
79
b5ecfcf0 80=head2 $res->cookies
fc7ec1d9 81
910410b8 82Returns a reference to a hash containing cookies to be set. The keys of the
83hash are the cookies' names, and their corresponding values are hash
84references used to construct a L<CGI::Cookie> object.
fc7ec1d9 85
86 $c->response->cookies->{foo} = { value => '123' };
87
910410b8 88The keys of the hash reference on the right correspond to the L<CGI::Cookie>
89parameters of the same name, except they are used without a leading dash.
90Possible parameters are:
ac965e92 91
ac5c933b 92=over
ac965e92 93
71453caf 94=item value
ac965e92 95
71453caf 96=item expires
ac965e92 97
71453caf 98=item domain
ac965e92 99
71453caf 100=item path
101
102=item secure
103
104=back
ac965e92 105
b5ecfcf0 106=head2 $res->header
fbcc39ad 107
910410b8 108Shortcut for $res->headers->header.
fbcc39ad 109
b5ecfcf0 110=head2 $res->headers
fc7ec1d9 111
910410b8 112Returns an L<HTTP::Headers> object, which can be used to set headers.
fc7ec1d9 113
114 $c->response->headers->header( 'X-Catalyst' => $Catalyst::VERSION );
115
b5ecfcf0 116=head2 $res->output
fc7ec1d9 117
910410b8 118Alias for $res->body.
fc7ec1d9 119
b5ecfcf0 120=head2 $res->redirect( $url, $status )
fc7ec1d9 121
910410b8 122Causes the response to redirect to the specified URL.
fc7ec1d9 123
73a52566 124 $c->response->redirect( 'http://slashdot.org' );
125 $c->response->redirect( 'http://slashdot.org', 307 );
126
127=cut
128
129sub redirect {
130 my $self = shift;
fbcc39ad 131
132 if (@_) {
73a52566 133 my $location = shift;
f1bbebac 134 my $status = shift || 302;
73a52566 135
136 $self->location($location);
137 $self->status($status);
138 }
139
140 return $self->location;
141}
fc7ec1d9 142
059c085b 143=head2 $res->location
144
145Sets or returns the HTTP 'Location'.
146
b5ecfcf0 147=head2 $res->status
fc7ec1d9 148
910410b8 149Sets or returns the HTTP status.
fc7ec1d9 150
151 $c->response->status(404);
ac5c933b 152
b5ecfcf0 153=head2 $res->write( $data )
fbcc39ad 154
155Writes $data to the output stream.
156
059c085b 157=head2 meta
158
159Provided by Moose
fc7ec1d9 160
910410b8 161=head1 AUTHORS
fc7ec1d9 162
163Sebastian Riedel, C<sri@cpan.org>
910410b8 164
61b1e958 165Marcus Ramberg, C<mramberg@cpan.org>
fc7ec1d9 166
167=head1 COPYRIGHT
168
ac5c933b 169This program is free software, you can redistribute it and/or modify
61b1e958 170it under the same terms as Perl itself.
fc7ec1d9 171
172=cut
173
e5ecd5bc 174__PACKAGE__->meta->make_immutable;
175
fc7ec1d9 1761;