X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FRequest.pm;h=4f85d247c162dc7a83a7734091f74e70a9eaae79;hb=b7ce908fc5c404dcbc480c7ecf9a275b92fcc26f;hp=ada6c155f088399da2ef14b49450270d3ecacff7;hpb=ee26f4bd0cef4af7cebaf255664024c7bf92bb88;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Request.pm b/lib/Catalyst/Request.pm index ada6c15..4f85d24 100644 --- a/lib/Catalyst/Request.pm +++ b/lib/Catalyst/Request.pm @@ -4,10 +4,13 @@ use strict; use base 'Class::Accessor::Fast'; use IO::Socket qw[AF_INET inet_aton]; +use Carp; +use utf8; +use URI::QueryParam; __PACKAGE__->mk_accessors( qw/action address arguments cookies headers match method - protocol query_parameters secure snippets uri user/ + protocol query_parameters secure captures uri user/ ); *args = \&arguments; @@ -16,6 +19,7 @@ __PACKAGE__->mk_accessors( *params = \¶meters; *query_params = \&query_parameters; *path_info = \&path; +*snippets = \&captures; sub content_encoding { shift->headers->content_encoding(@_) } sub content_length { shift->headers->content_length(@_) } @@ -58,14 +62,14 @@ Catalyst::Request - provides information about the current client request $req->read; $req->referer; $req->secure; - $req->snippets; + $req->captures; # previously knows as snippets $req->upload; $req->uploads; $req->uri; $req->user; $req->user_agent; -See also L. +See also L, L. =head1 DESCRIPTION @@ -251,7 +255,8 @@ Alias for $req->body. =head2 $req->match This contains the matching part of a Regex action. Otherwise -it returns the same as 'action'. +it returns the same as 'action', except for default actions, +which return an empty string. =head2 $req->method @@ -365,7 +370,6 @@ sub path { my $path = $self->uri->path; my $location = $self->base->path; $path =~ s/^(\Q$location\E)?//; - $path =~ s/%([0-9A-Fa-f]{2})/chr(hex($1))/eg; $path =~ s/^\///; $self->{path} = $path; @@ -404,11 +408,16 @@ Shortcut for $req->headers->referer. Returns the referring page. Returns true or false, indicating whether the connection is secure (https). -=head2 $req->snippets +=head2 $req->captures + +Returns a reference to an array containing regex captures. -Returns a reference to an array containing regex snippets. + my @captures = @{ $c->request->captures }; + +=head2 $req->snippets - my @snippets = @{ $c->request->snippets }; +C used to be called snippets. This is still available for backwoards +compatibility, but is considered deprecated. =head2 $req->upload @@ -489,6 +498,35 @@ sub uploads { Returns a URI object for the current request. Stringifies to the URI text. +=head2 $req->uri_with( { key => 'value' } ); + +Returns a rewritten URI object for the current request. Key/value pairs +passed in will override existing parameters. Unmodified pairs will be +preserved. + +=cut + +sub uri_with { + my( $self, $args ) = @_; + + carp( 'No arguments passed to uri_with()' ) unless $args; + + for my $value ( values %$args ) { + my $isa_ref = ref $value; + if( $isa_ref and $isa_ref ne 'ARRAY' ) { + croak( "Non-array reference ($isa_ref) passed to uri_with()" ); + } + utf8::encode( $_ ) for grep{ defined } $isa_ref ? @$value : $value; + }; + my $uri = $self->uri->clone; + + $uri->query_form( { + %{ $uri->query_form_hash }, + %$args + } ); + return $uri; +} + =head2 $req->user Returns the currently logged in user. Deprecated. The method recommended for