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