X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FRequest.pm;h=0a53b487e3492a8f43ca2297720e590e81b51cf1;hb=27d9619a94cc04080d1d44392f5fcfe28e272efa;hp=1340299fd61830d84e35602f0850c0a7bc880af3;hpb=2c83fd5ae5d356342d3515f85a2b7ca2b3e8affb;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Request.pm b/lib/Catalyst/Request.pm index 1340299..0a53b48 100644 --- a/lib/Catalyst/Request.pm +++ b/lib/Catalyst/Request.pm @@ -4,6 +4,9 @@ use strict; use base 'Class::Accessor::Fast'; use IO::Socket qw[AF_INET inet_aton]; +use Carp; +use utf8; +use URI::QueryParams; __PACKAGE__->mk_accessors( qw/action address arguments cookies headers match method @@ -489,6 +492,34 @@ sub uploads { Returns a URI object for the current request. Stringifies to the URI text. +=head2 $req->uri_with( { key => 'value' } ); + +Returns a rewriten URI object for the current uri. 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 $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