X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FResponse.pm;h=e0d1a3bc474f5231d17bcdc126e5385f11e41f81;hb=9b793a51e8b5edb92c9fad8a87323be0235961d4;hp=a433f027264327055552150b6e6da05365e121e3;hpb=8fbcd90cdb30aed53d22d1cdbad95880f1c11693;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Response.pm b/lib/Catalyst/Response.pm index a433f02..e0d1a3b 100644 --- a/lib/Catalyst/Response.pm +++ b/lib/Catalyst/Response.pm @@ -3,7 +3,7 @@ package Catalyst::Response; use strict; use base 'Class::Accessor::Fast'; -__PACKAGE__->mk_accessors(qw/cookies body headers redirect status/); +__PACKAGE__->mk_accessors(qw/cookies body headers location status/); *output = \&body; @@ -20,8 +20,6 @@ Catalyst::Response - Catalyst Response Class $resp = $c->response; $resp->body; - $resp->body_length; - $resp->body_ref; $resp->content_encoding; $resp->content_length; $resp->content_type; @@ -49,34 +47,6 @@ to response data. Contains the final output. -=item $resp->body_length - -Returns the length of body in bytes. - - print $c->response->body_length - -=cut - -sub body_length { - my $self = shift; - - use bytes; - - return 0 unless $self->body; - return length($self->body); -} - -=item $resp->body_ref - -Returns a reference to body. - -=cut - -sub body_ref { - my $self = shift; - return \$self->{body}; -} - =item $resp->content_encoding Shortcut to $resp->headers->content_encoding @@ -109,11 +79,28 @@ Returns a L object containing the headers. Shortcut to $resp->body -=item $resp->redirect($url) +=item $resp->redirect( $url, $status ) Contains a location to redirect to. - $c->response->redirect('http://slashdot.org'); + $c->response->redirect( 'http://slashdot.org' ); + $c->response->redirect( 'http://slashdot.org', 307 ); + +=cut + +sub redirect { + my $self = shift; + + if ( @_ ) { + my $location = shift; + my $status = shift || 302; + + $self->location($location); + $self->status($status); + } + + return $self->location; +} =item status